Moderator: MacroQuest Developers



Code: Select all
#Event Idle "You have gained experience."
#Event Fight "Fight this monster that I pulled, slut"
Sub Main
:IdleLoop
/if n $KeepIdling==0 /goto :FightLoop
/if n $KeepIdling==1 /goto :IdleLoop
:FightLoop
/if n $KeepIdling==0 /goto :FightLoop
/if n $KeepIdling==1 /goto :IdleLoop
/return
Sub Event_Idle
/varset $KeepIdling 1
/return
Sub Event_Fight
/varset $KeepIdling 0
/return


