Code: Select all
/c
for _,ent in pairs (game.player.force.get_trains()) do
if ent.speed == 0 and ent.manual_mode == false then
ent.manual_mode = true
ent.manual_mode = false
end
end
Code: Select all
/c
for _,ent in pairs (game.player.force.get_trains()) do
if ent.speed == 0 and ent.manual_mode == false then
ent.manual_mode = true
ent.manual_mode = false
end
end