Guest User

Untitled

a guest
May 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.18 KB | None | 0 0
  1. local spell = "SPELLNAME"
  2. local castOver = MANA TO CAST -- usually max mana
  3.  
  4. while(true) do
  5.     if (Self.Mana() > castOver) then
  6.     Self.Say(spell)
  7.     sleep(math.random(600,1000))
  8.     end
  9. end
Add Comment
Please, Sign In to add comment