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

RUSmaroder

New Member
Joined
Jul 24, 2015
Messages
69
Reaction score
0
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