how i can make change car color?
#3

Quote:
Originally Posted by Jonny5
Посмотреть сообщение
pawn Код:
YCMD:vcolor(playerid, params[], help)
{  
    if(!IsPlayerAdmin(playerid)) return 0;
    if (help)
    {
        SendClientMessage(playerid, 0xFF9933FF, "/vcolor [0-128] [0-128]: Change your paint color");
    }
    else
    {
        new p1,p2;
        new fstring[58];
        new vid = GetPlayerVehicleID(playerid);
        if (vid == 0) return SendClientMessage(playerid, 0xFF9933FF, "/vcolor [0-255] [0-255] : You must be in a vehivle to Change your paint color");
        if(!sscanf(params, "ii", p1,p2)){
            ChangeVehicleColor(vid, p1,p2);
            format(fstring,58,"/paintjob : Changed your paint color to (%i)(%i)",p1,p2);
            SendClientMessage(playerid, 0xFF9933FF, fstring);
        }
        else
        {
            SendClientMessage(playerid, 0xFF9933FF, "/vcolor [0-255] [0-255]: Change your paint color");
        }
    }
    return 1;
}
this is what i use

it is in y_commands but could be converted easly
i use zcmd. i convert but nothing happens.
Reply


Messages In This Thread
how i can make change car color? - by TheDiscussionCafe - 22.05.2012, 00:49
Re: how i can make change car color? - by Jonny5 - 22.05.2012, 01:08
Re: how i can make change car color? - by TheDiscussionCafe - 22.05.2012, 01:50
Re: how i can make change car color? - by Jonny5 - 22.05.2012, 01:52
Re: how i can make change car color? - by TheDiscussionCafe - 22.05.2012, 03:09

Forum Jump:


Users browsing this thread: 1 Guest(s)