Noob question:

How is the best way to move the player to another trigger?

I've set:

KB:

IF
CharacterCreationFinished(CHARACTER_NULL)
THEN
CharacterTeleportPartyToTrigger(TRIGGER_Game_Beginning, "");
CHARACTER_Player1.isPlayer();
CHARACTER_Player2.isPlayer();

Then I created a Box Trigger and a Point Trigger and created another item in the story editor:

INIT:

TriggerRegisterForPlayers(TRIGGER_Box_Beginning);

KB:

IF
CharacterEnteredTrigger(_Player,TRIGGER_Box_Beginning)
THEN
CharacterMoveToTrigger(_Player,TRIGGER_Point_Arrival);


I've placed the Box trigger so that the player teleports right next to it after the character creation. I must be doing something wrong because the characters refuse to move to the Point Trigger.

Last edited by Gordyne; 04/12/14 09:50 PM.