What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

RUSmaroder

New Member
Joined
Jul 24, 2015
Messages
69
Hellp! - public int hp { get; set; }

The guys who write scripts - help to understand how the "public int hp {get; set;}" It is necessary to take the value of HP, and then - something to do with it , for example - if the value is less than 2000 , the Sleep ().
 
Last edited:
The guys who write scripts - help to understand how the "public int hp {get; set;}" It is necessary to take the value of HP, and then - something to do with it , for example - if the value is less than 2000 , the Sleep ().

Hey, you could do:

if(me.hp > 2000) {
// do stuff
}
or

if(me.hpp > 20) {
// do stuff. hpp is percentage
}
 
Back
Top