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

外挂编程

开发平台:

Windows_Unix

  1. #########################################################################
  2. #  OpenKore - X-Kore Mode 2
  3. #  Copyright (c) 2007 OpenKore developers
  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. ##
  13. # MODULE DESCRIPTION: Account server implementation.
  14. package Network::XKore2::AccountServer;
  15. use strict;
  16. use Globals;
  17. use Base::Ragnarok::AccountServer;
  18. use base qw(Base::Ragnarok::AccountServer);
  19. # Overrided method.
  20. sub login {
  21. my ($self, $session, $username, $password) = @_;
  22. if ($char) {
  23. $session->{accountID} = $char->{ID};
  24. $session->{sex} = $char->{sex};
  25. } else {
  26. $session->{accountID} = pack("V", 123456);
  27. $session->{sex} = 0;
  28. $session->{dummy} = 1;
  29. }
  30. if ($config{username} ne $username || $config{adminPassword} ne $password ){
  31. return Base::Ragnarok::AccountServer::PASSWORD_INCORRECT;
  32. }
  33. return Base::Ragnarok::AccountServer::LOGIN_SUCCESS;
  34. }
  35. 1;