16.09.2012, 16:44
The quickest way to fix it is to make the GROUND object (the object on which the vehicle lands when teleported) CreateObject instead of CreateDynamicObject.
An alternative would be a temporary freeze timer. Put this right after SetVehiclePos.
The function:
A third alternative would be the preload function from the streamer plugin. Look in the documentation of Incognito's Streamer Plugin.
An alternative would be a temporary freeze timer. Put this right after SetVehiclePos.
pawn Код:
TogglePlayerControllable(playerid,0);
SetTimerEx("unfreeze",1000,false,"i",playerid);
pawn Код:
public unfreeze(playerid) return TogglePlayerControllable(playerid,1);