07.02.2014, 22:01
Код:
YCMD:sethp(playerid, params[], help) { if(help) return SCM(playerid, COLOR_GREY, "Not supported"); new string[128], playa, health; if(sscanf(params, "ud", playa, health)) { SCM(playerid, COLOR_GRAD, "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); SCM(playerid, COLOR_BLUE, string); format(string, sizeof(string), "> Admin %s has set your health to %d.", GetPlayerNameEx(playerid), health); SCM(playa, COLOR_BLUE, string); } } else SCM(playerid, COLOR_GRAD1, "Invalid player specified."); } else { format(string,sizeof(string),"~n~~n~~w~You cannot use this command."); TextDrawSetString(Textdraw69[playerid],string); TextDrawShowForPlayer(playerid, Textdraw69[playerid]); } return 1; }
Код:
stock HideCMessage(playerid) { TextDrawHideForPlayer(playerid, Textdraw69); return 1; } timer HideCMessage[4000](playerid) { TextDrawHideForPlayer(playerid, Textdraw69); return 1; }