[FilterScript] Paint for cars
#1

Hello This is my first FS so be easy on me. I know this is extremely easy to make, but I hope someone can use it Do /paint(u can change the cmd ofc) and the car will change colour, just a random colour! Some people think it's cool

Download!

http://solidfiles.com/d/48de2/
Reply
#2

Nice for your first release
Reply
#3

Thank you
Reply
#4

put screen of your filterscript
Reply
#5

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(strcmp(cmdtext, "/paint", true) == 0)
    {
        if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, 0xFFFFFFFF, "You must be in a vehicle!");
        ChangeVehicleColor(GetPlayerVehicleID(playerid), random(255), random(255));
        return 1;
    }
    return 0;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)