In a magic effect script with while loop, will the following (pseudo code) do any good?
Bool Continue
Magic effect start
Continue = true
While A == A && Continue
;do stuff
endwhile
endevent
Magic effect finish
Continue = false
endevent
Or is the while loop automatically disposed of properly by the game?