/giveweapon command
#1

DELETED
Reply
#2

Show us your PlayerInfo enum and your GetWeaponSlot stock.
Reply
#3

Also please define exactly which line 1727 is.
Reply
#4

PHP код:
PlayerInfo[playa][pAGuns][GetWeaponSlot(gun)] = gun// HERE IS ERROR THIS IS LINE 1727 
]

This is 1727 line
Reply
#5

As he said before, show us your PlayerInfo enum and GetWeaponSlot code.
Reply
#6

Код:
CMD:giveweapon(playerid,params[])
{
    new pAdmin[MAX_PLAYERS];
	if(pAdmin[playerid] <= 4 && !IsPlayerAdmin(playerid)) // If they are not RCON admin
	{
		// Then it sends this message
		SendClientMessage(playerid,-1,"You are not authorised to use this command.");
	    return 1;
	}
	new
		weaponid,
		targetid,
		ammo;

	if(sscanf(params,"uii",targetid,weaponid,ammo))
	{
	    // If they typed the command wrong then show them this
	    SendClientMessage(playerid,-1,"USAGE: /giveweapon [playerid] [weaponid] [ammo]");
	    return 1;
	}
	else
	{
	    GivePlayerWeapon(targetid,weaponid,ammo);
	    return 1;
	}
}
That should work try this
Reply
#7

Quote:
Originally Posted by Alexy_Dramon
Посмотреть сообщение
Код:
CMD:giveweapon(playerid,params[])
{
    new pAdmin[MAX_PLAYERS];
	if(pAdmin[playerid] <= 4 && !IsPlayerAdmin(playerid)) // If they are not RCON admin
	{
		// Then it sends this message
		SendClientMessage(playerid,-1,"You are not authorised to use this command.");
	    return 1;
	}
	new
		weaponid,
		targetid,
		ammo;

	if(sscanf(params,"uii",targetid,weaponid,ammo))
	{
	    // If they typed the command wrong then show them this
	    SendClientMessage(playerid,-1,"USAGE: /giveweapon [playerid] [weaponid] [ammo]");
	    return 1;
	}
	else
	{
	    GivePlayerWeapon(targetid,weaponid,ammo);
	    return 1;
	}
}
That should work try this
Serious? did you just copy your giveweapon command? lol
Reply
#8

gun = PlayerInfo[playa][pAGuns][GetWeaponSlot(gun)];
Reply
#9

If you want this fixed, just post your enum and getweaponslot, because the mistake will be there...
Reply
#10

ITS FIXED
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)