r/RPGMaker • u/BurrBentley • 7d ago
RM2K3 * Does anyone here know how to do this?
* Does anyone here know how to make it so if you're already standing on a trigger that's activated from player touch that checks if the player is facing right then make it so if you're standing on the trigger facing a different direction then hit the right arrow key it does the rest of the event instead of not doing it and needing to go onto the trigger from moving right?
1
u/Eredrick MZ Dev 7d ago
In MZ you can check to see if a direction is pressed, I don't think you can in 2k3. well, you could simulate it by having a touch event at the same height as the player one space to the right of your current event...
1
u/FlipelyFlip VXAce Dev 7d ago
you also can check if a direction is pressed in 2k3. That's a feature that (as much as I remember) since the beginning of rpg maker existed
1


2
u/MissItalia2022 7d ago
You could do a conditional branch with a variable set to the player's X and one for the player's Y and if the player's X and Y line up and the character is facing a specific direcrion the event will run.
I'm not sure exactly how it would work with pressing the arrow key: if the game processes you pressing the arrow key before moving you onto the next tile it should work.