/myweather cmd [+REP]
#1

Hello,
Can someone make /myweather [WEATHERID] cmd for me?
I will give rep.
Reply
#2

remove itImade it on myown.
Reply
#3

pawn Код:
if(strcmp(cmd, "/weather", true) == 0)
{
    if(IsPlayerConnected(playerid))
    {
        if(PlayerInfo[playerid][Admin] < 1)
        {
            SendClientMessage(playerid, COLOR_GRAD1, "   You are not authorized to use that command !");
            return 1;
        }
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, COLOR_WHITE, "USAGE: /weather [weatherid]");
            return 1;
        }
        new weather;
        weather = strvalEx(tmp);
        if(weather < 0||weather > 45) { SendClientMessage(playerid, COLOR_GREY, "   Weather ID can't be below 0 or above 45 !"); return 1; }
        SetPlayerWeather(playerid, weather);
        SendClientMessage(playerid, COLOR_GREY, "   Weather has been set !");
    }
    return 1;
}

        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, COLOR_WHITE, "USAGE: /myweather [weatherid]");
            return 1;
        }
        new weather;
                weather = strvalEx(tmp);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)