Hey guys, I am wondering how to make guild war start at a certain time. like just the weekend or a few days a week. something like that.
I am guessing i would have to use something like this, But i am not sure where to put it :S if someone could advise me it would help alot thanks
Code:
if (DateTime.Now.DayOfWeek == DayOfWeek.Wednesday) // Day of the week
{
if (DateTime.Now.Hour == 14 && DateTime.Now.Minute >= 15 && !Features.GuildWars.War)
Features.GuildWars.StartWar();
}