Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. local ManaPotion = "Ultimate Mana Potion"
  2. Module.New("manabuy", function(module)
  3. if(Self.ItemCount(ManaPotion)<50) then
  4. Self.SayToNpc("Hi")
  5. wait(200)
  6. Self.SayToNpc("Vial")
  7. wait(200)
  8. Self.SayToNpc("Yes")
  9. wait(200)
  10. Self.SayToNpc("Trade")
  11. wait(200)
  12. Self.ShopBuyItemsUpTo(ManaPotion, 100)
  13. wait(100)
  14. end
  15. module:Delay(1000)
  16. end)
  17. Module.New("manaburn", function(module)
  18. if(Self.Mana()>1000) then
  19. Self.Cast("exevo gran mas frigo")
  20. Self.Cast("exevo gran mas tera")
  21. Self.Cast("utana vid")
  22. Self.Cast("exura vita")
  23. else
  24. Self.UseItemWithMe(ManaPotion)
  25. end
  26. module:Delay(20)
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement