Package l2p.status

Examples of l2p.status.GameStatusThread


    }
  }

  private void telnet_output(String _text, int type)
  {
    GameStatusThread tinstance = Status.telnetlist;
    while(tinstance != null)
    {
      if(type == TELL && tinstance.LogTell)
      {
        tinstance.write(_text);
      }
      else if(tinstance.LogChat)
      {
        tinstance.write(_text);
      }
      tinstance = tinstance.next;
    }
  }
View Full Code Here


    {
      _print.println("USAGE: tell Text");
    }
    else
    {
      GameStatusThread temp = Status.telnetlist;
      if(temp == null)
      {
        _print.println("telnetlist is null!");
      }
      else
      {
        do
        {
          temp.write("Telnet[" + _csocket.getInetAddress().getHostAddress() + "]: " + argv[1]);
        }
        while((temp = temp.next) != null);
      }
    }
  }
View Full Code Here

TOP

Related Classes of l2p.status.GameStatusThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.