Opis problema: Baca mi 2 warninga, ali ne mogu skontant gde. Warrning: number of arguments does not match definition
Deo skripte:
CMD:weather(playerid, params[])
{
if(PlayerInfo >= 1 || PlayerInfo >= 1 || PlayerInfo >= 1) return SCM(playerid, GRAD2, "Niste ovlasceni da koristite ovu komandu");
new weatherr;
if(sscanf(params, "i", weatherr)) return SCM(playerid, GRAD2, "{07C1F5}{FFFFFF}Koristite: {BFC0C2}/weather ");
if(weatherr > 20 || weatherr < 1) return SCM(playerid, ZUTA, "Ne mozes preko 20 ili ispod 0");
SetPlayerWeather(playerid, weatherr); //Ovde baca
new status;
if(PlayerInfo > 0) { status = "{E60000}Helper{E60000}"; }
else if(PlayerInfo > 0) { status = "{E60000}HIAC{E60000}"; }
else if(PlayerInfo > 0) { status = "{E60000}Vip{E60000}"; }
format(nellys,format(nellys), " %s %s je promenio svoj weather na %d", status, GetName(playerid), weatherr);
VBroadCast(ZUTA, nellys, 5);
return 1;
}