Interiors For Trailers? - 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: Interiors For Trailers? (
/showthread.php?tid=187490)
Interiors For Trailers? -
Tim_Ethen - 03.11.2010
I know there are interiors for houses, but what about trailers? If so what?
Re: Interiors For Trailers? -
m5industries - 03.11.2010
I have never heard of interiors for trailers; I have always used a small house interior, or maybe a studio apartment interior. If you wanted some trailer interiors, there's bound to be mods of trailer interiors that you can download.
Re: Interiors For Trailers? -
iFriSki - 03.11.2010
Don't know the IDs off-hand, but there is interiors for trailers.
Re: Interiors For Trailers? -
Tim_Ethen - 03.11.2010
Can you try to find those out?
Note : I am talking trailer homes
Re: Interiors For Trailers? -
Haydz - 03.11.2010
Theres a trailer interior, can't remember the id, maybe you could find it here
http://weedarr.wikidot.com/interior
The walls are walk thru also, so that would be a problem aslong as mapped walls there
Re: Interiors For Trailers? -
HrvojeCro - 03.11.2010
just make your own interior and take coordinates where you want to spawn when you enter
then:
pawn Код:
new trailer;
trailer = AddStaticVehicle(Id of trailer, ...);
on OnPlayerEnterVehicle
pawn Код:
if(vehicleid == trailer)
{
SetPlayerPos(playerid, x,y,z); // x,y,z coordinates of interior, where you want to be spawned
SetPlayerInterior(playerid, 10);
}
return1;