Freeloop - HerculesWS/Hercules GitHub Wiki
- 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