Help with org cars - 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: Help with org cars (
/showthread.php?tid=184099)
Help with org cars -
zack3021 - 18.10.2010
How to make org cars different from normal cars on the street?
Do i have to use AddVehicleComponent on the different cars?
Re: Help with org cars -
MBX97 - 18.10.2010
i think u must put it or use admin system to put it in-game , thats all i know

:P
Re: Help with org cars -
zack3021 - 18.10.2010
Guys please help.
Re: Help with org cars -
Steven82 - 18.10.2010
Quote:
Originally Posted by MBX97
i think u must put it or use admin system to put it in-game , thats all i know  :P
|
No offense, your a noob. Serious noob..
**No offense**
Re: Help with org cars -
zack3021 - 18.10.2010
Quote:
Originally Posted by Steven82
No offense, your a noob. Serious noob..
**No offense**
|
I did not have the heart to tell him, but you did.
I still need help.
Oh really? O_o
Код:
This forum requires that you wait 120 seconds between posts. Please try again in 4 seconds.
Re: Help with org cars -
Voldemort - 18.10.2010
Have you played SP?
I guess no, first play SP and than start to scripting..
Why do you ask, do I have to AddVehicleComponent( if your not actualy tested that by self, I would understand if you have use that function and they are not adding, than it would be prob, but now its looks that not even want to look smart, you just ask, question after another.
Re: Help with org cars -
Kayaque - 18.10.2010
lol, so many retarded replys!
Zack, yes you do need to use AddVehicleComponent if you want mods (such as bumpers and rims) on them.
https://sampwiki.blast.hk/wiki/AddVehicleComponent
Is that what you had in mind?
If you use the components, be VERY accurate with what ID's you're using, since a wrong bumper on a wrong car can crash your server.
Re: Help with org cars -
zack3021 - 18.10.2010
Let me make it simple.
I have a Sultan for a racing org. And i have another sultan for everyone. How to make them different.
Re: Help with org cars -
dillo1000 - 21.10.2010
pawn Код:
new test1;
test1 = AddStaticVehicle(482,-876.6974,1556.8944,26.0355,95.3547,2,2); // Test
}
if(newstate == PLAYER_STATE_DRIVER)
{
new vehicleid = GetPlayerVehicleID(playerid);
if(vehicleid == test1 && Member[playerid] != 9)
{
RemovePlayerFromVehicle(playerid);
SendClientMessage(playerid, 0xFFFFFFFF, "This Vehicle Belongs to Test!");
}
}
Should work