11.03.2010, 16:27
Hi, I made a custom /dropcar cmd but when I'm going to use /dropcar ID it always say: "This vehicle doesn't belong to that player!"
Here's the code:
Please help!
Here's the code:
Код:
if(strcmp(cmd,"/dropcar", true) == 0)
{
if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
{
tmp = strtok(cmdtext, idx);
new playa;
playa = ReturnUser(tmp);
new carid = GetPlayerVehicleID(playerid);
new LoL = GetPlayerName(playa,gname,sizeof(gname));
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /dropcar [playerid/PartOfName]");
return 1;
}
if(IsAnOwnableCar(carid))
{
if(LoL == CarInfo[carid][cOwner])
{
SetTimerEx("RubaVeicolo",300000, false, "i", playerid);
SendClientMessage(playerid,COLOR_WHITE, "* Stai rubando l'auto, devi rimanere dentro per 5 minuti!");
GetPlayerName(playerid,gname,sizeof(gname));
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;
}

