[FilterScript] Gold Rims command. - 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: Filterscripts (
https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Gold Rims command. (
/showthread.php?tid=357098)
Gold Rims command. -
Anthony_Jones - 06.07.2012
Hello,
I made a Gold Rims command to install GR on any vehicle with /goldrims.
Download:
http://www.mediafire.com/?41a2zfxq5nbyzuj
Pawno Code:
Код:
CMD:goldrims(playerid, params[])
{
if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER)) return SendClientMessage(playerid, 0xFFFFFFFF, "You are not driving a vehicle.");
AddVehicleComponent(GetPlayerVehicleID(playerid),1080);
SendClientMessage(playerid, 0xFFFFFFFF, "You have added Gold Rims to your vehicle.");
return 1;
}
Thanks! Please Rep if you like.
Re: Gold Rims command. -
Isaac Mofujohn - 06.07.2012
LOL, sweet though, going to attach it as a mechanic's job command.
Re: Gold Rims command. -
Anthony_Jones - 06.07.2012
haha nice
Re: Gold Rims command. -
sherlock - 06.07.2012
screen of what it looks like kthx
Re: Gold Rims command. -
Anthony_Jones - 06.07.2012
Quote:
Originally Posted by sherlock
screen of what it looks like kthx
|
You dont know what gold rims looks like? lol
Re: Gold Rims command. -
Gamer_007 - 06.07.2012
nice release
Re: Gold Rims command. -
.FuneraL. - 06.07.2012
It is not necessary params using this command, because he does not enjoy parameters.
Re: Gold Rims command. -
Anthony_Jones - 06.07.2012
Quote:
Originally Posted by .FuneraL.
It is not necessary params using this command, because he does not enjoy parameters.
|
What
Re: Gold Rims command. -
.FuneraL. - 06.07.2012
pawn Код:
CMD:goldrims(playerid)
{
if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER)) return SendClientMessage(playerid, 0xFFFFFFFF, "You are not driving a vehicle.");
AddVehicleComponent(GetPlayerVehicleID(playerid),1080);
SendClientMessage(playerid, 0xFFFFFFFF, "You have added Gold Rims to your vehicle.");
return 1;
}
Not using params, remove the params[]
Re: Gold Rims command. -
FaldiGunZ - 28.07.2012
Thanks you! This is very useful