×
Меню
Индекс

MSFD Breaking of script processing

 
[no fix] Return
 
Return tells the game engine to finish processing the script for this frame. All code below this line will be ignored for this frame. In the next frame the script is executed again from the top.
 
If ( MenuMode == 1 )
     Return
Endif
 
Careful: Anything below a return function will not be processed, even if there are "true" if statements there! So use this with caution.