Inheritance: IDisposable
Exemple #1
0
 public static UInt32 GetDifficulty(ClientlessBot.GameDifficulty difficulty)
 {
     switch(difficulty)
     {
         default:
         case ClientlessBot.GameDifficulty.NORMAL:
             return 0x0000;
         case ClientlessBot.GameDifficulty.NIGHTMARE:
             return 0x1000;
         case ClientlessBot.GameDifficulty.HELL:
             return 0x2000;
     }
 }
Exemple #2
0
 public GameServer(ClientlessBot cb)
     : base(cb)
 {
     m_pingThread = new Thread(PingThreadFunction);
 }
Exemple #3
0
 public Bncs(ClientlessBot cb) : base(cb)
 {
 }
Exemple #4
0
 public RealmServer(ClientlessBot cb)
     : base(cb)
 {
 }
Exemple #5
0
 public Bncs(ClientlessBot cb)
     : base(cb)
 {
 }
 public GameServer(ClientlessBot cb) : base(cb)
 {
     m_pingThread = new Thread(PingThreadFunction);
 }
Exemple #7
0
 public GenericServer(ClientlessBot cb)
 {
     m_owner = cb;
     m_socket = new TcpClient();
 }
 public GenericServer(ClientlessBot cb)
 {
     m_owner  = cb;
     m_socket = new TcpClient();
 }
 public RealmServer(ClientlessBot cb) : base(cb)
 {
 }