Chaos Project

RPG Maker => General Discussion => Troubleshooting / Help => Topic started by: Shek on November 25, 2013, 01:06:29 pm

Title: Quick Question: How to insert variable into... [Resolved]
Post by: Shek on November 25, 2013, 01:06:29 pm
$BlizzABS.create_event(X,Y.........


I want X and Y to be game variables, (or even better, just the co-ordinates of the parent event).  Not sure how to insert variables in place of constants.
Title: Re: Quick Question: How to insert variable into this line...
Post by: KK20 on November 25, 2013, 01:15:17 pm
To use game variables:
$game_variables[ID]


To use current event's coordinates (for BlizzABS):
$game_map.events[@SELF].x
$game_map.events[@SELF].y
Title: Re: Quick Question: How to insert variable into... [Resolved]
Post by: Shek on November 25, 2013, 01:31:27 pm
Thanks for taking the time!
Levels up!