Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function()
  2. local pot = GetItemCount("Battle Potion of Intellect", nil, true)
  3. if pot == 0 then
  4.  
  5.  
  6. local prolonged = GetItemCount("Potion of Prolonged Power", nil, true)
  7. if prolonged == 0 then
  8.  
  9. return string.format("0")
  10.  
  11. else
  12. return string.format(prolonged)
  13.  
  14. end
  15.  
  16. else
  17. return string.format(pot)
  18.  
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement