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

外挂编程

开发平台:

Windows_Unix

  1. #########################################################################
  2. #  OpenKore - Packet sending
  3. #  This module contains functions for sending packets to the server.
  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. # Servertype overview: http://www.openkore.com/wiki/index.php/ServerType
  13. package Network::Send::ServerType3;
  14. use strict;
  15. use Globals qw($accountID $sessionID $sessionID2 $accountSex $char $charID %config %guild @chars $masterServer $syncSync $net);
  16. use Network::Send::ServerType0;
  17. use base qw(Network::Send::ServerType0);
  18. use Log qw(message warning error debug);
  19. use I18N qw(stringToBytes);
  20. use Utils qw(getTickCount getHex getCoordString);
  21. sub new {
  22. my ($class) = @_;
  23. return $class->SUPER::new(@_);
  24. }
  25. sub sendGetCharacterName {
  26. my ($self, $ID) = @_;
  27. my $msg = pack("C*", 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00) . $ID;
  28. $self->sendToServer($msg);
  29. debug "Sent get character name: ID - ".getHex($ID)."n", "sendPacket", 2;
  30. }
  31. sub sendAttack {
  32. my ($self, $monID, $flag) = @_;
  33. my $msg;
  34. $msg = pack("C*", 0x90, 0x01, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00) .
  35. $monID .
  36. pack("C*", 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, $flag);
  37.   $self->sendToServer($msg);
  38. debug "Sent attack: ".getHex($monID)."n", "sendPacket", 2;
  39. }
  40. sub sendChat {
  41. my ($self, $message) = @_;
  42. $message = "|00$message" if ($config{chatLangCode} && $config{chatLangCode} ne "none");
  43. my ($data, $charName); # Type: Bytes
  44. $message = stringToBytes($message); # Type: Bytes
  45. $charName = stringToBytes($char->{name});
  46. $data = pack("C*", 0xf3, 0x00) .
  47. pack("v*", length($charName) + length($message) + 8) .
  48. $charName . " : " . $message . chr(0);
  49. $self->sendToServer($data);
  50. }
  51. sub sendDrop {
  52. my ($self, $index, $amount) = @_;
  53. my $msg;
  54. $msg = pack("C*", 0x16, 0x01) .
  55. pack("C*", 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00) .
  56. pack("C*", 0xc7, 0x00, 0x98, 0xe5, 0x12) .
  57. pack("v*", $index) .
  58. pack("C*", 0x00) .
  59. pack("v*", $amount);
  60. $self->sendToServer($msg);
  61. debug "Sent drop: $index x $amountn", "sendPacket", 2;
  62. }
  63. sub sendGetPlayerInfo {
  64. my ($self, $ID) = @_;
  65. my $msg;
  66. $msg = pack("C*", 0x8c, 0x00, 0x12, 0x00) . $ID;
  67. $self->sendToServer($msg);
  68. debug "Sent get player info: ID - ".getHex($ID)."n", "sendPacket", 2;
  69. }
  70. sub sendItemUse {
  71. my ($self, $ID, $targetID) = @_;
  72. my $msg;
  73. $msg = pack("C*", 0x9f, 0x00, 0x12, 0x00, 0x00) .
  74. pack("v*", $ID) .
  75. pack("C*", 0x20, 0x60, 0xfb, 0x12, 0x00, 0x1c) .
  76. $targetID;
  77. $self->sendToServer($msg);
  78. debug "Item Use: $IDn", "sendPacket", 2;
  79. }
  80. sub sendLook {
  81. my ($self, $body, $head) = @_;
  82. my $msg;
  83. $msg = pack("C*", 0x85, 0x00, 0xff, 0xff, 0x9c, 0xfb, 0x12, 0x00, 0xc1, 0x12, 0x60, 0x00) .
  84. pack("C*", $head, 0x00, 0x72, 0x21, 0x3d, 0x33, 0x52, 0x00, 0x00, 0x00) .
  85. pack("C*", $body);
  86. $self->sendToServer($msg);
  87. debug "Sent look: $body $headn", "sendPacket", 2;
  88. $char->{look}{head} = $head;
  89. $char->{look}{body} = $body;
  90. }
  91. sub sendMapLogin {
  92. my ($self, $accountID, $charID, $sessionID, $sex) = @_;
  93. my $msg;
  94. $sex = 0 if ($sex > 1 || $sex < 0); # Sex can only be 0 (female) or 1 (male)
  95. $msg = pack("C*", 0x9b, 0, 0) .
  96. $accountID .
  97. pack("C*", 0, 0, 0, 0, 0) .
  98. $charID .
  99. pack("C*", 0x50, 0x92, 0x61, 0x00) . #not sure what this is yet (maybe $key?)
  100. pack("C*", 0xff, 0xff, 0xff) .
  101. $sessionID .
  102. pack("V", getTickCount()) .
  103. pack("C*", $sex);
  104. $self->sendToServer($msg);
  105. }
  106. sub sendMove {
  107. my $self = shift;
  108. my $x = int scalar shift;
  109. my $y = int scalar shift;
  110. my $msg;
  111. $msg = pack("C*", 0xA7, 0x00, 0x60, 0x00, 0x00, 0x00) .
  112. pack("C*", 0xC7, 0x00, 0x00, 0x00) .
  113. getCoordString($x, $y);
  114. $self->sendToServer($msg);
  115. debug "Sent move to: $x, $yn", "sendPacket", 2;
  116. }
  117. sub sendSit {
  118. my $self = shift;
  119. my $msg;
  120. $msg = pack("C*", 0x90, 0x01, 0x00, 0x00, 0x00, 0x00 ,0x00 ,0x00,
  121.    0x00, 0x00, 0x00, 0x00, 0x00, 0x00 ,0x00 ,0x00,
  122. 0x00, 0x00, 0x00, 0x02);
  123. $self->sendToServer($msg);
  124. debug "Sittingn", "sendPacket", 2;
  125. }
  126. sub sendSkillUse {
  127. my ($self, $ID, $lv, $targetID) = @_;
  128. my $msg;
  129. $msg = pack("C*", 0x72, 0x00, 0x83, 0x7C, 0xD8, 0xFE, 0x80, 0x7C) .
  130. pack("v*", $lv) .
  131. pack("C*", 0xFF, 0xFF, 0xCF, 0xFE, 0x80, 0x7C) .
  132. pack("v*", $ID) .
  133. pack("C*", 0x6A, 0x0F, 0x00, 0x00) .
  134. $targetID;
  135. $self->sendToServer($msg);
  136. debug "Skill Use: $IDn", "sendPacket", 2;
  137. }
  138. sub sendSkillUseLoc {
  139. my ($self, $ID, $lv, $x, $y) = @_;
  140. my $msg;
  141. $msg = pack("C*", 0x13, 0x01, 0xbe, 0x44, 0x00, 0x00, 0xa0, 0xc0, 0x00, 0x00) .
  142. pack("v*", $lv) .
  143. pack("C*", 0x00, 0x00, 0xa0, 0x40, 0x00, 0x00) .
  144. pack("v*", $ID) .
  145. pack("C*", 0x00, 0x00) .
  146. pack("v*", $x) .
  147. pack("C*", 0x00, 0x00, 0xa0, 0x40, 0xe0, 0x80, 0x09, 0xc2) .
  148. pack("v*", $y);
  149. $self->sendToServer($msg);
  150. debug "Skill Use on Location: $ID, ($x, $y)n", "sendPacket", 2;
  151. }
  152. sub sendStorageAdd {
  153. my ($self, $index, $amount) = @_;
  154. my $msg;
  155. $msg = pack("C*", 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 ,0x00 ,0x00) .
  156. pack("v*", $index) .
  157. pack("C*", 0x00, 0x00, 0x00, 0x00) .
  158. pack("V*", $amount);
  159. $self->sendToServer($msg);
  160. debug "Sent Storage Add: $index x $amountn", "sendPacket", 2;
  161. }
  162. sub sendStorageGet {
  163. my ($self, $index, $amount) = @_;
  164. my $msg;
  165. $msg = pack("C*", 0xf7, 0x00, 0x00, 0x00) .
  166. pack("V*", getTickCount()) .
  167. pack("C*", 0x00, 0x00, 0x00) .
  168. pack("v*", $index) .
  169. pack("C*", 0x00, 0x00, 0x00, 0x00) .
  170. pack("V*", $amount);
  171. $self->sendToServer($msg);
  172. debug "Sent Storage Get: $index x $amountn", "sendPacket", 2;
  173. }
  174. sub sendStand {
  175. my $self = shift;
  176. my $msg;
  177. $msg = pack("C*", 0x90, 0x01, 0x00, 0x00, 0x00, 0x00 ,0x00 ,0x00,
  178. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  179. 0x00, 0x00, 0x00, 0x03);
  180. $self->sendToServer($msg);
  181. debug "Standingn", "sendPacket", 2;
  182. }
  183. sub sendSync {
  184. my ($self, $initialSync) = @_;
  185. my $msg;
  186. # XKore mode 1 lets the client take care of syncing.
  187. return if ($self->{net}->version == 1);
  188. $syncSync = pack("V", getTickCount());
  189. $msg = pack("C*", 0x89, 0x00);
  190. $msg .= pack("C*", 0x30, 0x00, 0x40) if ($initialSync);
  191. $msg .= pack("C*", 0x00, 0x00, 0x1F) if (!$initialSync);
  192. $msg .= $syncSync;
  193. $self->sendToServer($msg);
  194. debug "Sent Syncn", "sendPacket", 2;
  195. }
  196. sub sendTake {
  197. my ($self, $itemID) = @_;
  198. my $msg;
  199. $msg = pack("C*", 0xf5, 0x00, 0x00, 0x00, 0xb8) . $itemID;
  200. $self->sendToServer($msg);
  201. debug "Sent taken", "sendPacket", 2;
  202. }
  203. 1;