[HELP] /dropcar
#2

Hello,

There were a couple of things incorrect:

pawn Код:
new LoL = GetPlayerName(playa,gname,sizeof(gname));
should just be:
pawn Код:
new gname[MAX_PLAYER_NAME];
GetPlayerName(playa,gname,sizeof(gname));
Another thing I changed was:
pawn Код:
if(LoL == CarInfo[carid][cOwner])
to
pawn Код:
if(strcmp(gname, CarInfo[carid][cOwner], true) == 0)
This should hopefully work:
pawn Код:
if(strcmp(cmd,"/dropcar", true) == 0)
{
    if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
    {
        tmp = strtok(cmdtext, idx);
        new playa, gname[MAX_PLAYER_NAME];
        playa = ReturnUser(tmp);
        new carid = GetPlayerVehicleID(playerid);
        GetPlayerName(playa,gname,sizeof(gname));
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, COLOR_GRAD2, "USE: /dropcar [playerid/PartOfName]");
            return 1;
        }
        if(IsAnOwnableCar(carid))
        {
            if(strcmp(gname, CarInfo[carid][cOwner], true) == 0)
            {
                SetTimerEx("RubaVeicolo",300000, false, "i", playerid);
                SendClientMessage(playerid,COLOR_WHITE, "* Stai rubando l'auto, devi rimanere dentro per 5 minuti!");
                format(gstring,sizeof(gstring),"* %s apre il pannello dell'auto e inizia a smontarlo.",gname);
                ProxDetector(30.0, playerid, gstring, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
            }
            else return SendClientMessage(playerid,COLOR_WHITE,"* This vehicle doesn't belong to that player!");
        }
        else return SendClientMessage(playerid,COLOR_WHITE,"* This vehicle is not owned!");
    }
    else return SendClientMessage(playerid,COLOR_WHITE,"* You are not a the Ombre member!");
    return 1;
}

Reply


Messages In This Thread
[HELP] /dropcar - by Zimon95 - 11.03.2010, 16:27
Re: [HELP] /dropcar - by Chris. - 11.03.2010, 17:23
Re: [HELP] /dropcar - by Zimon95 - 11.03.2010, 17:25
Re: [HELP] /dropcar - by Chris. - 11.03.2010, 19:31
Re: [HELP] /dropcar - by martiins2 - 06.11.2010, 21:39

Forum Jump:


Users browsing this thread: 1 Guest(s)