SA-MP Forums Archive
setvehicleinterior? - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: setvehicleinterior? (/showthread.php?tid=122424)



setvehicleinterior? - braduz - 21.01.2010

is there any pawn codes that set a vehicles interior (on static spawn)
because invisible vehicles in liberty city is kinda.....UMPFFFFFFHHHHH


Re: setvehicleinterior? - Mikep. - 21.01.2010

www.wiki.sa-mp.com

Learn how to wiki.


Re: setvehicleinterior? - JoeDaDude - 21.01.2010

https://sampwiki.blast.hk/wiki/LinkVehicleToInterior


Re: setvehicleinterior? - Doppeyy - 21.01.2010

Quote:
Originally Posted by Mikep.
www.wiki.sa-mp.com

Learn how to wiki.
Like you knew everything when you just started.
He asks for help not links.

[Doppeyy


Re: setvehicleinterior? - Fedee! - 21.01.2010

Quote:
Originally Posted by ๔๏קקєyy
Quote:
Originally Posted by Mikep.
www.wiki.sa-mp.com

Learn how to wiki.
Like you knew everything when you just started.
He asks for help not links.

[Doppeyy
Taking advantage of this post, is there a way to "SetVehicleInterior" like SetPlayerInterior? Cuz I got /dirt (interior 10 I think, I dont remember now) and when you are in a vehicle the vehicle gets invisible. I tryed GetplayerInterior but I could not make it work :/


Re: setvehicleinterior? - Crusher!! - 22.01.2010

Some people are hopeless....
pawn Код:
// Use: SetVehicleInterior(vehicleid,interior);
// Example: SetVehicleInterior( GetPlayerVehicleID(playerid) , GetPlayerInterior(playerid) ); // sets player vehicle to player interior

stock SetVehicleInterior(vehicleid,interior)
{
   return LinkVehicleToInterior(vehicleid,interior);
}