-
Notifications
You must be signed in to change notification settings - Fork 758
Freeloop
Haru edited this page Oct 19, 2016
·
1 revision
- freeloop(<toggle></toggle>);
Toggling this to enabled (1) allows the script instance to bypass the infinite loop protection, allowing your script to loop as much as it may need. Disabling (0) will warn you if an infinite loop is detected.
//Be aware with what you do here. for ( set .@i,0; .@i<.@bigloop; set .@i, .@i+1 ) { dothis; // Be aware, it will block the emulator to process other // stuff (socket, timer, logic, etc.) until the loop end. } freeloop(0); // disable for ( set .@i,0; .@i<.@bigloop; set .@i, .@i+1 ) { dothis; // throw an infinity loop error }Category:Script Command