Inheritance: IDisposable
Esempio n. 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;
     }
 }
Esempio n. 2
0
 public GameServer(ClientlessBot cb)
     : base(cb)
 {
     m_pingThread = new Thread(PingThreadFunction);
 }
Esempio n. 3
0
 public Bncs(ClientlessBot cb) : base(cb)
 {
 }
Esempio n. 4
0
 public RealmServer(ClientlessBot cb)
     : base(cb)
 {
 }
Esempio n. 5
0
 public Bncs(ClientlessBot cb)
     : base(cb)
 {
 }
Esempio n. 6
0
 public GameServer(ClientlessBot cb) : base(cb)
 {
     m_pingThread = new Thread(PingThreadFunction);
 }
Esempio n. 7
0
 public GenericServer(ClientlessBot cb)
 {
     m_owner = cb;
     m_socket = new TcpClient();
 }
Esempio n. 8
0
 public GenericServer(ClientlessBot cb)
 {
     m_owner  = cb;
     m_socket = new TcpClient();
 }
Esempio n. 9
0
 public RealmServer(ClientlessBot cb) : base(cb)
 {
 }