Well, I am mkaing these triggers for my RPG(Eternal Life RPG). I am not sure why these aren't working. But, maybe someone here can help me out! I'll list all of the triggers here:
Cond:
Deaths(P1, Exactly, 0, Market );
Switch(Switch 1, Set);
Bring(P4, AtLeast, 1, [ Market ], P1);
Bring(P1, AtLeast, 1, Men, P1);
Actions:
Comment("01");
SetDeaths(P1, SetTo, 1, Market );
SetSwitch(Switch 1, Clear);
Wait(200);
MoveUnit(All, Men, P1, World, Enter----Exit Market);
Order(Men, P1, Enter----Exit Market, Move, Counter----Market);
CenterView(Enter----Exit Market);
PreserveTrigger();
Those triggers ^ are to enter the shop. These ones are to leave the shop \/
Cond:
Deaths(P1, Exactly, 1, [ Market ]);
Switch(Switch 1, Clear);
Bring(P1, AtLeast, 1, Men, Enter----Exit Market);
Actions:
Comment("02");
SetDeaths(P1, SetTo, 0, [ Market ]);
SetSwitch(Switch 1, Set);
Wait(200);
MoveUnit(All, Men, P1, Enter----Exit Market, P1);
CenterView(P1);
PreserveTrigger();
Those are the triggers. If you are able to
explain what I did wrong, I would be thankful. The reason I have "explain" all bold is so I KNOW what to do, that way I am able to LEARN! Thanks for the help in advance

!