Independant day / night setting for each playerSolved

Some of the members of my build server have requested a plugin they have seen,

sadly they have no idea what it is called or if its free, paid or private.

Basically users have seen and want the ability to change the day / night themselves independantly of other players.

Anyone know of a like mod?

 

Many thanks for any suggestions

search with google: Preferred Environment ;) paid plugin

cheers buddy

Tanki

search with google: Preferred Environment ;) paid plugin

did that found it straight away  ( it was the name needed to find it lol )

works exactly as i wanted, many thanks

private void changeTime(BasePlayer player, int n)
{
bool wasAdmin = player.IsAdmin;
player.SetPlayerFlag(BasePlayer.PlayerFlags.IsAdmin, true);
player.SendNetworkUpdateImmediate();
player.SendConsoleCommand($"admintime {n}");

if (!wasAdmin)
{
player.SetPlayerFlag(BasePlayer.PlayerFlags.IsAdmin, false);
player.SendNetworkUpdateImmediate();
}
}

Locked automatically