Hey!
So, I've found out how you can take over another player's body and items through using the LUA console, which was funny, and slightly creepy - but not exactly what I was looking to do. So I figured I'd ask here in the forums for what I would like to do.
Is there a way that you can go into ghost mode, and then use a command to follow another player around, so you see the game from their perspective when they're moving around the map? Kind of a ghost-follow mode?
- Caledorn
Observer mode in Multiplayer
Re: Observer mode in Multiplayer
Something like
(adjust player numbers to taste)
Code: Select all
/c game.player.character=nil script.on_event(defines.events.on_tick, function(event) game.players[2].teleport(game.players[1].position) end)
Automatic Belt (and pipe) Planner—Automate yet another aspect of constructing your factory!
Re: Observer mode in Multiplayer
Sorry for the late response - but thank you very, very much! That worked wonderfully!prg wrote:Something like
(adjust player numbers to taste)Code: Select all
/c game.player.character=nil script.on_event(defines.events.on_tick, function(event) game.players[2].teleport(game.players[1].position) end)
For the record you can also replace game.players[2] etc with game.players["player_nickname"], if you don't know a player's ID.