15.04.2014, 19:49
Код:
CMD:customplate(playerid, params[])
{
new plate[128];
if(!IsPlayerConnected(playerid) || PlayerInfo[playerid][pPlate] == 1) return SendClientMessage(playerid, COLOR_GREY, "You are not allowed to use command.");
if(!IsPlayerInRangeOfPoint(playerid, 4, 2117.5835,-1153.0809,24.2201)) return SendClientMessage(playerid, COLOR_GREY, "You are not at the tuning shop.");
if(sscanf(params, "s[128]", plate)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /customplate [number]");
format(plate, sizeof(plate), "%s", plate);
SetVehicleNumberPlate(PlayerVehicleInfo[playerid] , plate); <<-- This is the line
return 1;
}
C:\Users\indra\Desktop\12-03-2014.pwn(34964) : error 035: argument type mismatch (argument 1)


