How to make PKTournament Auto Start

05/10/2011 02:22 alaa22#1
I need Help

How to make PKTournament and SteedRace and GuildWar and DeathTeamMatch Auto Start


Thanks
05/10/2011 04:16 xElement#2
Make a new class in Features named PKTourneyTimer

Next add something like this:
Code:
 public static void PKTTimer()
        {
            if (DateTime.Now.Minute == 30 && DateTime.Now.Second == 01)
            {
                if (NewestCOServer.Features.PKTournament.Stage == NewestCOServer.Features.PKTournamentStage.None)
                {
                    NewestCOServer.Features.PKTournament.StartTournament();
                }
            }
        }
Next search for:
Code:
try
            {
                Features.Guild.GuildWarTimer();
            }
            catch { }
Under add:
Code:
 try
            {
                Features.PKTourneyTimer.PKTTimer();
            }
            catch { }
05/11/2011 12:24 alaa22#3

I can't find it

Code:
try
            {
                Features.Guild.GuildWarTimer();
            }
Please can you give me source with this feature , please