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.