New account registration is temporarily disabled.

HOW DO I SET A VEHICLE AS AN EVENT?

Posts

Pages: 1
I need to be able to store a vehicle's X and Y co-ords (as a variable) for a puzzle.
But I can't figure out how to make a variable for it's co-ords, because it is not showing up as an event.

Could someone please tell me how to make the ship an event/ store its coordinates?
Couldn't you just use the move vehicle location command? Or do you specifically need to use an event for it?
Variable commands: Var "Ship X" set to Sprite: ship, X-coordinate.

Same with Y. And there you are.
LouisCyphre
can't make a bad game if you don't finish any games
4523
He's using VX if that makes any difference.
Oh. I was writing with RM2k3 in mind. Good luck anyway.
I still need help... If anyone knows what to do.
I tried creating a "Vehicle" event, but to no avail.
WIP
I'm not comfortable with any idea that can't be expressed in the form of men's jewelry
11363
You have to use scripting.

$game_map.boat, $game_map.ship, etc are all the vehicle objects.
def set_location (map_id, x, y)
@map_id = map_id
@x = x
@y = y
refresh
unless if @data == true
then def Pos(x, y)
@x = x
@y = y + 2
refresh
end


fix this goddamn event.
Pages: 1