1st spell gem varies in cast time but 2nd spell gem is always 2.0 casting time
Code: Select all
:loop
/cast 1
/cast 2
/cast 2
/goto loop
Code: Select all
#turbo
#event MobDead "You must first select a target for this spell!"
Sub Main
:nuke
/doevents
/delay 5
/if $char(casting)==TRUE /goto :nuke
/cast 1
:concussion1
/doevents
/delay 5
/if $char(casting)==TRUE /goto :concussion1
/cast 2
:concussion2
/doevents
/delay 5
/if $char(casting)==TRUE /goto :concussion2
/cast 2
/goto :nuke
/return
Sub Event_MobDead
/endmacro
/return 
