I'm having a problem on this.
#1

When i type /grab to pick up weapons it should say "* PlayerName picks up a GunName" but it's bugged, please help me to fix this.

PAWN:
pawn Код:
public gunpick(playerid)
{
    for(new i = 0; i < sizeof(DropInfo); i++)
    {
        if (PlayerToPoint(1.0,playerid,DropInfo[i][dx],DropInfo[i][dy],DropInfo[i][dz]))
        {
            if(GetPlayerVirtualWorld(playerid) == DropInfo[i][dWorld])
            {
                DestroyObject(DropObject[i]);
                DropInfo[i][dx] = 0.0;
                DropInfo[i][dy] = 0.0;
                DropInfo[i][dz] = 0.0;
                if(DropInfo[i][dType] == 1) // Weapons
                {
                    new string[256];
                    new WeaponNames[25];
                    new gunID = GetPlayerWeapon(playerid);
                    GetWeaponName(gunID, WeaponNames, sizeof(WeaponNames));
                    format(string,sizeof(string),"* %s picks up a %s",Name(playerid),DropInfo[i][dAmount]);
                    ProxDetector(30.0,playerid,string,COLOR_RED,COLOR_RED,COLOR_RED,COLOR_RED,COLOR_RED);
                    AddWeapon(playerid,DropInfo[i][dAmount][0],DropInfo[i][dAmount][1]);
                    DropInfo[i][dAmount][0] = 0;
                    DropInfo[i][dAmount][1] = 0;
                    DropInfo[i][dType] = 0;
                }
            }
        }
    }
}
Picture:
Reply


Messages In This Thread
I'm having a problem on this. - by Mikkel_RE - 28.11.2012, 20:33
Re: I'm having a problem on this. - by park4bmx - 28.11.2012, 20:38
Re: I'm having a problem on this. - by Mikkel_RE - 28.11.2012, 20:40
Re: I'm having a problem on this. - by park4bmx - 28.11.2012, 20:44
Re: I'm having a problem on this. - by Mikkel_RE - 28.11.2012, 20:48

Forum Jump:


Users browsing this thread: 3 Guest(s)