24.10.2011, 19:44
Helllo!,
Guys i want to ask, i learning C# lang and there are in C# some cmd Called "While" , so nice idea to say in script of samp :
Guys look at this maybe worked
But i fail with "Health" what can i put in? Is this possible to do ??
Guys i want to ask, i learning C# lang and there are in C# some cmd Called "While" , so nice idea to say in script of samp :
Quote:
while(Health>100) //If Get Player health more than 100 Player got auto ban. { Ban(playerid); } |
Quote:
new Float:health = GetPlayerHealth(playerid); while(health>100) { Ban(playerid); } |