Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. -- Ring ID's
  2. -- Might Ring = 3048
  3. -- Death Ring = 6299
  4. -- Energy Ring = 3051
  5. -- Time Ring = 3053
  6. -- Life Ring = 3052
  7. -- Ring of Healing = 3098
  8. -- Prismatic Ring = 16114
  9. -----------------------------------------------------------------------------------------------------------
  10. RingID = 3051 -- Ring to wear if mana goes below the amount you've set
  11. SecondRingID = 3097 -- Ring to wear when mana is over the set Amount!
  12.  
  13.  
  14. while (true) do
  15. if (Self.Health() < 975) and (Self.Ring().id ~= RingID) then
  16. Self.Equip(RingID, "ring")
  17. elseif (Self.Health() > 1350) and (Self.Ring().id ~= SecondRingID) then
  18. Self.Equip(SecondRingID, "ring")
  19. end
  20. wait(500)
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement