10.02.2018, 20:10
Hey, i need a command to set the time and also to change the weather.
Would be cool if anybody can give me that in a FS.
Would be cool if anybody can give me that in a FS.
SetWorldTime
SetWeather
CMD:changemyweather(playerid, params[])
{
new weather, string[128];
if(sscanf(params, "i", weather)) return SendClientMessage(playerid, 0xf8f8f8fff, "Syntax: {f00f00}/changemyweather <0 - 45>");
if(weather < 0 || weather > 45) return SendClientMessage(playerid, 0xf8f8f8fff, "ERROR: {FFFFFF}Invalid Weather! <0 - 45>");
SetPlayerWeather(playerid, weather);
format(string, sizeof(string), "{ff0ff0}Your Weather has changed to Weather %d!",weather);
SendClientMessage(playerid, 0xf8f8f8fff, string);
return 1;
}
CMD:changemytime(playerid, params[])
{
new timee, string[128];
if(sscanf(params, "i", timee)) return SendClientMessage(playerid, 0xf8f8f8fff, "Syntax: {f00f00}/changemytime <0 - 23>");
if(timee < 0 || timee > 23) return SendClientMessage(playerid, 0xf8f8f8fff, "ERROR: {FFFFFF}Invalid Time <0 - 23>.");
format(string, sizeof(string), "{ff0ff0}Your time has changed to %d!",timee);
SendClientMessage(playerid, 0xf8f8f8fff, string);
SetPlayerTime(playerid, timee, 0);
return 1;
}
CMD:changeweather(playerid, params[])
{
if(IsPlayerAdmin(playerid))
{
new weather, string[128];
if(sscanf(params, "i", weather)) return SendClientMessage(playerid, 0xf8f8f8fff, "Syntax: {f00f00}/changemyweather <0 - 45>");
if(weather < 0 || weather > 45) return SendClientMessage(playerid, 0xf8f8f8fff, "ERROR: {FFFFFF}Invalid Weather! <0 - 45>");
for(new i = 0; i <= MAX_PLAYERS; i++)
{
SetPlayerWeather(i,weather);
format(string, sizeof(string), "{} {f00f00}an admin has changed the weather to %d!",weather);
SendClientMessage(i, 0xf8f8f8fff, string);
}
}
else
{
SendClientMessage(playerid,0xf8f8f8fff,"ERROR: {f00f00}You are not allowed to use this command!");
}
return 1;
}
CMD:changetime(playerid, params[])
{
if(IsPlayerAdmin(playerid))
{
new time, string[128];
if(sscanf(params, "i", time)) return SendClientMessage(playerid, 0xf8f8f8fff, "Syntax: {f00f00}/changetime <0 - 23>");
if(time < 0 || time > 23) return SendClientMessage(playerid, 0xf8f8f8fff, "ERROR: {FFFFFF}Invalid time! <0 - 23>");
for(new i = 0; i <= MAX_PLAYERS; i++)
{
SetPlayerTime(i,time);
format(string, sizeof(string), "{} {f00f00}an admin has changed the time to %d!",time);
SendClientMessage(i, 0xf8f8f8fff, string);
}
}
else
{
SendClientMessage(playerid,0xf8f8f8fff,"ERROR: {f00f00}You are not allowed to use this command!");
}
return 1;
}