Advertisement
Guest User

Untitled

a guest
Nov 15th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. SpellA = "utito gran tempo"
  2.  
  3. ----------------------------------------------------------------
  4. LastCastA = 0
  5.  
  6. Module.New('AttackSpells', function(module)
  7.     if Self.Mana() > 200 and os.time() - LastCastA >= 8 then
  8.         Self.Cast(SpellA)
  9.         LastCastA = os.time()
  10.         wait(200)
  11.     end
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement