05.06.2013, 21:13
i have set my server weather to 0 and other numbers and when i try to change the time the server time dose not change help me lol
CMD:weather(playerid, params[])
{
new amount;
if(sscanf(params, "i", amount)) return SendClientMessage(playerid, 0xFFFFFFFF, "USAGE: /weather [weatherid]");
for(new i=0; i<MAX_PLAYERS; i++);
{
if(IsPlayerConnected(i))
{
SetWeather(amount);
serverweather = amount;
}
}
return 1;
}
CMD:setallweather(playerid,params[]) { if(PlayerInfo[playerid][Level] >= 3) { if(isnull(params)) return SendClientMessage(playerid, red, "USAGE: /setallweather [weather ID]"); new var = strval(params), string[128]; CMDMessageToAdmins(playerid,"SETALLWEATHER"); for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { PlayerPlaySound(i,1057,0.0,0.0,0.0); SetPlayerWeather(i, var); } } format(string,sizeof(string),"Administrator \"%s\" has set all players weather to '%d'", pName(playerid), var ); return SendClientMessageToAll(blue, string); } else return SendClientMessage(playerid,red,"ERROR: You are not a high enough level to use this command"); } CMD:setalltime(playerid,params[]) { if(PlayerInfo[playerid][Level] >= 3) { if(isnull(params)) return SendClientMessage(playerid, red, "USAGE: /setalltime [hour]"); new var = strval(params), string[128]; if(var > 24) return SendClientMessage(playerid, red, "ERROR: Invalid hour"); CMDMessageToAdmins(playerid,"SETALLTIME"); for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { PlayerPlaySound(i,1057,0.0,0.0,0.0); SetPlayerTime(i, var, 0); } } format(string,sizeof(string),"Administrator \"%s\" has set all players time to '%d:00'", pName(playerid), var ); return SendClientMessageToAll(blue, string); } else return SendClientMessage(playerid,red,"ERROR: You are not a high enough level to use this command"); }
PHP код:
|