26.07.2009, 15:54
Hey,
Which of these will work correctly in my script:
With || or with && ?
Which of these will work correctly in my script:
pawn Код:
if(health > 10 || health < 50) // if health is more than 10 O R if health is less than 50
//OR
if(health > 10 && health < 50) // if health is more than 10 A N D if health is less than 50