20.01.2014, 23:02
to the server " /giveallweapon 29 100 " 0 rounds gives giving ammo false what should I do command recovers
where there is error? can you help please
where there is error? can you help please
Код:
dcmd_giveallweapon(playerid,params[]) { if(PlayerInfo[playerid][Level] >= 6) { new tmp[256], tmp2[256], Index, ammo, weap, WeapName[32], string[128]; tmp = strtok(params,Index), tmp2 = strtok(params,Index); if(!strlen(tmp) ) return SendClientMessage(playerid, red, "USAGE: /giveallweapon [weapon id/weapon name] [ammo]"); if(!strlen(tmp2) || !IsNumeric(tmp2) || strval(tmp2) <= 0 || strval(tmp2) > 99999) ammo = 500; if(!IsNumeric(tmp)) weap = GetWeaponIDFromName(tmp); else weap = strval(tmp); if(!IsValidWeapon(weap)) return SendClientMessage(playerid,red,"ERROR: Invalid weapon ID"); CMDMessageToAdmins(playerid,"GIVEALLWEAPON"); for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { PlayerPlaySound(i,1057,0.0,0.0,0.0); GivePlayerWeapon(i,weap,ammo); } } GetWeaponName(weap, WeapName, sizeof(WeapName) ); format(string,sizeof(string),"Administrator \"%s\" has given all players a %s (%d) with %d rounds of ammo", pName(playerid), WeapName, weap, ammo); return SendClientMessageToAll(blue, string); } else return SendClientMessage(playerid,red,"ERROR: You are not a high enough level to use this command"); }