24.06.2013, 12:15
How do i create player infomation like :
Код:
enum pInfo { pAdmin, pVip, pCash, pKill, pDeath, }
enum pInfo { pAdmin, pVip, pCash, pKill, pDeath, }
enum pInfo { pAdmin, pVip, pCash, pKill, pDeath } new PlayerInfo[MAX_PLAYERS][pInfo];
CMD:sethp(playerid, params[]) { new string[128], playa, health; if(sscanf(params, "ud", playa, health)) { SendClientMessage(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.", GetPlayerName(playa), health); SendClientMessage(playerid, COLOR_WHITE, string); } } else SendClientMessage(playerid, COLOR_GRAD1, "Invalid player specified."); } else { SendClientMessage(playerid, COLOR_GRAD1, "You are not authorized to use that command!"); } return 1; }
C:\Users\Admin\Desktop\Example\gamemodes\Gany.pwn(1518) : warning 202: number of arguments does not match definition C:\Users\Admin\Desktop\Example\gamemodes\Gany.pwn(1518) : warning 202: number of arguments does not match definition