Teleport With car - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Teleport With car (
/showthread.php?tid=318910)
Teleport With car -
X-Box - 17.02.2012
hey guyz i wanted to know that how to teleport player with car i mean when i type /lv if i;am in Vehicle it doesnt teleports me and when i;am out of vehicle it teleports me
So tell me how to teleport with car aswell
And give me stock too so it would be easier
Re: Teleport With car -
emokidx - 17.02.2012
use can use the follows
pawn Код:
if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER)
{
new id;
id = GetPlayerVehicleID(playerid);
SetVehiclePos(arguments);
SetPlayerPos(arguments);
PutPlayerInVehicle(id);
}
just a rough code
get the idea from it