I dont't know the rest of your script or how your story is setup. But heres my guess on it

First if you used triggerregisterforplayers with _player and you don't have _player.Isplayer() in the _start Then it doesnt know who _Player is.


So first off start with uppercasing _Player. Just like i typed it. if your start script is right it will work.. If it doesnt try this
IF
CharacterEnteredTrigger(_Player,TRIGGER_HIB_ZombieAmbush)
AND
_Player.IsPlayer()
THEN
CharacterAppear(CHARACTER_HIB_ZombieAmbush_1,1);
CharacterAppear(CHARACTER_HIB_ZombieAmbush_2,1);
CharacterAppear(CHARACTER_HIB_ZombieAmbush_3,1);
CharacterAppear(CHARACTER_HIB_ZombieAmbush_4,1);
TriggerUnregisterForPlayers(TRIGGER_HIB_ZombieAmbush);

More then likely its just that capitalization error that is your problem.

Last edited by Demonata08; 08/08/14 07:17 PM.