I Need help in colours - 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: I Need help in colours (
/showthread.php?tid=101599)
I Need help in colours -
californiadrifter - 11.10.2009
guys i need a FS, that it allow me to do /white /red /blue in the car and if i write that they car colour will change like /red to red. please guys
Thanks
- Ehab Isaac
Re: I Need help in colours -
Correlli - 11.10.2009
-> Script request topic.
Re: I Need help in colours -
[XST]O_x - 11.10.2009
Easy,
pawn Код:
if(strcmp(cmdtext, "/blue", true) ==0)
{
ChangeVehicleColor(GetPlayerVehicleID(playerid), 410,410);//Thats blue
}//
if(strcmp(cmdtext, "/red", true) ==0)
{
ChangeVehicleColor(GetPlayerVehicleID(playerid), 3,3);//Thats red
}//
if(strcmp(cmdtext, "/white", true) ==0)
{
ChangeVehicleColor(GetPlayerVehicleID(playerid), 1,1);//Thats white
}//
But next time search or Use the script request topic.
Re: I Need help in colours -
californiadrifter - 11.10.2009
oh okay ^_^ thanks for you

so much mozilla