Evo ovako koristim gamemode Raven's.I sad kada igrač kupi auto ono se normalno spawna u sf, i tu se javlja problem, ja kao admin nemogu tp auto do sebe na komandu /getcar id.Odem u SF tamo gdje se auta spawnaju i vidim svoje auto koje sam kupio ulazim u njega i piše vlasništvo Armija.Eto to je moj problem znači problem se javlja u više polja pa ako neko može pomać.
if(strcmp(cmd, "/getcar", true) == 0)
{
    if(IsPlayerConnected(playerid))
    {
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /getcar ");
return 1;
}
new Float:plocx,Float:plocy,Float:plocz;
new plo;
plo = strval(tmp);
if (PlayerInfo >= 6)
{
GetPlayerPos(playerid, plocx, plocy, plocz);
SetVehiclePos(plo,plocx+8,plocy, plocz);
LinkVehicleToInterior(plo, GetPlayerInterior(playerid));
SetVehicleVirtualWorld(plo, GetPlayerVirtualWorld(playerid));
OnPropUpdate(4);
format(string, sizeof(string),": %s Has Teleported Vehicle [%d] To his Position",sendername,plo);
ABroadCast(COLOR_LIGHTRED,string, 5);
new y, m, d;
new h,mi,s;
getdate(y,m,d);
gettime(h,mi,s);
format(string,sizeof(string), "(%d/%d/%d)[%d:%d:%d] %s Has Teleported the car [%d] To himself.",d,m,y,h,mi,s,sendername,plo);
AdminLog(string);
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, "  you are not authorized to use that command!");
}
}
return 1;
}


To je za komandu /getcar a ako vam još nešto treba recite.