Code: Select all
#turbo 5
Sub Main
:loop
/if ( 0 ) {
/echo Should NEVER get here!
} else /call healgroup
/goto :loop
/return
sub healgroup
/echo healgroup called
/returnModerator: MacroQuest Developers
Code: Select all
#turbo 5
Sub Main
:loop
/if ( 0 ) {
/echo Should NEVER get here!
} else /call healgroup
/goto :loop
/return
sub healgroup
/echo healgroup called
/returnCode: Select all
/if ( 0 ) {
/echo Should NEVER get here!
} else {
/call healgroup
}Code: Select all
/if ( 0 ) {
/echo Should NEVER get here!
} else /if (1) /call healgroup