04.06.2016, 05:40
guys, i made this CMD for vips so that they can set there weather. But when a VIP writes /vweather the weather is changed but i want that a msg must be given saying "Weather Changed" when a vip changes the weather. Heres my code:-
kindly tell me how to add "Weather Changed"
PHP код:
CMD:vweather(playerid, params[])
{
if(GetPVarInt(playerid, "DonateRank") >= 1)
{
new pos, level;
if(isnull(params)) return SendClientMessage(playerid, 0xFFFFFFFF, "USAGE: /vweahter [weather id]");
level = strval(params[pos]);
if(level < 1 || level > 44) return SendClientMessage(playerid, 0xAA3333AA, " Please enter number of weather [1-44]");
SetWeather(level);
return true;
}
return false;
}