Kain Nobel
Member
Good day to everybody, I just have a small question. Within a game script, how would you get the "This Event" id for the event that called your script through a call script?
For instance, I know this probably works through call script...
However, for the sake of user simplicity, how can I do that directly IN the script instead of having to write it in the call script?
So I can just type out...
Seeing as the script is always looking for the active event.
For instance, I know this probably works through call script...
Code:
Script: event = get_character(0)
Script: $game_player.do_something(event)
However, for the sake of user simplicity, how can I do that directly IN the script instead of having to write it in the call script?
So I can just type out...
Code:
$game_player.do_something
Seeing as the script is always looking for the active event.