Advertisement
Guest User

Untitled

a guest
Jun 9th, 2013
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 35.67 KB | None | 0 0
  1. // Client<->Map Packet Database
  2. //
  3. // Structure of Database:
  4. // PacketType,PacketLength[,Name,FieldIndex1:FieldIndex2:FieldIndex3:...]
  5. //
  6. // 01. PacketType       ID of the packet.
  7. // 02. PacketLength     Length of the packet. If 0, packet is disabled in current packet version. If -1, packet has variable size.
  8. // 03. Name             Name of the packet parser function (optional, for incoming packets only).
  9. // 04. FieldIndex       Specifies the offset of a packet field in bytes from the begin of the packet (only specified when Name is given).
  10. //                      Can be 0, when the layout is not known.
  11. // ...
  12. //
  13. // NOTE: Up to MAX_PACKET_POS (typically 20) field indexes may be used.
  14. //
  15. // The packet database allows you to add support for new clients,
  16. // because packets change every release.
  17. //
  18. // Note: Every packet version needs a wanttoconnection specification, since
  19. // that is the packet used to identify a client's version.
  20. // If multiple versions have the same connection packet, the higher version
  21. // will be used (unless the lower one is specified as the default)
  22. //
  23. // Incoming packets have their parser function and layout specified, which enables
  24. // them for the current and all higher versions, unless explicitely disabled.
  25. //
  26. // Outgoing packets must be specified in order to enable them for the current
  27. // and all higher versions, unless explicitely disabled. Packets that are not
  28. // enabled for a packet version are silently discarded when sent as multicast.
  29. //
  30. // Every packet version inherits packet definitions from the previous (lower)
  31. // packet version.
  32. //
  33. // Main packet version of the DB to use (default = max available version)
  34. // Client detection is faster when all clients use this version.
  35. // Version 23 is the latest Sakexe (above versions are for Renewal clients)
  36. //packet_db_ver: 25
  37. packet_db_ver: 30
  38.  
  39. packet_ver: 5
  40. 0x0064,55
  41. 0x0065,17
  42. 0x0066,6
  43. 0x0067,37
  44. 0x0068,46
  45. 0x0069,-1
  46. 0x006a,23
  47. 0x006b,-1
  48. 0x006c,3
  49. 0x006d,108
  50. 0x006e,3
  51. 0x006f,2
  52. 0x0070,6
  53. 0x0071,28
  54. 0x0072,19,wanttoconnection,2:6:10:14:18
  55. 0x0073,11
  56. 0x0074,3
  57. 0x0075,-1
  58. 0x0076,9
  59. 0x0077,5
  60. 0x0078,54
  61. 0x0079,53
  62. 0x007a,58
  63. 0x007b,60
  64. 0x007c,41
  65. 0x007d,2,loadendack,0
  66. 0x007e,6,ticksend,2
  67. 0x007f,6
  68. 0x0080,7
  69. 0x0081,3
  70. 0x0082,2
  71. 0x0083,2
  72. 0x0084,2
  73. 0x0085,5,walktoxy,2
  74. 0x0086,16
  75. 0x0087,12
  76. 0x0088,10
  77. 0x0089,7,actionrequest,2:6
  78. 0x008a,29
  79. 0x008b,2
  80. 0x008c,-1,globalmessage,2:4
  81. 0x008d,-1
  82. 0x008e,-1
  83. //0x008f,-1
  84. 0x0090,7,npcclicked,2
  85. 0x0091,22
  86. 0x0092,28
  87. 0x0093,2
  88. 0x0094,6,getcharnamerequest,2
  89. 0x0095,30
  90. 0x0096,-1,wis,2:4:28
  91. 0x0097,-1
  92. 0x0098,3
  93. 0x0099,-1,broadcast,2:4
  94. 0x009a,-1
  95. 0x009b,5,changedir,2:4
  96. 0x009c,9
  97. 0x009d,17
  98. 0x009e,17
  99. 0x009f,6,takeitem,2
  100. 0x00a0,23
  101. 0x00a1,6
  102. 0x00a2,6,dropitem,2:4
  103. 0x00a3,-1
  104. 0x00a4,-1
  105. 0x00a5,-1
  106. 0x00a6,-1
  107. 0x00a7,8,useitem,2:4
  108. 0x00a8,7
  109. 0x00a9,6,equipitem,2:4
  110. 0x00aa,7
  111. 0x00ab,4,unequipitem,2
  112. 0x00ac,7
  113. //0x00ad,-1
  114. 0x00ae,-1
  115. 0x00af,6
  116. 0x00b0,8
  117. 0x00b1,8
  118. 0x00b2,3,restart,2
  119. 0x00b3,3
  120. 0x00b4,-1
  121. 0x00b5,6
  122. 0x00b6,6
  123. 0x00b7,-1
  124. 0x00b8,7,npcselectmenu,2:6
  125. 0x00b9,6,npcnextclicked,2
  126. 0x00ba,2
  127. 0x00bb,5,statusup,2:4
  128. 0x00bc,6
  129. 0x00bd,44
  130. 0x00be,5
  131. 0x00bf,3,emotion,2
  132. 0x00c0,7
  133. 0x00c1,2,howmanyconnections,0
  134. 0x00c2,6
  135. 0x00c3,8
  136. 0x00c4,6
  137. 0x00c5,7,npcbuysellselected,2:6
  138. 0x00c6,-1
  139. 0x00c7,-1
  140. 0x00c8,-1,npcbuylistsend,2:4
  141. 0x00c9,-1,npcselllistsend,2:4
  142. 0x00ca,3
  143. 0x00cb,3
  144. 0x00cc,6,gmkick,2
  145. 0x00cd,3
  146. 0x00ce,2,killall,0
  147. 0x00cf,27,wisexin,2:26
  148. 0x00d0,3,wisall,2
  149. 0x00d1,4
  150. 0x00d2,4
  151. 0x00d3,2,wisexlist,0
  152. 0x00d4,-1
  153. 0x00d5,-1,createchatroom,2:4:6:7:15
  154. 0x00d6,3
  155. 0x00d7,-1
  156. 0x00d8,6
  157. 0x00d9,14,chataddmember,2:6
  158. 0x00da,3
  159. 0x00db,-1
  160. 0x00dc,28
  161. 0x00dd,29
  162. 0x00de,-1,chatroomstatuschange,2:4:6:7:15
  163. 0x00df,-1
  164. 0x00e0,30,changechatowner,2:6
  165. 0x00e1,30
  166. 0x00e2,26,kickfromchat,2
  167. 0x00e3,2,chatleave,0
  168. 0x00e4,6,traderequest,2
  169. 0x00e5,26
  170. 0x00e6,3,tradeack,2
  171. 0x00e7,3
  172. 0x00e8,8,tradeadditem,2:4
  173. 0x00e9,19
  174. 0x00ea,5
  175. 0x00eb,2,tradeok,0
  176. 0x00ec,3
  177. 0x00ed,2,tradecancel,0
  178. 0x00ee,2
  179. 0x00ef,2,tradecommit,0
  180. 0x00f0,3
  181. 0x00f1,2
  182. 0x00f2,6
  183. 0x00f3,8,movetokafra,2:4
  184. 0x00f4,21
  185. 0x00f5,8,movefromkafra,2:4
  186. 0x00f6,8
  187. 0x00f7,2,closekafra,0
  188. 0x00f8,2
  189. 0x00f9,26,createparty,2
  190. 0x00fa,3
  191. 0x00fb,-1
  192. 0x00fc,6,partyinvite,2
  193. 0x00fd,27
  194. 0x00fe,30
  195. 0x00ff,10,replypartyinvite,2:6
  196. 0x0100,2,leaveparty,0
  197. 0x0101,6
  198. 0x0102,6,partychangeoption,2
  199. 0x0103,30,removepartymember,2:6
  200. 0x0104,79
  201. 0x0105,31
  202. 0x0106,10
  203. 0x0107,10
  204. 0x0108,-1,partymessage,2:4
  205. 0x0109,-1
  206. 0x010a,4
  207. 0x010b,6
  208. 0x010c,6
  209. 0x010d,2
  210. 0x010e,11
  211. 0x010f,-1
  212. 0x0110,10
  213. 0x0111,39
  214. 0x0112,4,skillup,2
  215. 0x0113,10,useskilltoid,2:4:6
  216. 0x0114,31
  217. 0x0115,35
  218. 0x0116,10,useskilltopos,2:4:6:8
  219. 0x0117,18
  220. 0x0118,2,stopattack,0
  221. 0x0119,13
  222. 0x011a,15
  223. 0x011b,20,useskillmap,2:4
  224. 0x011c,68
  225. 0x011d,2,requestmemo,0
  226. 0x011e,3
  227. 0x011f,16
  228. 0x0120,6
  229. 0x0121,14
  230. 0x0122,-1
  231. 0x0123,-1
  232. 0x0124,21
  233. 0x0125,8
  234. 0x0126,8,putitemtocart,2:4
  235. 0x0127,8,getitemfromcart,2:4
  236. 0x0128,8,movefromkafratocart,2:4
  237. 0x0129,8,movetokafrafromcart,2:4
  238. 0x012a,2,removeoption,0
  239. 0x012b,2
  240. 0x012c,3
  241. 0x012d,4
  242. 0x012e,2,closevending,0
  243. 0x012f,-1
  244. 0x0130,6,vendinglistreq,2
  245. 0x0131,86
  246. 0x0132,6
  247. 0x0133,-1
  248. 0x0134,-1,purchasereq,2:4:8
  249. 0x0135,7
  250. 0x0136,-1
  251. 0x0137,6
  252. 0x0138,3
  253. 0x0139,16
  254. 0x013a,4
  255. 0x013b,4
  256. 0x013c,4
  257. 0x013d,6
  258. 0x013e,24
  259. 0x013f,26,itemmonster,2
  260. 0x0140,22,mapmove,2:18:20
  261. 0x0141,14
  262. 0x0142,6
  263. 0x0143,10,npcamountinput,2:6
  264. 0x0144,23
  265. 0x0145,19
  266. 0x0146,6,npccloseclicked,2
  267. 0x0147,39
  268. 0x0148,8
  269. 0x0149,9,gmreqnochat,2:6:7
  270. 0x014a,6
  271. 0x014b,27
  272. 0x014c,-1
  273. 0x014d,2,guildcheckmaster,0
  274. 0x014e,6
  275. 0x014f,6,guildrequestinfo,2
  276. 0x0150,110
  277. 0x0151,6,guildrequestemblem,2
  278. 0x0152,-1
  279. 0x0153,-1,guildchangeemblem,2:4
  280. 0x0154,-1
  281. 0x0155,-1,guildchangememberposition,2
  282. 0x0156,-1
  283. 0x0157,6
  284. 0x0158,-1
  285. 0x0159,54,guildleave,2:6:10:14
  286. 0x015a,66
  287. 0x015b,54,guildexpulsion,2:6:10:14
  288. 0x015c,90
  289. 0x015d,42,guildbreak,2
  290. 0x015e,6
  291. 0x015f,42
  292. 0x0160,-1
  293. 0x0161,-1,guildchangepositioninfo,2
  294. 0x0162,-1
  295. 0x0163,-1
  296. 0x0164,-1
  297. 0x0165,30,createguild,6
  298. 0x0166,-1
  299. 0x0167,3
  300. 0x0168,14,guildinvite,2
  301. 0x0169,3
  302. 0x016a,30
  303. 0x016b,10,guildreplyinvite,2:6
  304. 0x016c,43
  305. 0x016d,14
  306. 0x016e,186,guildchangenotice,2:6:66
  307. 0x016f,182
  308. 0x0170,14,guildrequestalliance,2
  309. 0x0171,30
  310. 0x0172,10,guildreplyalliance,2:6
  311. 0x0173,3
  312. 0x0174,-1
  313. 0x0175,6
  314. 0x0176,106
  315. 0x0177,-1
  316. 0x0178,4,itemidentify,2
  317. 0x0179,5
  318. 0x017a,4,usecard,2
  319. 0x017b,-1
  320. 0x017c,6,insertcard,2:4
  321. 0x017d,7
  322. 0x017e,-1,guildmessage,2:4
  323. 0x017f,-1
  324. 0x0180,6,guildopposition,2
  325. 0x0181,3
  326. 0x0182,106
  327. 0x0183,10,guilddelalliance,2:6
  328. 0x0184,10
  329. 0x0185,34
  330. //0x0186,-1
  331. 0x0187,6
  332. 0x0188,8
  333. 0x0189,4
  334. 0x018a,4,quitgame,0
  335. 0x018b,4
  336. 0x018c,29
  337. 0x018d,-1
  338. 0x018e,10,producemix,2:4:6:8
  339. 0x018f,6
  340. 0x0190,90,useskilltoposinfo,2:4:6:8:10
  341. 0x0191,86
  342. 0x0192,24
  343. 0x0193,6,solvecharname,2
  344. 0x0194,30
  345. 0x0195,102
  346. 0x0196,9
  347. 0x0197,4,resetchar,2
  348. 0x0198,8,changemaptype,2:4:6
  349. 0x0199,4
  350. 0x019a,14
  351. 0x019b,10
  352. 0x019c,-1,localbroadcast,2:4
  353. 0x019d,6,gmhide,0
  354. 0x019e,2
  355. 0x019f,6,catchpet,2
  356. 0x01a0,3
  357. 0x01a1,3,petmenu,2
  358. 0x01a2,35
  359. 0x01a3,5
  360. 0x01a4,11
  361. 0x01a5,26,changepetname,2
  362. 0x01a6,-1
  363. 0x01a7,4,selectegg,2
  364. 0x01a8,4
  365. 0x01a9,6,sendemotion,2
  366. 0x01aa,10
  367. 0x01ab,12
  368. 0x01ac,6
  369. 0x01ad,-1
  370. 0x01ae,4,selectarrow,2
  371. 0x01af,4,changecart,2
  372. 0x01b0,11
  373. 0x01b1,7
  374. 0x01b2,-1,openvending,2:4:84:85
  375. 0x01b3,67
  376. 0x01b4,12
  377. 0x01b5,18
  378. 0x01b6,114
  379. 0x01b7,6
  380. 0x01b8,3
  381. 0x01b9,6
  382. 0x01ba,26,remove,2
  383. 0x01bb,26,shift,2
  384. 0x01bc,26,recall,2
  385. 0x01bd,26,summon,2
  386. 0x01be,2
  387. 0x01bf,3
  388. 0x01c0,2
  389. 0x01c1,14
  390. 0x01c2,10
  391. 0x01c3,-1
  392. 0x01c4,22
  393. 0x01c5,22
  394. 0x01c6,4
  395. 0x01c7,2
  396. 0x01c8,13
  397. 0x01c9,97
  398. //0x01ca,-1
  399. 0x01cb,9
  400. 0x01cc,9
  401. 0x01cd,30
  402. 0x01ce,6,autospell,2
  403. 0x01cf,28
  404. 0x01d0,8
  405. 0x01d1,14
  406. 0x01d2,10
  407. 0x01d3,35
  408. 0x01d4,6
  409. 0x01d5,-1,npcstringinput,2:4:8
  410. 0x01d6,4
  411. 0x01d7,11
  412. 0x01d8,54
  413. 0x01d9,53
  414. 0x01da,60
  415. 0x01db,2
  416. 0x01dc,-1
  417. 0x01dd,47
  418. 0x01de,33
  419. 0x01df,6,gmreqaccname,2
  420. 0x01e0,30
  421. 0x01e1,8
  422. 0x01e2,34
  423. 0x01e3,14
  424. 0x01e4,2
  425. 0x01e5,6
  426. 0x01e6,26
  427. 0x01e7,2,sndoridori,0
  428. 0x01e8,28,createparty2,2
  429. 0x01e9,81
  430. 0x01ea,6
  431. 0x01eb,10
  432. 0x01ec,26
  433. 0x01ed,2,snexplosionspirits,0
  434. 0x01ee,-1
  435. 0x01ef,-1
  436. 0x01f0,-1
  437. 0x01f1,-1
  438. 0x01f2,20
  439. 0x01f3,10
  440. 0x01f4,32
  441. 0x01f5,9
  442. 0x01f6,34
  443. 0x01f7,14,adoptreply,0
  444. 0x01f8,2
  445. 0x01f9,6,adoptrequest,0
  446. 0x01fa,48
  447. 0x01fb,56
  448. 0x01fc,-1
  449. 0x01fd,4,repairitem,2
  450. 0x01fe,5
  451. 0x01ff,10
  452. 0x0200,26
  453. 0x0201,-1
  454. 0x0202,26,friendslistadd,2
  455. 0x0203,10,friendslistremove,2:6
  456. 0x0204,18
  457. 0x0205,26
  458. 0x0206,11
  459. 0x0207,34
  460. 0x0208,11,friendslistreply,2:6:10
  461. 0x0209,36
  462. 0x020a,10
  463. //0x020b,-1
  464. //0x020c,-1
  465. 0x020d,-1
  466.  
  467. //2004-07-05aSakexe
  468. packet_ver: 6
  469. 0x0072,22,wanttoconnection,5:9:13:17:21
  470. 0x0085,8,walktoxy,5
  471. 0x00a7,13,useitem,5:9
  472. 0x0113,15,useskilltoid,4:9:11
  473. 0x0116,15,useskilltopos,4:9:11:13
  474. 0x0190,95,useskilltoposinfo,4:9:11:13:15
  475. 0x0208,14,friendslistreply,2:6:10
  476. 0x020e,24
  477.  
  478. //2004-07-13aSakexe
  479. packet_ver: 7
  480. 0x0072,39,wanttoconnection,12:22:30:34:38
  481. 0x0085,9,walktoxy,6
  482. 0x009b,13,changedir,5:12
  483. 0x009f,10,takeitem,6
  484. 0x00a7,17,useitem,6:13
  485. 0x0113,19,useskilltoid,7:9:15
  486. 0x0116,19,useskilltopos,7:9:15:17
  487. 0x0190,99,useskilltoposinfo,7:9:15:17:19
  488.  
  489. //2004-07-26aSakexe
  490. packet_ver: 8
  491. 0x0072,14,dropitem,5:12
  492. 0x007e,33,wanttoconnection,12:18:24:28:32
  493. 0x0085,20,useskilltoid,7:12:16
  494. 0x0089,15,getcharnamerequest,11
  495. 0x008c,23,useskilltopos,3:6:17:21
  496. 0x0094,10,takeitem,6
  497. 0x009b,6,walktoxy,3
  498. 0x009f,13,changedir,5:12
  499. 0x00a2,103,useskilltoposinfo,3:6:17:21:23
  500. 0x00a7,12,solvecharname,8
  501. 0x00f3,-1,globalmessage,2:4
  502. 0x00f5,17,useitem,6:12
  503. 0x00f7,10,ticksend,6
  504. 0x0113,16,movetokafra,5:12
  505. 0x0116,2,closekafra,0
  506. 0x0190,26,movefromkafra,10:22
  507. 0x0193,9,actionrequest,3:8
  508.  
  509. //2004-08-09aSakexe
  510. packet_ver: 9
  511. 0x0072,17,dropitem,8:15
  512. 0x007e,37,wanttoconnection,9:21:28:32:36
  513. 0x0085,26,useskilltoid,11:18:22
  514. 0x0089,12,getcharnamerequest,8
  515. 0x008c,40,useskilltopos,5:15:29:38
  516. 0x0094,13,takeitem,9
  517. 0x009b,15,walktoxy,12
  518. 0x009f,12,changedir,7:11
  519. 0x00a2,120,useskilltoposinfo,5:15:29:38:40
  520. 0x00a7,11,solvecharname,7
  521. 0x00f5,24,useitem,9:20
  522. 0x00f7,13,ticksend,9
  523. 0x0113,23,movetokafra,5:19
  524. 0x0190,26,movefromkafra,11:22
  525. 0x0193,18,actionrequest,7:17
  526.  
  527. //2004-08-16aSakexe
  528. 0x0212,26,rc,2
  529. 0x0213,26,check,2
  530. 0x0214,42
  531.  
  532. //2004-08-17aSakexe
  533. 0x020f,10,pvpinfo,2:6
  534. 0x0210,22
  535.  
  536. //2004-09-06aSakexe
  537. packet_ver: 10
  538. 0x0072,20,useitem,9:20
  539. 0x007e,19,movetokafra,3:15
  540. 0x0085,23,actionrequest,9:22
  541. 0x0089,9,walktoxy,6
  542. 0x008c,105,useskilltoposinfo,10:14:18:23:25
  543. 0x0094,17,dropitem,6:15
  544. 0x009b,14,getcharnamerequest,10
  545. 0x009f,-1,globalmessage,2:4
  546. 0x00a2,14,solvecharname,10
  547. 0x00a7,25,useskilltopos,10:14:18:23
  548. 0x00f3,10,changedir,4:9
  549. 0x00f5,34,wanttoconnection,7:15:25:29:33
  550. 0x00f7,2,closekafra,0
  551. 0x0113,11,takeitem,7
  552. 0x0116,11,ticksend,7
  553. 0x0190,22,useskilltoid,9:15:18
  554. 0x0193,17,movefromkafra,3:13
  555.  
  556. //2004-09-20aSakexe
  557. packet_ver: 11
  558. 0x0072,18,useitem,10:14
  559. 0x007e,25,movetokafra,6:21
  560. 0x0085,9,actionrequest,3:8
  561. 0x0089,14,walktoxy,11
  562. 0x008c,109,useskilltoposinfo,16:20:23:27:29
  563. 0x0094,19,dropitem,12:17
  564. 0x009b,10,getcharnamerequest,6
  565. 0x00a2,10,solvecharname,6
  566. 0x00a7,29,useskilltopos,6:20:23:27
  567. 0x00f3,18,changedir,8:17
  568. 0x00f5,32,wanttoconnection,10:17:23:27:31
  569. 0x0113,14,takeitem,10
  570. 0x0116,14,ticksend,10
  571. 0x0190,14,useskilltoid,4:7:10
  572. 0x0193,12,movefromkafra,4:8
  573.  
  574. //2004-10-05aSakexe
  575. packet_ver: 12
  576. 0x0072,17,useitem,6:13
  577. 0x007e,16,movetokafra,5:12
  578. 0x0089,6,walktoxy,3
  579. 0x008c,103,useskilltoposinfo,2:6:17:21:23
  580. 0x0094,14,dropitem,5:12
  581. 0x009b,15,getcharnamerequest,11
  582. 0x00a2,12,solvecharname,8
  583. 0x00a7,23,useskilltopos,3:6:17:21
  584. 0x00f3,13,changedir,5:12
  585. 0x00f5,33,wanttoconnection,12:18:24:28:32
  586. 0x0113,10,takeitem,6
  587. 0x0116,10,ticksend,6
  588. 0x0190,20,useskilltoid,7:12:16
  589. 0x0193,26,movefromkafra,10:22
  590.  
  591. //2004-10-25aSakexe
  592. packet_ver: 13
  593. 0x0072,13,useitem,5:9
  594. 0x007e,13,movetokafra,6:9
  595. 0x0085,15,actionrequest,4:14
  596. 0x008c,108,useskilltoposinfo,6:9:23:26:28
  597. 0x0094,12,dropitem,6:10
  598. 0x009b,10,getcharnamerequest,6
  599. 0x00a2,16,solvecharname,12
  600. 0x00a7,28,useskilltopos,6:9:23:26
  601. 0x00f3,15,changedir,6:14
  602. 0x00f5,29,wanttoconnection,5:14:20:24:28
  603. 0x0113,9,takeitem,5
  604. 0x0116,9,ticksend,5
  605. 0x0190,26,useskilltoid,4:10:22
  606. 0x0193,22,movefromkafra,12:18
  607.  
  608. //2004-11-01aSakexe
  609. 0x0084,-1
  610. 0x0215,6
  611.  
  612. //2004-11-08aSakexe
  613. 0x0084,2
  614. 0x0216,6
  615. 0x0217,2,blacksmith,0
  616. 0x0218,2,alchemist,0
  617. 0x0219,282
  618. 0x021a,282
  619. 0x021b,10
  620. 0x021c,10
  621.  
  622. //2004-11-15aSakexe
  623. 0x021d,6,lesseffect,2
  624.  
  625. //2004-11-29aSakexe
  626. packet_ver: 14
  627. 0x0072,22,useskilltoid,8:12:18
  628. 0x007e,30,useskilltopos,4:9:22:28
  629. 0x0085,-1,globalmessage,2:4
  630. 0x0089,7,ticksend,3
  631. 0x008c,13,getcharnamerequest,9
  632. 0x0094,14,movetokafra,4:10
  633. 0x009b,2,closekafra,0
  634. 0x009f,18,actionrequest,6:17
  635. 0x00a2,7,takeitem,3
  636. 0x00a7,7,walktoxy,4
  637. 0x00f3,8,changedir,3:7
  638. 0x00f5,29,wanttoconnection,3:10:20:24:28
  639. 0x00f7,14,solvecharname,10
  640. 0x0113,110,useskilltoposinfo,4:9:22:28:30
  641. 0x0116,12,dropitem,4:10
  642. 0x0190,15,useitem,3:11
  643. 0x0193,21,movefromkafra,4:17
  644. 0x0221,-1
  645. 0x0222,6,weaponrefine,2
  646. 0x0223,8
  647.  
  648. //2004-12-13aSakexe
  649. //skipped: many packets being set to -1
  650. 0x0066,3
  651. 0x0070,3
  652. 0x01ca,3
  653. 0x021e,6
  654. 0x021f,66
  655. 0x0220,10
  656.  
  657. //2005-01-10bSakexe
  658. packet_ver: 15
  659. 0x0072,26,useskilltoid,8:16:22
  660. 0x007e,114,useskilltoposinfo,10:18:22:32:34
  661. 0x0085,23,changedir,12:22
  662. 0x0089,9,ticksend,5
  663. 0x008c,8,getcharnamerequest,4
  664. 0x0094,20,movetokafra,10:16
  665. 0x009b,32,wanttoconnection,3:12:23:27:31
  666. 0x009f,17,useitem,5:13
  667. 0x00a2,11,solvecharname,7
  668. 0x00a7,13,walktoxy,10
  669. 0x00f3,-1,globalmessage,2:4
  670. 0x00f5,9,takeitem,5
  671. 0x00f7,21,movefromkafra,11:17
  672. 0x0113,34,useskilltopos,10:18:22:32
  673. 0x0116,20,dropitem,15:18
  674. 0x0190,20,actionrequest,9:19
  675. 0x0193,2,closekafra,0
  676.  
  677. //2005-03-28aSakexe
  678. 0x0224,10
  679. 0x0225,2,taekwon,0
  680. 0x0226,282
  681.  
  682. //2005-04-04aSakexe
  683. 0x0227,18
  684. 0x0228,18
  685.  
  686. //2005-04-11aSakexe
  687. 0x0229,15
  688. 0x022a,58
  689. 0x022b,57
  690. 0x022c,64
  691.  
  692. //2005-04-25aSakexe
  693. 0x022d,5,hommenu,2:4
  694. 0x0232,9,hommoveto,2:6
  695. 0x0233,11,homattack,2:6:10
  696. 0x0234,6,hommovetomaster,2
  697.  
  698. //2005-05-09aSakexe
  699. packet_ver: 16
  700. 0x0072,25,useskilltoid,6:10:21
  701. 0x007e,102,useskilltoposinfo,5:9:12:20:22
  702. 0x0085,11,changedir,7:10
  703. 0x0089,8,ticksend,4
  704. 0x008c,11,getcharnamerequest,7
  705. 0x0094,14,movetokafra,7:10
  706. 0x009b,26,wanttoconnection,4:9:17:21:25
  707. 0x009f,14,useitem,4:10
  708. 0x00a2,15,solvecharname,11
  709. 0x00a7,8,walktoxy,5
  710. 0x00f5,8,takeitem,4
  711. 0x00f7,22,movefromkafra,14:18
  712. 0x0113,22,useskilltopos,5:9:12:20
  713. 0x0116,10,dropitem,5:8
  714. 0x0190,19,actionrequest,5:18
  715.  
  716. //2005-05-23aSakexe
  717. 0x022e,69
  718. 0x0230,12
  719.  
  720. //2005-05-30aSakexe
  721. 0x022e,71
  722. 0x0235,-1
  723. 0x0236,10
  724. 0x0237,2,rankingpk,0
  725. 0x0238,282
  726.  
  727. //2005-05-31aSakexe
  728. 0x0216,2
  729. 0x0239,11
  730.  
  731. //2005-06-08aSakexe
  732. 0x0216,6
  733. 0x0217,2,blacksmith,0
  734. 0x022f,5
  735. 0x0231,26,changehomunculusname,0
  736. 0x023a,4
  737. 0x023b,36,storagepassword,2:4:20
  738. 0x023c,6
  739.  
  740. //2005-06-22aSakexe
  741. 0x022e,71
  742.  
  743. //2005-06-28aSakexe
  744. packet_ver: 17
  745. 0x0072,34,useskilltoid,6:17:30
  746. 0x007e,113,useskilltoposinfo,12:15:18:31:33
  747. 0x0085,17,changedir,8:16
  748. 0x0089,13,ticksend,9
  749. 0x008c,8,getcharnamerequest,4
  750. 0x0094,31,movetokafra,16:27
  751. 0x009b,32,wanttoconnection,9:15:23:27:31
  752. 0x009f,19,useitem,9:15
  753. 0x00a2,9,solvecharname,5
  754. 0x00a7,11,walktoxy,8
  755. 0x00f5,13,takeitem,9
  756. 0x00f7,18,movefromkafra,11:14
  757. 0x0113,33,useskilltopos,12:15:18:31
  758. 0x0116,12,dropitem,3:10
  759. 0x0190,24,actionrequest,11:23
  760. 0x0216,-1
  761. 0x023d,-1
  762. 0x023e,4
  763.  
  764. //2005-07-18aSakexe
  765. packet_ver: 18
  766. 0x0072,19,useskilltoid,5:11:15
  767. 0x007e,110,useskilltoposinfo,9:15:23:28:30
  768. 0x0085,11,changedir,6:10
  769. 0x0089,7,ticksend,3
  770. 0x008c,11,getcharnamerequest,7
  771. 0x0094,21,movetokafra,12:17
  772. 0x009b,31,wanttoconnection,3:13:22:26:30
  773. 0x009f,12,useitem,3:8
  774. 0x00a2,18,solvecharname,14
  775. 0x00a7,15,walktoxy,12
  776. 0x00f5,7,takeitem,3
  777. 0x00f7,13,movefromkafra,5:9
  778. 0x0113,30,useskilltopos,9:15:23:28
  779. 0x0116,12,dropitem,6:10
  780. 0x0190,21,actionrequest,5:20
  781. 0x0216,6
  782. 0x023f,2,mailrefresh,0
  783. 0x0240,8
  784. 0x0241,6,mailread,2
  785. 0x0242,-1
  786. 0x0243,6,maildelete,2
  787. 0x0244,6,mailgetattach,2
  788. 0x0245,7
  789. 0x0246,4,mailwinopen,2
  790. 0x0247,8,mailsetattach,2:4
  791. 0x0248,68
  792. 0x0249,3
  793. 0x024a,70
  794. 0x024b,4,auctioncancelreg,0
  795. 0x024c,8,auctionsetitem,0
  796. 0x024d,14
  797. 0x024e,6,auctioncancel,0
  798. 0x024f,10,auctionbid,0
  799. 0x0250,3
  800. 0x0251,2
  801. 0x0252,-1
  802.  
  803. //2005-07-19bSakexe
  804. packet_ver: 19
  805. 0x0072,34,useskilltoid,6:17:30
  806. 0x007e,113,useskilltoposinfo,12:15:18:31:33
  807. 0x0085,17,changedir,8:16
  808. 0x0089,13,ticksend,9
  809. 0x008c,8,getcharnamerequest,4
  810. 0x0094,31,movetokafra,16:27
  811. 0x009b,32,wanttoconnection,9:15:23:27:31
  812. 0x009f,19,useitem,9:15
  813. 0x00a2,9,solvecharname,5
  814. 0x00a7,11,walktoxy,8
  815. 0x00f5,13,takeitem,9
  816. 0x00f7,18,movefromkafra,11:14
  817. 0x0113,33,useskilltopos,12:15:18:31
  818. 0x0116,12,dropitem,3:10
  819. 0x0190,24,actionrequest,11:23
  820.  
  821. //2005-08-01aSakexe
  822. 0x0245,3
  823. 0x0251,4
  824.  
  825. //2005-08-08aSakexe
  826. 0x024d,12,auctionregister,0
  827. 0x024e,4
  828.  
  829. //2005-08-17aSakexe
  830. 0x0253,3
  831. 0x0254,3,feelsaveok,0
  832.  
  833. //2005-08-29aSakexe
  834. 0x0240,-1
  835. 0x0248,-1,mailsend,2:4:28:68
  836. 0x0255,5
  837. 0x0256,-1
  838. 0x0257,8
  839.  
  840. //2005-09-12bSakexe
  841. 0x0256,5
  842. 0x0258,2
  843. 0x0259,3
  844.  
  845. //2005-10-10aSakexe
  846. 0x020e,32
  847. 0x025a,-1
  848. 0x025b,6,cooking,0
  849.  
  850. //2005-10-13aSakexe
  851. 0x007a,6
  852. 0x0251,32
  853. 0x025c,4,auctionbuysell,0
  854.  
  855. //2005-10-17aSakexe
  856. 0x007a,58
  857. 0x025d,6,auctionclose,0
  858. 0x025e,4
  859.  
  860. //2005-10-24aSakexe
  861. 0x025f,6
  862. 0x0260,6
  863.  
  864. //2005-11-07aSakexe
  865. 0x024e,6,auctioncancel,0
  866. 0x0251,34,auctionsearch,0
  867.  
  868. //2006-01-09aSakexe
  869. 0x0261,11
  870. 0x0262,11
  871. 0x0263,11
  872. 0x0264,20
  873. 0x0265,20
  874. 0x0266,30
  875. 0x0267,4
  876. 0x0268,4
  877. 0x0269,4
  878. 0x026a,4
  879. 0x026b,4
  880. 0x026c,4
  881. 0x026d,4
  882. 0x026f,2
  883. 0x0270,2
  884. 0x0271,38
  885. 0x0272,44
  886.  
  887. //2006-01-26aSakexe
  888. 0x0271,40
  889.  
  890. //2006-03-06aSakexe
  891. 0x0273,6
  892. 0x0274,8
  893.  
  894. //2006-03-13aSakexe
  895. 0x0273,30,mailreturn,2:6
  896.  
  897. //2006-03-27aSakexe
  898. packet_ver: 20
  899. 0x0072,26,useskilltoid,11:18:22
  900. 0x007e,120,useskilltoposinfo,5:15:29:38:40
  901. 0x0085,12,changedir,7:11
  902. //0x0089,13,ticksend,9
  903. 0x008c,12,getcharnamerequest,8
  904. 0x0094,23,movetokafra,5:19
  905. 0x009b,37,wanttoconnection,9:21:28:32:36
  906. 0x009f,24,useitem,9:20
  907. 0x00a2,11,solvecharname,7
  908. 0x00a7,15,walktoxy,12
  909. 0x00f5,13,takeitem,9
  910. 0x00f7,26,movefromkafra,11:22
  911. 0x0113,40,useskilltopos,5:15:29:38
  912. 0x0116,17,dropitem,8:15
  913. 0x0190,18,actionrequest,7:17
  914.  
  915. //2006-10-23aSakexe
  916. 0x006d,110
  917.  
  918. //2006-04-24aSakexe to 2007-01-02aSakexe
  919. 0x023e,8
  920. 0x0277,84
  921. 0x0278,2
  922. 0x0279,2
  923. 0x027a,-1
  924. 0x027b,14
  925. 0x027c,60
  926. 0x027d,62
  927. 0x027e,-1
  928. 0x027f,8
  929. 0x0280,12
  930. 0x0281,4
  931. 0x0282,284
  932. 0x0283,6
  933. 0x0284,14
  934. 0x0285,6
  935. 0x0286,4
  936. 0x0287,-1
  937. 0x0288,6
  938. 0x0289,8
  939. 0x028a,18
  940. 0x028b,-1
  941. 0x028c,46
  942. 0x028d,34
  943. 0x028e,4
  944. 0x028f,6
  945. 0x0290,4
  946. 0x0291,4
  947. 0x0292,2,autorevive,0
  948. 0x0293,70
  949. 0x0294,10
  950. 0x0295,-1
  951. 0x0296,-1
  952. 0x0297,-1
  953. 0x0298,8
  954. 0x0299,6
  955. 0x029a,27
  956. 0x029c,66
  957. 0x029d,-1
  958. 0x029e,11
  959. 0x029f,3,mermenu,0
  960. 0x02a0,-1
  961. 0x02a1,-1
  962. 0x02a2,8
  963.  
  964. //2007-01-08aSakexe
  965. packet_ver: 21
  966. 0x0072,30,useskilltoid,10:14:26
  967. 0x007e,120,useskilltoposinfo,10:19:23:38:40
  968. 0x0085,14,changedir,10:13
  969. 0x0089,11,ticksend,7
  970. 0x008c,17,getcharnamerequest,13
  971. 0x0094,17,movetokafra,4:13
  972. 0x009b,35,wanttoconnection,7:21:26:30:34
  973. 0x009f,21,useitem,7:17
  974. 0x00a2,10,solvecharname,6
  975. 0x00a7,8,walktoxy,5
  976. 0x00f5,11,takeitem,7
  977. 0x00f7,15,movefromkafra,3:11
  978. 0x0113,40,useskilltopos,10:19:23:38
  979. 0x0116,19,dropitem,11:17
  980. 0x0190,10,actionrequest,4:9
  981.  
  982. //2007-01-22aSakexe
  983. 0x02a3,18
  984. 0x02a4,2
  985.  
  986. //2007-01-29aSakexe
  987. 0x029b,72
  988. 0x02a3,-1
  989. 0x02a4,-1
  990. 0x02a5,8
  991.  
  992. // 2007-02-05aSakexe
  993. 0x02aa,4
  994. 0x02ab,36
  995. 0x02ac,6
  996.  
  997. //2007-02-12aSakexe
  998. packet_ver: 22
  999. 0x0072,25,useskilltoid,6:10:21
  1000. 0x007e,102,useskilltoposinfo,5:9:12:20:22
  1001. 0x0085,11,changedir,7:10
  1002. 0x0089,8,ticksend,4
  1003. 0x008c,11,getcharnamerequest,7
  1004. 0x0094,14,movetokafra,7:10
  1005. 0x009b,26,wanttoconnection,4:9:17:21:25
  1006. 0x009f,14,useitem,4:10
  1007. 0x00a2,15,solvecharname,11
  1008. //0x00a7,8,walktoxy,5
  1009. 0x00f5,8,takeitem,4
  1010. 0x00f7,22,movefromkafra,14:18
  1011. 0x0113,22,useskilltopos,5:9:12:20
  1012. 0x0116,10,dropitem,5:8
  1013. 0x0190,19,actionrequest,5:18
  1014.  
  1015. //2007-05-07aSakexe
  1016. 0x01fd,15,repairitem,2
  1017.  
  1018. //2007-02-27aSakexe to 2007-10-02aSakexe
  1019. 0x0288,10,cashshopbuy,2:4:6
  1020. 0x0289,12
  1021. 0x02a6,22
  1022. 0x02a7,22
  1023. 0x02a8,162
  1024. 0x02a9,58
  1025. 0x02ad,8
  1026. 0x02b0,85
  1027. 0x02b1,-1
  1028. 0x02b2,-1
  1029. 0x02b3,107
  1030. 0x02b4,6
  1031. 0x02b5,-1
  1032. 0x02b6,7,queststate,2:6
  1033. 0x02b7,7
  1034. 0x02b8,22
  1035. 0x02b9,191
  1036. 0x02ba,11,hotkey,2:4:5:9
  1037. 0x02bb,8
  1038. 0x02bc,6
  1039. 0x02bf,10
  1040. 0x02c0,2
  1041. 0x02c1,-1
  1042. 0x02c2,-1
  1043. 0x02c4,26,partyinvite2,2
  1044. 0x02c5,30
  1045. 0x02c6,30
  1046. 0x02c7,7,replypartyinvite2,2:6
  1047. 0x02c8,3
  1048. 0x02c9,3
  1049. 0x02ca,3
  1050. 0x02cb,20
  1051. 0x02cc,4
  1052. 0x02cd,26
  1053. 0x02ce,10
  1054. 0x02cf,6
  1055. 0x02d0,-1
  1056. 0x02d1,-1
  1057. 0x02d2,-1
  1058. 0x02d3,4
  1059. 0x02d4,29
  1060. 0x02d5,2
  1061. 0x02d6,6,viewplayerequip,2
  1062. 0x02d7,-1
  1063. 0x02d8,10,equiptickbox,6
  1064. 0x02d9,10
  1065. 0x02da,3
  1066. 0x02db,-1,battlechat,2:4
  1067. 0x02dc,-1
  1068. 0x02dd,32
  1069. 0x02de,6
  1070. 0x02df,36
  1071. 0x02e0,34
  1072.  
  1073. //2007-10-23aSakexe
  1074. 0x02cb,65
  1075. 0x02cd,71
  1076.  
  1077. //2007-11-06aSakexe
  1078. 0x0078,55
  1079. 0x007c,42
  1080. 0x022c,65
  1081. 0x029b,80
  1082.  
  1083. //2007-11-13aSakexe
  1084. 0x02e1,33
  1085.  
  1086. //2007-11-20aSakexe
  1087. //0x01df,10 <- ???
  1088. 0x02e2,14
  1089. 0x02e3,25
  1090. 0x02e4,8
  1091. 0x02e5,8
  1092. 0x02e6,6
  1093.  
  1094. //2007-11-27aSakexe
  1095. 0x02e7,-1
  1096.  
  1097. //2008-01-02aSakexe
  1098. 0x01df,6,gmreqaccname,2
  1099. 0x02e8,-1
  1100. 0x02e9,-1
  1101. 0x02ea,-1
  1102. 0x02eb,13
  1103. 0x02ec,67
  1104. 0x02ed,59
  1105. 0x02ee,60
  1106. 0x02ef,8
  1107.  
  1108. //2008-03-18aSakexe
  1109. 0x02bf,-1
  1110. 0x02c0,-1
  1111. 0x02f0,10
  1112. 0x02f1,2,progressbar,0
  1113. 0x02f2,2
  1114.  
  1115. //2008-03-25bSakexe
  1116. 0x02f3,-1
  1117. 0x02f4,-1
  1118. 0x02f5,-1
  1119. 0x02f6,-1
  1120. 0x02f7,-1
  1121. 0x02f8,-1
  1122. 0x02f9,-1
  1123. 0x02fa,-1
  1124. 0x02fb,-1
  1125. 0x02fc,-1
  1126. 0x02fd,-1
  1127. 0x02fe,-1
  1128. 0x02ff,-1
  1129. 0x0300,-1
  1130.  
  1131. //2008-04-01aSakexe
  1132. 0x0301,-1
  1133. 0x0302,-1
  1134. 0x0303,-1
  1135. 0x0304,-1
  1136. 0x0305,-1
  1137. 0x0306,-1
  1138. 0x0307,-1
  1139. 0x0308,-1
  1140. 0x0309,-1
  1141. 0x030a,-1
  1142. 0x030b,-1
  1143. 0x030c,-1
  1144. 0x030d,-1
  1145. 0x030e,-1
  1146. 0x030f,-1
  1147. 0x0310,-1
  1148. 0x0311,-1
  1149. 0x0312,-1
  1150. 0x0313,-1
  1151. 0x0314,-1
  1152. 0x0315,-1
  1153. 0x0316,-1
  1154. 0x0317,-1
  1155. 0x0318,-1
  1156. 0x0319,-1
  1157. 0x031a,-1
  1158. 0x031b,-1
  1159. 0x031c,-1
  1160. 0x031d,-1
  1161. 0x031e,-1
  1162. 0x031f,-1
  1163. 0x0320,-1
  1164. 0x0321,-1
  1165. 0x0322,-1
  1166. 0x0323,-1
  1167. 0x0324,-1
  1168. 0x0325,-1
  1169. 0x0326,-1
  1170. 0x0327,-1
  1171. 0x0328,-1
  1172. 0x0329,-1
  1173. 0x032a,-1
  1174. 0x032b,-1
  1175. 0x032c,-1
  1176. 0x032d,-1
  1177. 0x032e,-1
  1178. 0x032f,-1
  1179. 0x0330,-1
  1180. 0x0331,-1
  1181. 0x0332,-1
  1182. 0x0333,-1
  1183. 0x0334,-1
  1184. 0x0335,-1
  1185. 0x0336,-1
  1186. 0x0337,-1
  1187. 0x0338,-1
  1188. 0x0339,-1
  1189. 0x033a,-1
  1190. 0x033b,-1
  1191. 0x033c,-1
  1192. 0x033d,-1
  1193. 0x033e,-1
  1194. 0x033f,-1
  1195. 0x0340,-1
  1196. 0x0341,-1
  1197. 0x0342,-1
  1198. 0x0343,-1
  1199. 0x0344,-1
  1200. 0x0345,-1
  1201. 0x0346,-1
  1202. 0x0347,-1
  1203. 0x0348,-1
  1204. 0x0349,-1
  1205. 0x034a,-1
  1206. 0x034b,-1
  1207. 0x034c,-1
  1208. 0x034d,-1
  1209. 0x034e,-1
  1210. 0x034f,-1
  1211. 0x0350,-1
  1212. 0x0351,-1
  1213. 0x0352,-1
  1214. 0x0353,-1
  1215. 0x0354,-1
  1216. 0x0355,-1
  1217. 0x0356,-1
  1218. 0x0357,-1
  1219. 0x0358,-1
  1220. 0x0359,-1
  1221. 0x035a,-1
  1222.  
  1223. //2008-05-27aSakexe
  1224. 0x035b,-1
  1225. 0x035c,2
  1226. 0x035d,-1
  1227. 0x035e,2
  1228. 0x035f,-1
  1229. 0x0389,-1
  1230.  
  1231. //2008-08-20aSakexe
  1232. 0x040c,-1
  1233. 0x040d,-1
  1234. 0x040e,-1
  1235. 0x040f,-1
  1236. 0x0410,-1
  1237. 0x0411,-1
  1238. 0x0412,-1
  1239. 0x0413,-1
  1240. 0x0414,-1
  1241. 0x0415,-1
  1242. 0x0416,-1
  1243. 0x0417,-1
  1244. 0x0418,-1
  1245. 0x0419,-1
  1246. 0x041a,-1
  1247. 0x041b,-1
  1248. 0x041c,-1
  1249. 0x041d,-1
  1250. 0x041e,-1
  1251. 0x041f,-1
  1252. 0x0420,-1
  1253. 0x0421,-1
  1254. 0x0422,-1
  1255. 0x0423,-1
  1256. 0x0424,-1
  1257. 0x0425,-1
  1258. 0x0426,-1
  1259. 0x0427,-1
  1260. 0x0428,-1
  1261. 0x0429,-1
  1262. 0x042a,-1
  1263. 0x042b,-1
  1264. 0x042c,-1
  1265. 0x042d,-1
  1266. 0x042e,-1
  1267. 0x042f,-1
  1268. 0x0430,-1
  1269. 0x0431,-1
  1270. 0x0432,-1
  1271. 0x0433,-1
  1272. 0x0434,-1
  1273. 0x0435,-1
  1274.  
  1275. //2008-09-10aSakexe
  1276. packet_ver: 23
  1277. 0x0436,19,wanttoconnection,2:6:10:14:18
  1278. 0x0437,7,actionrequest,2:6
  1279. 0x0438,10,useskilltoid,2:4:6
  1280. 0x0439,8,useitem,2:4
  1281.  
  1282. //2008-11-13aSakexe
  1283. 0x043d,8
  1284. 0x043e,-1
  1285. 0x043f,8
  1286.  
  1287. //2008-11-26aSakexe
  1288. 0x01a2,37
  1289. 0x0440,10
  1290. 0x0441,4
  1291.  
  1292. //2008-12-10aSakexe
  1293. 0x0442,-1
  1294. 0x0443,8,skillselectmenu,2:6
  1295.  
  1296. //2009-01-14aSakexe
  1297. 0x043f,25
  1298. 0x0444,-1
  1299. 0x0445,10
  1300.  
  1301. //2009-02-18aSakexe
  1302. 0x0446,14
  1303.  
  1304. //2009-02-25aSakexe
  1305. 0x0448,-1
  1306.  
  1307. //2009-03-30aSakexe
  1308. 0x0449,4
  1309.  
  1310. //2009-04-08aSakexe
  1311. 0x02a6,-1
  1312. 0x02a7,-1
  1313. 0x044a,6
  1314.  
  1315. //Renewal Clients
  1316. //2008-08-27aRagexeRE
  1317. packet_ver: 24
  1318. 0x0072,22,useskilltoid,9:15:18
  1319. 0x007c,44
  1320. 0x007e,105,useskilltoposinfo,10:14:18:23:25
  1321. 0x0085,10,changedir,4:9
  1322. 0x0089,11,ticksend,7
  1323. 0x008c,14,getcharnamerequest,10
  1324. 0x0094,19,movetokafra,3:15
  1325. 0x009b,34,wanttoconnection,7:15:25:29:33
  1326. 0x009f,20,useitem,7:20
  1327. 0x00a2,14,solvecharname,10
  1328. 0x00a7,9,walktoxy,6
  1329. 0x00f5,11,takeitem,7
  1330. 0x00f7,17,movefromkafra,3:13
  1331. 0x0113,25,useskilltopos,10:14:18:23
  1332. 0x0116,17,dropitem,6:15
  1333. 0x0190,23,actionrequest,9:22
  1334. 0x02e2,20
  1335. 0x02e3,22
  1336. 0x02e4,11
  1337. 0x02e5,9
  1338.  
  1339. //2008-09-10aRagexeRE
  1340. packet_ver: 25
  1341. 0x0436,19,wanttoconnection,2:6:10:14:18
  1342. 0x0437,7,actionrequest,2:6
  1343. 0x0438,10,useskilltoid,2:4:6
  1344. 0x0439,8,useitem,2:4
  1345.  
  1346. //2008-11-12aRagexeRE
  1347. 0x043d,8
  1348. //0x043e,-1
  1349. 0x043f,8
  1350.  
  1351. //2008-12-17aRagexeRE
  1352. 0x01a2,37
  1353. //0x0440,10
  1354. //0x0441,4
  1355. //0x0442,8
  1356. //0x0443,8
  1357.  
  1358. //2008-12-17bRagexeRE
  1359. 0x006d,114
  1360.  
  1361. //2009-01-21aRagexeRE
  1362. 0x043f,25
  1363. //0x0444,-1
  1364. //0x0445,10
  1365.  
  1366. //2009-02-18aRagexeRE
  1367. //0x0446,14
  1368.  
  1369. //2009-02-26cRagexeRE
  1370. //0x0448,-1
  1371.  
  1372. //2009-04-01aRagexeRE
  1373. //0x0449,4
  1374.  
  1375. //2009-05-14aRagexeRE
  1376. //0x044b,2
  1377.  
  1378. //2009-05-20aRagexeRE
  1379. //0x07d0,6
  1380. //0x07d1,2
  1381. //0x07d2,-1
  1382. //0x07d3,4
  1383. //0x07d4,4
  1384. //0x07d5,4
  1385. //0x07d6,4
  1386. //0x0447,2
  1387.  
  1388. //2009-06-03aRagexeRE
  1389. 0x07d7,8,partychangeoption,2:6:7
  1390. 0x07d8,8
  1391. 0x07d9,254
  1392. 0x07da,6,partychangeleader,2
  1393.  
  1394. //2009-06-10aRagexeRE
  1395. //0x07db,8
  1396.  
  1397. //2009-06-17aRagexeRE
  1398. 0x07d9,268
  1399. //0x07dc,6
  1400. //0x07dd,54
  1401. //0x07de,30
  1402. //0x07df,54
  1403.  
  1404. //2009-07-01aRagexeRE
  1405. //0x0275,37
  1406. //0x0276,-1
  1407.  
  1408. //2009-07-08aRagexeRE
  1409. //0x07e0,58
  1410.  
  1411. //2009-07-15aRagexeRE
  1412. 0x07e1,15
  1413.  
  1414. //2009-08-05aRagexeRE
  1415. 0x07e2,8
  1416.  
  1417. //2009-08-18aRagexeRE
  1418. 0x07e3,6
  1419. 0x07e4,-1,itemlistwindowselected,2:4:8
  1420. 0x07e6,8
  1421.  
  1422. //2009-08-25aRagexeRE
  1423. //0x07e6,28
  1424. 0x07e7,5
  1425.  
  1426. //2009-09-22aRagexeRE
  1427. 0x07e5,8
  1428. 0x07e6,8
  1429. 0x07e7,32
  1430. 0x07e8,-1
  1431. 0x07e9,5
  1432.  
  1433. //2009-09-29aRagexeRE
  1434. //0x07ea,2
  1435. //0x07eb,-1
  1436. //0x07ec,6
  1437. //0x07ed,8
  1438. //0x07ee,6
  1439. //0x07ef,8
  1440. //0x07f0,4
  1441. //0x07f2,4
  1442. //0x07f3,3
  1443.  
  1444. //2009-10-06aRagexeRE
  1445. //0x07ec,8
  1446. //0x07ed,10
  1447. //0x07f0,8
  1448. //0x07f1,15
  1449. //0x07f2,6
  1450. //0x07f3,4
  1451. //0x07f4,3
  1452.  
  1453. //2009-10-27aRagexeRE
  1454. 0x07f5,6,gmreqaccname,2
  1455. 0x07f6,14
  1456.  
  1457. //2009-11-03aRagexeRE
  1458. 0x07f7,-1
  1459. 0x07f8,-1
  1460. 0x07f9,-1
  1461.  
  1462. //2009-11-17aRagexeRE
  1463. 0x07fa,8
  1464.  
  1465. //2009-11-24aRagexeRE
  1466. 0x07fb,25
  1467.  
  1468. //2009-12-01aRagexeRE
  1469. //0x07fc,10
  1470. //0x07fd,-1
  1471. 0x07fe,26
  1472. //0x07ff,-1
  1473.  
  1474. //2009-12-15aRagexeRE
  1475. 0x0800,-1
  1476. //0x0801,-1
  1477.  
  1478. //2009-12-22aRagexeRE
  1479. 0x0802,18,bookingregreq,2:4:6       // Booking System
  1480. 0x0803,4
  1481. 0x0804,8        // Booking System
  1482. 0x0805,-1
  1483. 0x0806,4,bookingdelreq,2        // Booking System
  1484. //0x0807,2
  1485. 0x0808,4        // Booking System
  1486. //0x0809,14
  1487. //0x080A,50
  1488. //0x080B,18
  1489. //0x080C,6
  1490.  
  1491. //2009-12-29aRagexeRE
  1492. 0x0804,14,bookingsearchreq,2:4:6:8:12       // Booking System
  1493. 0x0806,2,bookingdelreq,0        // Booking System
  1494. 0x0807,4
  1495. 0x0808,14,bookingupdatereq,2        // Booking System
  1496. 0x0809,50
  1497. 0x080A,18
  1498. 0x080B,6        // Booking System
  1499.  
  1500. //2010-01-05aRagexeRE
  1501. 0x0801,-1,purchasereq2,2:4:8:12
  1502.  
  1503. //2010-01-26aRagexeRE
  1504. //0x080C,2
  1505. //0x080D,3
  1506. 0x080E,14
  1507.  
  1508. //2010-02-09aRagexeRE
  1509. //0x07F0,6
  1510.  
  1511. //2010-02-23aRagexeRE
  1512. 0x080F,20
  1513.  
  1514. //2010-03-03aRagexeRE
  1515. 0x0810,3
  1516. 0x0811,-1,reqopenbuyingstore,2:4:8:9:89
  1517. //0x0812,86
  1518. //0x0813,6
  1519. //0x0814,6
  1520. //0x0815,-1
  1521. //0x0817,-1
  1522. //0x0818,6
  1523. //0x0819,4
  1524.  
  1525. //2010-03-09aRagexeRE
  1526. 0x0813,-1
  1527. //0x0814,2
  1528. //0x0815,6
  1529. 0x0816,6
  1530. 0x0818,-1
  1531. //0x0819,10
  1532. //0x081A,4
  1533. //0x081B,4
  1534. //0x081C,6
  1535. 0x081d,22
  1536. 0x081e,8
  1537.  
  1538. //2010-03-23aRagexeRE
  1539. //0x081F,-1
  1540.  
  1541. //2010-04-06aRagexeRE
  1542. //0x081A,6
  1543.  
  1544. //2010-04-13aRagexeRE
  1545. //0x081A,10
  1546. 0x0820,11
  1547. //0x0821,2
  1548. //0x0822,9
  1549. //0x0823,-1
  1550.  
  1551. //2010-04-14dRagexeRE
  1552. //0x081B,8
  1553.  
  1554. //2010-04-20aRagexeRE
  1555. 0x0812,8
  1556. 0x0814,86
  1557. 0x0815,2,reqclosebuyingstore,0
  1558. 0x0817,6,reqclickbuyingstore,2
  1559. 0x0819,-1,reqtradebuyingstore,2:4:8:12
  1560. 0x081a,4
  1561. 0x081b,10
  1562. 0x081c,10
  1563. 0x0824,6
  1564.  
  1565. //2010-06-01aRagexeRE
  1566. //0x0825,-1
  1567. //0x0826,4
  1568. 0x0835,-1,searchstoreinfo,2:4:5:9:13:14:15
  1569. 0x0836,-1
  1570. 0x0837,3
  1571. //0x0838,3
  1572.  
  1573. //2010-06-08aRagexeRE
  1574. 0x0838,2,searchstoreinfonextpage,0
  1575. 0x083A,4    // Search Stalls Feature
  1576. 0x083B,2,closesearchstoreinfo,0
  1577. 0x083C,12,searchstoreinfolistitemclick,2:6:10
  1578. 0x083D,6
  1579.  
  1580. //2010-06-15aRagexeRE
  1581. //0x083E,26
  1582.  
  1583. //2010-06-22aRagexeRE
  1584. //0x083F,22
  1585.  
  1586. //2010-06-29aRagexeRE
  1587. 0x00AA,9
  1588. //0x07F1,18
  1589. //0x07F2,8
  1590. //0x07F3,6
  1591.  
  1592. //2010-07-01aRagexeRE
  1593. 0x083A,5    // Search Stalls Feature
  1594.  
  1595. //2010-07-13aRagexeRE
  1596. //0x0827,6
  1597. //0x0828,14
  1598. //0x0829,6
  1599. //0x082A,10
  1600. //0x082B,6
  1601. //0x082C,14
  1602. //0x0840,-1
  1603. //0x0841,19
  1604.  
  1605. //2010-07-14aRagexeRE
  1606. //0x841,4
  1607.  
  1608. //2010-08-03aRagexeRE
  1609. 0x0839,66
  1610. 0x0842,6,recall2,2
  1611. 0x0843,6,remove2,2
  1612.  
  1613. //2010-11-24aRagexeRE
  1614. packet_ver: 26
  1615. 0x0288,-1,cashshopbuy,4:8
  1616. 0x0436,19,wanttoconnection,2:6:10:14:18
  1617. 0x035f,5,walktoxy,2
  1618. 0x0360,6,ticksend,2
  1619. 0x0361,5,changedir,2:4
  1620. 0x0362,6,takeitem,2
  1621. 0x0363,6,dropitem,2:4
  1622. 0x0364,8,movetokafra,2:4
  1623. 0x0365,8,movefromkafra,2:4
  1624. 0x0366,10,useskilltopos,2:4:6:8
  1625. 0x0367,90,useskilltoposinfo,2:4:6:8:10
  1626. 0x0368,6,getcharnamerequest,2
  1627. 0x0369,6,solvecharname,2
  1628. 0x0856,-1
  1629. 0x0857,-1
  1630. 0x0858,-1
  1631. 0x0859,-1
  1632. 0x08d0,9
  1633.  
  1634. //2011-10-05aRagexeRE
  1635. packet_ver: 27
  1636. 0x0364,5,walktoxy,2
  1637. 0x0817,6,ticksend,2
  1638. 0x0366,5,changedir,2:4
  1639. 0x0815,6,takeitem,2
  1640. 0x0885,6,dropitem,2:4
  1641. 0x0893,8,movetokafra,2:4
  1642. 0x0897,8,movefromkafra,2:4
  1643. 0x0369,10,useskilltopos,2:4:6:8
  1644. 0x08ad,90,useskilltoposinfo,2:4:6:8:10
  1645. 0x088a,6,getcharnamerequest,2
  1646. 0x0838,6,solvecharname,2
  1647. 0x0439,8,useitem,2:4
  1648. 0x08d2,10
  1649. 0x08d1,7
  1650.  
  1651. // 2011-11-02aRagexe
  1652. packet_ver: 28
  1653. 0x0436,26,friendslistadd,2
  1654. 0x0898,5,hommenu,4
  1655. 0x0281,36,storagepassword,0
  1656. 0x088d,26,partyinvite2,2
  1657. 0x083c,19,wanttoconnection,2:6:10:14:18
  1658. 0x08aa,7,actionrequest,2:6
  1659. 0x02c4,10,useskilltoid,2:4:6
  1660. 0x0811,-1,itemlistwindowselected,2:4:8
  1661. 0x890,8
  1662. 0x08a5,18,bookingregreq,2:4:6
  1663. 0x0835,-1,reqopenbuyingstore,2:4:8:9:89
  1664. 0x089b,2,reqclosebuyingstore,0
  1665. 0x08a1,6,reqclickbuyingstore,2
  1666. 0x089e,-1,reqtradebuyingstore,2:4:8:12
  1667. 0x08ab,-1,searchstoreinfo,2:4:5:9:13:14:15
  1668. 0x088b,2,searchstoreinfonextpage,0
  1669. 0x08a2,12,searchstoreinfolistitemclick,2:6:10
  1670.  
  1671. //2012-03-07fRagexeRE
  1672. packet_ver:29
  1673. 0x086A,19,wanttoconnection,2:6:10:14:18
  1674. 0x0437,5,walktoxy,2
  1675. 0x0887,6,ticksend,2
  1676. 0x0890,5,changedir,2:4
  1677. 0x0865,6,takeitem,2
  1678. 0x02C4,6,dropitem,2:4
  1679. 0x093B,8,movetokafra,2:4
  1680. 0x0963,8,movefromkafra,2:4
  1681. 0x0438,10,useskilltopos,2:4:6:8
  1682. 0x0366,90,useskilltoposinfo,2:4:6:8:10
  1683. 0x096A,6,getcharnamerequest,2
  1684. 0x0368,6,solvecharname,2
  1685. 0x0369,26,friendslistadd,2
  1686. 0x0863,5,hommenu,4
  1687. 0x0861,36,storagepassword,0
  1688. 0x0929,26,partyinvite2,2
  1689. 0x0885,7,actionrequest,2:6
  1690. 0x0889,10,useskilltoid,2:4:6
  1691. 0x0870,-1,itemlistwindowselected,2:4:8
  1692. 0x0926,18,bookingregreq,2:4:6
  1693. 0x0815,-1,reqopenbuyingstore,2:4:8:9:89
  1694. 0x0817,2,reqclosebuyingstore,0
  1695. 0x0360,6,reqclickbuyingstore,2
  1696. 0x0811,-1,reqtradebuyingstore,2:4:8:12
  1697. 0x0884,-1,searchstoreinfo,2:4:5:9:13:14:15
  1698. 0x0835,2,searchstoreinfonextpage,0
  1699. 0x0838,12,searchstoreinfolistitemclick,2:6:10
  1700. 0x0439,8,useitem,2:4
  1701.  
  1702. //2012-04-10aRagexeRE
  1703. packet_ver: 30
  1704. 0x01FD,15,repairitem,2
  1705. 0x089C,26,friendslistadd,2
  1706. 0x0885,5,hommenu,2:4
  1707. 0x0961,36,storagepassword,0
  1708. 0x0288,-1,cashshopbuy,4:8
  1709. 0x091C,26,partyinvite2,2
  1710. 0x094B,19,wanttoconnection,2:6:10:14:18
  1711. 0x0369,7,actionrequest,2:6
  1712. 0x083C,10,useskilltoid,2:4:6
  1713. 0x0439,8,useitem,2:4
  1714. 0x0945,-1,itemlistwindowselected,2:4:8
  1715. 0x0815,-1,reqopenbuyingstore,2:4:8:9:89
  1716. 0x0817,2,reqclosebuyingstore,0
  1717. 0x0360,6,reqclickbuyingstore,2
  1718. 0x0811,-1,reqtradebuyingstore,2:4:8:12
  1719. 0x0819,-1,searchstoreinfo,2:4:5:9:13:14:15
  1720. 0x0835,2,searchstoreinfonextpage,0
  1721. 0x0838,12,searchstoreinfolistitemclick,2:6:10
  1722. 0x0437,5,walktoxy,2
  1723. 0x0886,6,ticksend,2
  1724. 0x0871,5,changedir,2:4
  1725. 0x0938,6,takeitem,2
  1726. 0x0891,6,dropitem,2:4
  1727. 0x086C,8,movetokafra,2:4
  1728. 0x08A6,8,movefromkafra,2:4
  1729. 0x0438,10,useskilltopos,2:4:6:8
  1730. 0x0366,90,useskilltoposinfo,2:4:6:8:10
  1731. 0x0889,6,getcharnamerequest,2
  1732. 0x0884,6,solvecharname,2
  1733. 0x08E5,41,bookingregreq,2:4 //Added to prevent disconnections
  1734. 0x08E6,4
  1735. 0x08E7,10,bookingsearchreq,2
  1736. 0x08E8,-1
  1737. 0x08E9,2,bookingdelreq,2
  1738. 0x08EA,4
  1739. 0x08EB,39,bookingupdatereq,2
  1740. 0x08EC,73
  1741. 0x08ED,43
  1742. 0x08EE,6
  1743. 0x08EF,6,bookingignorereq,2
  1744. 0x08F0,6
  1745. 0x08F1,6,bookingjoinpartyreq,2
  1746. 0x08F2,36
  1747. 0x08F3,-1
  1748. 0x08F4,6
  1749. 0x08F5,-1,bookingsummonmember,2:4
  1750. 0x08F6,22
  1751. 0x08F7,3
  1752. 0x08F8,7
  1753. 0x08F9,6
  1754. 0x08FA,6
  1755. 0x08FB,6,bookingcanceljoinparty,2
  1756. 0x0907,5,moveitem,2:4
  1757. 0x0908,5
  1758. 0x08D7,28,battlegroundreg,2:4 //Added to prevent disconnections
  1759. 0x08CF,10 //Amulet spirits
  1760. 0x0977,14 //Monster HP Bar
  1761. 0x0844,2,cashshopopen,0
  1762. 0x084a,2,cashshopclose,0
  1763. 0x08c9,4,cashshopitemlist,0
  1764. 0x0848,-1,cashshopbuy,0
  1765. 0x091d,18 //recruit dc
  1766.  
  1767. //2012-04-18aRagexeRE [Special Thanks to Judas!]
  1768. packet_ver:31
  1769. 0x023B,26,friendslistadd,2
  1770. 0x0361,5,hommenu,2:4
  1771. 0x08A8,36,storagepassword,0
  1772. 0x0802,26,partyinvite2,2
  1773. 0x022D,19,wanttoconnection,2:6:10:14:18
  1774. 0x0281,-1,itemlistwindowselected,2:4:8
  1775. 0x035F,6,ticksend,2
  1776. 0x0202,5,changedir,2:4
  1777. 0x07E4,6,takeitem,2
  1778. 0x0362,6,dropitem,2:4
  1779. 0x07EC,8,movetokafra,2:4
  1780. 0x0364,8,movefromkafra,2:4
  1781. 0x096A,6,getcharnamerequest,2
  1782. 0x0368,6,solvecharname,2
  1783. 0x08E5,41,bookingregreq,2:4     //Added to prevent disconnections
  1784. 0x08d2,10
  1785.  
  1786. //2012-06-18
  1787. packet_ver: 32
  1788. 0x0983,29
  1789.  
  1790. //2012-07-02aRagexeRE (unstable)
  1791. packet_ver: 33
  1792. 0x0363,19,wanttoconnection,2:6:10:14:18
  1793. 0x0364,6,ticksend,2
  1794. 0x085a,7,actionrequest,2:6
  1795. 0x0861,8,movefromkafra,2:4
  1796. 0x0862,10,useskilltoid,2:4:6
  1797. 0x0863,10,useskilltopos,2:4:6:8
  1798. 0x0886,6,solvecharname,2
  1799. 0x0889,90,useskilltoposinfo,2:4:6:8:10
  1800. 0x089e,6,dropitem,2:4
  1801. 0x089f,6,takeitem,2
  1802. 0x08a0,8,movetokafra,2:4
  1803. 0x094a,6,getcharnamerequest,2
  1804. 0x0953,5,walktoxy,2
  1805. 0x0960,5,changedir,2:4
  1806.  
  1807. //2013-03-20Ragexe (Judas)
  1808. packet_ver: 34
  1809. 0x014f,6,guildrequestinfo,2
  1810. 0x01fd,15,repairitem,2
  1811. //0x0281,-1,itemlistwindowselected,2:4:8
  1812. 0x035f,6,reqclickbuyingstore,2
  1813. 0x0363,6,ticksend,2
  1814. 0x0365,12,searchstoreinfolistitemclick,2:6:10
  1815. 0x0438,6,dropitem,2:4
  1816. 0x0447,2,booking_playcancel,0
  1817. 0x044A,6,clientversion,2
  1818. 0x0844,2,cashshopopen,0
  1819. 0x0848,-1,cashshopbuy,0
  1820. 0x084a,2,cashshopclose,0
  1821. 0x084b,19 //fallitem4
  1822. 0x085a,90,useskilltoposinfo,2:4:6:8:10
  1823. 0x085d,18,bookingregreq,2:4
  1824. 0x0868,-1,itemlistwindowselected,2:4:8
  1825. 0x086d,26,partyinvite2,2
  1826. 0x086f,26,friendslistadd,2
  1827. 0x0874,8,movefromkafra,2:4
  1828. 0x0881,5,walktoxy,2
  1829. 0x0886,2,reqclosebuyingstore,0
  1830. 0x0888,19,wanttoconnection,2:6:10:14:18
  1831. 0x088e,7,actionrequest,2:6
  1832. 0x0897,5,changedir,2:4
  1833. 0x0898,6,getcharnamerequest,2
  1834. 0x089b,10,useskilltoid,2:4:6
  1835. 0x08ac,8,movetokafra,2:4
  1836. 0x08c9,4,cashshopitemlist,0
  1837. 0x08cf,10 //Amulet spirits
  1838. 0x08d2,10
  1839. 0x0907,5,moveitem,2:4
  1840. 0x0908,5
  1841. 0x090f,-1 // notify_newentry7
  1842. 0x0914,-1 // notify_moveentry
  1843. 0x0915,-1 // notify_standentry
  1844. 0x0922,-1,reqtradebuyingstore,2:4:8:12
  1845. //0x092e,2,searchstoreinfonextpage,0
  1846. 0x0933,6,takeitem,2
  1847. 0x0938,-1,reqopenbuyingstore,2:4:8:9:89
  1848. 0x093f,5,hommenu,2:4
  1849. 0x0947,36,storagepassword,0
  1850. 0x094c,6,solvecharname,2
  1851. 0x094e,-1,searchstoreinfo,2:4:5:9:13:14:15
  1852. 0x0959,10,useskilltopos,2:4:6:8
  1853. //0x095a,8,mailsetattach,2:4
  1854. 0x0977,14 //Monster HP Bar
  1855. 0x0978,6,reqworldinfo,2
  1856. 0x0979,50 //ackworldinfo
  1857. 0x0990,31 //additem
  1858. 0x0991,-1 //inv itemlist normal
  1859. 0x0992,-1 //inv itemlist equip
  1860. 0x0993,-1 //cart itemlist normal
  1861. 0x0994,-1 //cart itemlist equip
  1862. 0x0995,-1 //store itemlist normal
  1863. 0x0996,-1 //store itemlist equip
  1864. 0x0997,-1 //ZC_EQUIPWIN_MICROSCOPE_V5
  1865. 0x0998,8,equipitem,2:4
  1866. 0x0999,11 // cz_wear_equipv5
  1867. 0x099a,9 // take_off_equipv5
  1868. 0x099b,8 //maptypeproperty2
  1869.  
  1870. //2013-05-15a Ragexe (Yommy)
  1871. packet_ver: 35
  1872. 0x0369,7,actionrequest,2:6
  1873. 0x083C,10,useskilltoid,2:4:6
  1874. 0x0437,5,walktoxy,2
  1875. 0x035F,6,ticksend,2
  1876. 0x0362,5,changedir,2:4
  1877. 0x08A1,6,takeitem,2
  1878. 0x0944,6,dropitem,2:4
  1879. 0x0887,8,movetokafra,2:4
  1880. 0x08AC,8,movefromkafra,2:4
  1881. 0x0438,10,useskilltopos,2:4:6:8
  1882. 0x0366,90,useskilltoposinfo,2:4:6:8:10
  1883. 0x096A,6,getcharnamerequest,2
  1884. 0x0368,6,solvecharname,2
  1885. 0x0838,12,searchstoreinfolistitemclick,2:6:10
  1886. 0x0835,2,searchstoreinfonextpage,0
  1887. 0x0819,-1,searchstoreinfo,2:4:5:9:13:14:15
  1888. 0x0811,-1,reqtradebuyingstore,2:4:8:12
  1889. 0x0360,6,reqclickbuyingstore,2
  1890. 0x0817,2,reqclosebuyingstore,0
  1891. 0x0815,-1,reqopenbuyingstore,2:4:8:9:89
  1892. 0x092D,18,bookingregreq,2:4
  1893. //0x08AA,8 CZ_JOIN_BATTLE_FIELD
  1894. 0x0963,-1,itemlistwindowselected,2:4:8
  1895. 0x0943,19,wanttoconnection,2:6:10:14:18
  1896. 0x0947,26,partyinvite2,2
  1897. //0x0862,4 CZ_GANGSI_RANK
  1898. 0x0962,26,friendslistadd,2
  1899. 0x0931,5,hommenu,2:4
  1900. 0x093E,36,storagepassword,0
  1901.  
  1902. //2013-05-22 Ragexe (Yommy)
  1903. packet_ver: 36
  1904. 0x08A2,7,actionrequest,2:6
  1905. 0x095C,10,useskilltoid,2:4:6
  1906. 0x0360,5,walktoxy,2
  1907. 0x07EC,6,ticksend,2
  1908. 0x0925,5,changedir,2:4
  1909. 0x095E,6,takeitem,2
  1910. 0x089C,6,dropitem,2:4
  1911. 0x08A3,8,movetokafra,2:4
  1912. 0x087E,8,movefromkafra,2:4
  1913. 0x0811,10,useskilltopos,2:4:6:8
  1914. 0x0964,90,useskilltoposinfo,2:4:6:8:10
  1915. 0x08A6,6,getcharnamerequest,2
  1916. 0x0369,6,solvecharname,2
  1917. 0x093E,12,searchstoreinfolistitemclick,2:6:10
  1918. 0x08AA,2,searchstoreinfonextpage,0
  1919. 0x095B,-1,searchstoreinfo,2:4:5:9:13:14:15
  1920. 0x0952,-1,reqtradebuyingstore,2:4:8:12
  1921. 0x0368,6,reqclickbuyingstore,2
  1922. 0x086E,2,reqclosebuyingstore,0
  1923. 0x0874,-1,reqopenbuyingstore,2:4:8:9:89
  1924. 0x089B,18,bookingregreq,2:4
  1925. //0x0965,8 CZ_JOIN_BATTLE_FIELD
  1926. 0x086A,-1,itemlistwindowselected,2:4:8
  1927. 0x08A9,19,wanttoconnection,2:6:10:14:18
  1928. 0x0950,26,partyinvite2,2
  1929. //0x08AC,4 CZ_GANGSI_RANK
  1930. 0x0362,26,friendslistadd,2
  1931. 0x0926,5,hommenu,2:4
  1932. 0x088E,36,storagepassword,0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement