[VX ACE] GETTING REGION NUMBER PLAYER OR EVENT IS STANDING ON

Posts

Pages: 1
Rave
Even newspapers have those nowadays.
290
While I didn't got to that part yet, I'd like to make some kind of platforming minigame in my RPG.

I have almost everything planned out, but I need to get region number player is standing on to make it work.

This platforming stage would work similar to ones in Mario & Luigi series - when you jump on tile that is "bottomless pit", you'd get back up, with some health loss. I need something to mark those "bottomless pit" tiles and regions seems to be easiest way to do this.

Now how can I set region id that player is standing on to a variable?
Try this... All in a parallel process.

Control Var.01 Set=Player's Map X
Control Var.02 Set=Player's Map Y
Get Location info: Var.03, RegionID, Var.1&2

Edit: You scripters and your magic tricks. ;_;
or

$game_player.region_id == numberhere
Rave
Even newspapers have those nowadays.
290
author=alterego
Try this... All in a parallel process.

Control Var.01 Set=Player's Map X
Control Var.02 Set=Player's Map Y
Get Location info: Var.03, RegionID, Var.1&2

Edit: You scripters and your magic tricks. ;_;


Thank you! Totally forgot about Get location info thing!
Pages: 1