ServerType18.pm.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:1k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. #########################################################################
  2. #  OpenKore - Network subsystem
  3. #  Copyright (c) 2006 OpenKore Team
  4. #
  5. #  This software is open source, licensed under the GNU General Public
  6. #  License, version 2.
  7. #  Basically, this means that you're allowed to modify and distribute
  8. #  this software. However, if you distribute modified versions, you MUST
  9. #  also distribute the source code.
  10. #  See http://www.gnu.org/licenses/gpl.html for the full license.
  11. #########################################################################
  12. # iRO (International) as of June 21 2007.
  13. # Servertype overview: http://www.openkore.com/wiki/index.php/ServerType
  14. package Network::Receive::ServerType18;
  15. use strict;
  16. use Network::Receive;
  17. use base qw(Network::Receive);
  18. use Log qw(message warning error debug);
  19. use AI;
  20. use Translation;
  21. use Globals;
  22. use I18N qw(bytesToString);
  23. use Utils qw(getHex swrite makeIP makeCoords);
  24.  
  25. sub new {
  26. my ($class) = @_;
  27. my $self = $class->SUPER::new;
  28. return $self;
  29. }
  30. 1;