What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Question HP

blaze

Member
Joined
Sep 17, 2014
Messages
66
Reaction score
0
How can make this for example

if (my.HP < 1000)
item.use("Potion")
 
Try this;

if(hpp(me) < 90)
{
UseItem("Item Name");
}

This should use an item once you have below 90% health.
 
Back
Top