Zen's Easy Events / Event Adventures
I thought I'd make a little thread for the miscellaneous events I make that others may be interested in.
I have no idea how populated this thread will be, but I'll edit this post to add more as time goes by.
Pushable objects
Paste the following script into an event script call to make the player able to push the event around when triggered.
Sit in chairs
Duplicate the following event pages to create copy-pasteable events allowing you to sit on downward-facing chairs and seats. You are also prevented from moving while sitting.
I thought I'd make a little thread for the miscellaneous events I make that others may be interested in.
I have no idea how populated this thread will be, but I'll edit this post to add more as time goes by.
Pushable objects
Paste the following script into an event script call to make the player able to push the event around when triggered.
Code:
ev = $game_map.events[@event_id]
pl = $game_player
case pl.x - ev.x
when 1;ev.move_left
when -1; ev.move_right;end
case pl.y - ev.y
when 1;ev.move_up
when -1;ev.move_down;end
Sit in chairs
Duplicate the following event pages to create copy-pasteable events allowing you to sit on downward-facing chairs and seats. You are also prevented from moving while sitting.