07.11.2010, 14:38
Okay I have a weather timer here and it does not send the Message..
pawn Код:
forward Weather(playerid, reason);
public Weather(playerid, reason)
{
SetWeather(random(10));
switch(reason)
{
case 1:
{
SendClientMessage(playerid, COLOR_ORANGERED, "[WEATHER] Sunny with a chance of a slight breeze");
}
case 2:
{
SendClientMessage(playerid, COLOR_ORANGERED, "[WEATHER] Cloudy with alot of wind");
}
}
return 1;
}