(Help) Cars always spawn there.
#3

Код:
dcmd_giveweapon(playerid,params[]) {
	if(PlayerInfo[playerid][Level] >= 2) {
	    new tmp[256], tmp2[256], tmp3[256], Index; tmp = strtok(params,Index), tmp2 = strtok(params,Index), tmp3 = strtok(params,Index);
	    if(!strlen(tmp) || !strlen(tmp2)) return SendClientMessage(playerid, COLOR_RED, "USAGE: /giveweapon [playerid] [weapon id/weapon name] [ammo]");
		new player1 = strval(tmp), weap, ammo, WeapName[32], string[128];
		if(!strlen(tmp3) || !IsNumeric(tmp3) || strval(tmp3) <= 0 || strval(tmp3) > 99999) ammo = 500; else ammo = strval(tmp3);
		if(!IsNumeric(tmp2)) weap = GetWeaponIDFromName(tmp2); else weap = strval(tmp2);
        if(IsPlayerConnected(player1) && player1 != INVALID_PLAYER_ID) {
        	if(!IsValidWeapon(weap)) return SendClientMessage(playerid,COLOR_RED,"ERROR: Invalid weapon ID");

			GetWeaponName(weap,WeapName,32);
			new str[128];
            format(str, sizeof(str), "%s has given a %s with %d rounds of ammo to %s.",pName(playerid), weap, ammo,pName(player1));
            SaveLog("Weapon Log", str);
			format(string, sizeof(string), "You have given %s a %s (%d) with %d rounds of ammo", pName(player1), WeapName,  ammo); SendClientMessage(playerid,COLOR_YELLOW,string);
			if(player1 != playerid) { format(string,sizeof(string),"Administrator \"%s\" has given you a %s (%d) with %d rounds of ammo", pName(playerid), WeapName,  ammo); SendClientMessage(player1,COLOR_YELLOW,string); }
   			return GivePlayerWeapon(player1, weap, ammo);
	    } else return SendClientMessage(playerid,COLOR_RED,"ERROR: Player is not connected");
	} else return SendClientMessage(playerid,COLOR_RED,"You are not an admin.");
}
Reply


Messages In This Thread
(Help) Cars always spawn there. - by arasone - 11.12.2010, 09:11
Re: (Help) Cars always spawn there. - by iggy1 - 11.12.2010, 09:12
Re: (Help) Cars always spawn there. - by arasone - 11.12.2010, 09:21
Re: (Help) Cars always spawn there. - by Steven82 - 11.12.2010, 09:29
Re: (Help) Cars always spawn there. - by iggy1 - 11.12.2010, 09:42

Forum Jump:


Users browsing this thread: 1 Guest(s)