[FilterScript] Gold Rims command.
#1

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.
Reply
#2

LOL, sweet though, going to attach it as a mechanic's job command.
Reply
#3

haha nice
Reply
#4

screen of what it looks like kthx
Reply
#5

Quote:
Originally Posted by sherlock
Посмотреть сообщение
screen of what it looks like kthx
You dont know what gold rims looks like? lol
Reply
#6

nice release
Reply
#7

It is not necessary params using this command, because he does not enjoy parameters.
Reply
#8

Quote:
Originally Posted by .FuneraL.
Посмотреть сообщение
It is not necessary params using this command, because he does not enjoy parameters.
What
Reply
#9

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[]
Reply
#10

Thanks you! This is very useful
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)