10.02.2017, 16:31
Quote:
There you go:
Код:
CMD:scorefall(playerid, params[]) { if(Dead[playerid] == 1) return SendClientMessage(playerid, COLOR_RED, "[INFO] You can't use commands while being dead!"); new value, name[MAX_PLAYER_NAME], string[128], string2[128]; if(PlayerInfo[playerid][pAdmin] <= 2) return SendClientMessage(playerid, COLOR_RED, "ERROR: Insufficient Permissions!"); if(sscanf(params, "d", value)) return SendClientMessage(playerid, COLOR_LIGHTGREEN, "Usage: /Scorefall [Amount]"); if(value <= 0) return SendClientMessage(playerid, COLOR_RED, "Invalid Amount!"); for(new i=0; i<MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { SetPlayerScore(i, GetPlayerScore(i) + value); } } GetPlayerName(playerid,name,sizeof(name)); format(string,sizeof(string),"Admin %s has given all players %d Score.",name, value); SendClientMessageToAll(COLOR_YELLOW,string); format(string2,sizeof(string2),"~h~scoref all~n~~h~+%d score",value); GameTextForAll(string2,3000,3); return 0; } |