Quote:
Originally Posted by Jankingston
pawn Код:
CMD:sethp(playerid, params[]) { new string[128], playa, health; if(sscanf(params, "ud", playa, health)) { SendClientMessageEx(playerid, COLOR_GRAD2, "USAGE: /sethp [playerid] [health]"); return 1; } if (PlayerInfo[playerid][pAdmin] >= 4) { if(IsPlayerConnected(playa)) { if(playa != INVALID_PLAYER_ID) { SetPlayerHealth(playa, health); format(string, sizeof(string), "You have set %s's health to %d.", GetPlayerNameEx(playa), health); SendClientMessageEx(playerid, COLOR_WHITE, string); } } else SendClientMessageEx(playerid, COLOR_GRAD1, "Invalid player specified."); } else { SendClientMessageEx(playerid, COLOR_GRAD1, "You are not authorized to use that command!"); } return 1; }
Try it
|
Quote:
Originally Posted by AnonScripter
makes the playerid's health automatically decreases 5% per 10 seconds
|
I really like how you do not read and post a command you got from somewhere.