Originally Posted by Gordyne
Sorry I must have expressed myself badly.

I can teleport my characters just fine.

I want them to start walking in a given direction right after they teleport.

I'm trying to use CharacterMoveToTrigger(_Player,TRIGGER_My_Trigger)

But I can't ind a way to make it work.


Gotcha. You're missing a couple of arguments in your function which may be causing the issue.

CharacterMoveToTrigger(CHARACTER_character,TRIGGER_trigger, INTEGER_running, STRING_event) are all required. You'd want to try it more like:

CharacterMoveToTrigger(CHARACTER_Player1,TRIGGER_My_Trigger, 0, "")
CharacterMoveToTrigger(CHARACTER_Player2,TRIGGER_My_Trigger, 0, "")

I'd use two lines on this one to ensure both characters move and I'd reference the players specifically _Player1 and _Player2 instead of just _Player

I have used this command on player characters before and it does work if done right so keep at it!

Last edited by Burgee; 05/12/14 03:24 PM.