08.02.2011, 01:16
It's FORPLAYERID, not PLAYERID. Also, you didn't close the bracket on the if(GetVehModel...
Also (again), you can't do GetVehicleModel(vehicleid) == Admincar, try this...
Also (again), you can't do GetVehicleModel(vehicleid) == Admincar, try this...
pawn Код:
public OnVehicleStreamIn(vehicleid, forplayerid)
{
if(vehicleid == Admincar)
{
SetVehicleParamsForPlayer(vehicleid,forplayerid,0,1);
}
return 1;
}

