I know you could do this in VX Ace, but i've never used VX so I wouldn't know.
Ah, alrighty. In any case, thanks a ton. But just in case anyone else is wondering, I just checked out the topic of script calls (totally forgot it was there!) and figured out how to do it with a script call (which is a bit simpler I guess.)
that would be to go into "Control Variables" and then choosing "Script" and entering: $gameMap.events[n].x ->To store the event's X value in the variable, or $gameMap.events[n].y ->To store the event's Y value in the variable. With [n] being replaced with the Event's ID (For example: $gameMap.events[001].x)
EDIT: Also, keep in mind that this would only apply to the current map. Since every map has its own Event 001, for example, you can't just put in an ID of an event on a different map from the player/the event pointing to the variable, and expect it to work.
If anyone knows a way to get the ID of an event from a specific map, though, I'm all ears.
DOUBLE EDIT: It appears I may be wrong on this >.> The coordinates seem to always be off by 1 or 2 when I use this method. I'll stick to Kirikaz's method for now haha.