heres the command to start and stop gw
Code:
if (Splitter[0] == "/gwstart")
{
World.GWOn = true;
World.SendMsgToAll(MyChar.Name + "has started GuildWar!", "SYSTEM", 2011);
World.SendMsgToAll(MyChar.Name + "has started GuildWar!", "SYSTEM", 2000);
}
if (Splitter[0] == "/gwstop")
{
World.GWOn = false;
World.SendMsgToAll(MyChar.Name + " has ended Guild War.", "SYSTEM", 2011);
World.SendMsgToAll(MyChar.Name + " has ended Guild War.", "SYSTEM", 2000);
}
then in world.cs add this under
Code:
public static bool GWOn = false;
code should work as long as the timers are already in any problems post them here