When I use the function in menumode object script, I put like this:
short checkbegin MENUMODEif IsPlayerMovingIntoNewSpace set check to 1endifendbegin GAMEMODEif check == 1 showmessage genericdebugmsg set check to 0endifend
and I never see anything (fast travel as primary testing means).
When I do all of it in gamemode as so, I still never see anything:
short checkbegin GAMEMODEif IsPlayerMovingIntoNewSpace set check to 1else if check == 1 showmessage genericdebugmsg set check to 0 endifendifend
I doan think this thing works in a script, at this point!