[RMMV] CALL MAP EVENT SCRIPT QUESTION
Posts
Pages:
1
This is what I have. IT WORKS. But that's not the problem.
$gameMap.event($gameVariables.value(60), $gameVariables.value(63)).start();
The first argument is the ID of map event to be called. The second argument is its Event Page. I'm aware that map events are evaluated from highest event page back. The second argument... no matter what I put in, variable or constant, it ALWAYS gives me the highest event page, and not lower ones.
Ex: I set Var 63 (the event page) to 2 (the desired result is to trigger page 2). The event to be called has 4 pages. When the above script is executed, it triggers page 4 every time. What am I missing?
EDIT: FIXED. Figured it out. Checking variable condition for the Event Page works, and gives me the desired page. (Haven't used event pages since RM95)
PLEASE DELETE THIS POST THANKS RMN :)
$gameMap.event($gameVariables.value(60), $gameVariables.value(63)).start();
The first argument is the ID of map event to be called. The second argument is its Event Page. I'm aware that map events are evaluated from highest event page back. The second argument... no matter what I put in, variable or constant, it ALWAYS gives me the highest event page, and not lower ones.
Ex: I set Var 63 (the event page) to 2 (the desired result is to trigger page 2). The event to be called has 4 pages. When the above script is executed, it triggers page 4 every time. What am I missing?
EDIT: FIXED. Figured it out. Checking variable condition for the Event Page works, and gives me the desired page. (Haven't used event pages since RM95)
PLEASE DELETE THIS POST THANKS RMN :)
Pages:
1













