packet_db.txt 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700
  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: default
  38. //packet_db_ver: 23
  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. //2004-07-05aSakexe
  467. packet_ver: 6
  468. 0x0072,22,wanttoconnection,5:9:13:17:21
  469. 0x0085,8,walktoxy,5
  470. 0x00a7,13,useitem,5:9
  471. 0x0113,15,useskilltoid,4:9:11
  472. 0x0116,15,useskilltopos,4:9:11:13
  473. 0x0190,95,useskilltoposinfo,4:9:11:13:15
  474. 0x0208,14,friendslistreply,2:6:10
  475. 0x020e,24
  476. //2004-07-13aSakexe
  477. packet_ver: 7
  478. 0x0072,39,wanttoconnection,12:22:30:34:38
  479. 0x0085,9,walktoxy,6
  480. 0x009b,13,changedir,5:12
  481. 0x009f,10,takeitem,6
  482. 0x00a7,17,useitem,6:13
  483. 0x0113,19,useskilltoid,7:9:15
  484. 0x0116,19,useskilltopos,7:9:15:17
  485. 0x0190,99,useskilltoposinfo,7:9:15:17:19
  486. //2004-07-26aSakexe
  487. packet_ver: 8
  488. 0x0072,14,dropitem,5:12
  489. 0x007e,33,wanttoconnection,12:18:24:28:32
  490. 0x0085,20,useskilltoid,7:12:16
  491. 0x0089,15,getcharnamerequest,11
  492. 0x008c,23,useskilltopos,3:6:17:21
  493. 0x0094,10,takeitem,6
  494. 0x009b,6,walktoxy,3
  495. 0x009f,13,changedir,5:12
  496. 0x00a2,103,useskilltoposinfo,3:6:17:21:23
  497. 0x00a7,12,solvecharname,8
  498. 0x00f3,-1,globalmessage,2:4
  499. 0x00f5,17,useitem,6:12
  500. 0x00f7,10,ticksend,6
  501. 0x0113,16,movetokafra,5:12
  502. 0x0116,2,closekafra,0
  503. 0x0190,26,movefromkafra,10:22
  504. 0x0193,9,actionrequest,3:8
  505. //2004-08-09aSakexe
  506. packet_ver: 9
  507. 0x0072,17,dropitem,8:15
  508. 0x007e,37,wanttoconnection,9:21:28:32:36
  509. 0x0085,26,useskilltoid,11:18:22
  510. 0x0089,12,getcharnamerequest,8
  511. 0x008c,40,useskilltopos,5:15:29:38
  512. 0x0094,13,takeitem,9
  513. 0x009b,15,walktoxy,12
  514. 0x009f,12,changedir,7:11
  515. 0x00a2,120,useskilltoposinfo,5:15:29:38:40
  516. 0x00a7,11,solvecharname,7
  517. 0x00f5,24,useitem,9:20
  518. 0x00f7,13,ticksend,9
  519. 0x0113,23,movetokafra,5:19
  520. 0x0190,26,movefromkafra,11:22
  521. 0x0193,18,actionrequest,7:17
  522. //2004-08-16aSakexe
  523. 0x0212,26,rc,2
  524. 0x0213,26,check,2
  525. 0x0214,42
  526. //2004-08-17aSakexe
  527. 0x020f,10,pvpinfo,2:6
  528. 0x0210,22
  529. //2004-09-06aSakexe
  530. packet_ver: 10
  531. 0x0072,20,useitem,9:20
  532. 0x007e,19,movetokafra,3:15
  533. 0x0085,23,actionrequest,9:22
  534. 0x0089,9,walktoxy,6
  535. 0x008c,105,useskilltoposinfo,10:14:18:23:25
  536. 0x0094,17,dropitem,6:15
  537. 0x009b,14,getcharnamerequest,10
  538. 0x009f,-1,globalmessage,2:4
  539. 0x00a2,14,solvecharname,10
  540. 0x00a7,25,useskilltopos,10:14:18:23
  541. 0x00f3,10,changedir,4:9
  542. 0x00f5,34,wanttoconnection,7:15:25:29:33
  543. 0x00f7,2,closekafra,0
  544. 0x0113,11,takeitem,7
  545. 0x0116,11,ticksend,7
  546. 0x0190,22,useskilltoid,9:15:18
  547. 0x0193,17,movefromkafra,3:13
  548. //2004-09-20aSakexe
  549. packet_ver: 11
  550. 0x0072,18,useitem,10:14
  551. 0x007e,25,movetokafra,6:21
  552. 0x0085,9,actionrequest,3:8
  553. 0x0089,14,walktoxy,11
  554. 0x008c,109,useskilltoposinfo,16:20:23:27:29
  555. 0x0094,19,dropitem,12:17
  556. 0x009b,10,getcharnamerequest,6
  557. 0x00a2,10,solvecharname,6
  558. 0x00a7,29,useskilltopos,6:20:23:27
  559. 0x00f3,18,changedir,8:17
  560. 0x00f5,32,wanttoconnection,10:17:23:27:31
  561. 0x0113,14,takeitem,10
  562. 0x0116,14,ticksend,10
  563. 0x0190,14,useskilltoid,4:7:10
  564. 0x0193,12,movefromkafra,4:8
  565. //2004-10-05aSakexe
  566. packet_ver: 12
  567. 0x0072,17,useitem,6:13
  568. 0x007e,16,movetokafra,5:12
  569. 0x0089,6,walktoxy,3
  570. 0x008c,103,useskilltoposinfo,2:6:17:21:23
  571. 0x0094,14,dropitem,5:12
  572. 0x009b,15,getcharnamerequest,11
  573. 0x00a2,12,solvecharname,8
  574. 0x00a7,23,useskilltopos,3:6:17:21
  575. 0x00f3,13,changedir,5:12
  576. 0x00f5,33,wanttoconnection,12:18:24:28:32
  577. 0x0113,10,takeitem,6
  578. 0x0116,10,ticksend,6
  579. 0x0190,20,useskilltoid,7:12:16
  580. 0x0193,26,movefromkafra,10:22
  581. //2004-10-25aSakexe
  582. packet_ver: 13
  583. 0x0072,13,useitem,5:9
  584. 0x007e,13,movetokafra,6:9
  585. 0x0085,15,actionrequest,4:14
  586. 0x008c,108,useskilltoposinfo,6:9:23:26:28
  587. 0x0094,12,dropitem,6:10
  588. 0x009b,10,getcharnamerequest,6
  589. 0x00a2,16,solvecharname,12
  590. 0x00a7,28,useskilltopos,6:9:23:26
  591. 0x00f3,15,changedir,6:14
  592. 0x00f5,29,wanttoconnection,5:14:20:24:28
  593. 0x0113,9,takeitem,5
  594. 0x0116,9,ticksend,5
  595. 0x0190,26,useskilltoid,4:10:22
  596. 0x0193,22,movefromkafra,12:18
  597. //2004-11-01aSakexe
  598. 0x0084,-1
  599. 0x0215,6
  600. //2004-11-08aSakexe
  601. 0x0084,2
  602. 0x0216,6
  603. 0x0217,2,blacksmith,0
  604. 0x0218,2,alchemist,0
  605. 0x0219,282
  606. 0x021a,282
  607. 0x021b,10
  608. 0x021c,10
  609. //2004-11-15aSakexe
  610. 0x021d,6,lesseffect,2
  611. //2004-11-29aSakexe
  612. packet_ver: 14
  613. 0x0072,22,useskilltoid,8:12:18
  614. 0x007e,30,useskilltopos,4:9:22:28
  615. 0x0085,-1,globalmessage,2:4
  616. 0x0089,7,ticksend,3
  617. 0x008c,13,getcharnamerequest,9
  618. 0x0094,14,movetokafra,4:10
  619. 0x009b,2,closekafra,0
  620. 0x009f,18,actionrequest,6:17
  621. 0x00a2,7,takeitem,3
  622. 0x00a7,7,walktoxy,4
  623. 0x00f3,8,changedir,3:7
  624. 0x00f5,29,wanttoconnection,3:10:20:24:28
  625. 0x00f7,14,solvecharname,10
  626. 0x0113,110,useskilltoposinfo,4:9:22:28:30
  627. 0x0116,12,dropitem,4:10
  628. 0x0190,15,useitem,3:11
  629. 0x0193,21,movefromkafra,4:17
  630. 0x0221,-1
  631. 0x0222,6,weaponrefine,2
  632. 0x0223,8
  633. //2004-12-13aSakexe
  634. //skipped: many packets being set to -1
  635. 0x0066,3
  636. 0x0070,3
  637. 0x01ca,3
  638. 0x021e,6
  639. 0x021f,66
  640. 0x0220,10
  641. //2005-01-10bSakexe
  642. packet_ver: 15
  643. 0x0072,26,useskilltoid,8:16:22
  644. 0x007e,114,useskilltoposinfo,10:18:22:32:34
  645. 0x0085,23,changedir,12:22
  646. 0x0089,9,ticksend,5
  647. 0x008c,8,getcharnamerequest,4
  648. 0x0094,20,movetokafra,10:16
  649. 0x009b,32,wanttoconnection,3:12:23:27:31
  650. 0x009f,17,useitem,5:13
  651. 0x00a2,11,solvecharname,7
  652. 0x00a7,13,walktoxy,10
  653. 0x00f3,-1,globalmessage,2:4
  654. 0x00f5,9,takeitem,5
  655. 0x00f7,21,movefromkafra,11:17
  656. 0x0113,34,useskilltopos,10:18:22:32
  657. 0x0116,20,dropitem,15:18
  658. 0x0190,20,actionrequest,9:19
  659. 0x0193,2,closekafra,0
  660. //2005-03-28aSakexe
  661. 0x0224,10
  662. 0x0225,2,taekwon,0
  663. 0x0226,282
  664. //2005-04-04aSakexe
  665. 0x0227,18
  666. 0x0228,18
  667. //2005-04-11aSakexe
  668. 0x0229,15
  669. 0x022a,58
  670. 0x022b,57
  671. 0x022c,64
  672. //2005-04-25aSakexe
  673. 0x022d,5,hommenu,2:4
  674. 0x0232,9,hommoveto,2:6
  675. 0x0233,11,homattack,2:6:10
  676. 0x0234,6,hommovetomaster,2
  677. //2005-05-09aSakexe
  678. packet_ver: 16
  679. 0x0072,25,useskilltoid,6:10:21
  680. 0x007e,102,useskilltoposinfo,5:9:12:20:22
  681. 0x0085,11,changedir,7:10
  682. 0x0089,8,ticksend,4
  683. 0x008c,11,getcharnamerequest,7
  684. 0x0094,14,movetokafra,7:10
  685. 0x009b,26,wanttoconnection,4:9:17:21:25
  686. 0x009f,14,useitem,4:10
  687. 0x00a2,15,solvecharname,11
  688. 0x00a7,8,walktoxy,5
  689. 0x00f5,8,takeitem,4
  690. 0x00f7,22,movefromkafra,14:18
  691. 0x0113,22,useskilltopos,5:9:12:20
  692. 0x0116,10,dropitem,5:8
  693. 0x0190,19,actionrequest,5:18
  694. //2005-05-23aSakexe
  695. 0x022e,69
  696. 0x0230,12
  697. //2005-05-30aSakexe
  698. 0x022e,71
  699. 0x0235,-1
  700. 0x0236,10
  701. 0x0237,2,rankingpk,0
  702. 0x0238,282
  703. //2005-05-31aSakexe
  704. 0x0216,2
  705. 0x0239,11
  706. //2005-06-08aSakexe
  707. 0x0216,6
  708. 0x0217,2,blacksmith,0
  709. 0x022f,5
  710. 0x0231,26,changehomunculusname,0
  711. 0x023a,4
  712. 0x023b,36,storagepassword,2:4:20
  713. 0x023c,6
  714. //2005-06-22aSakexe
  715. 0x022e,71
  716. //2005-06-28aSakexe
  717. packet_ver: 17
  718. 0x0072,34,useskilltoid,6:17:30
  719. 0x007e,113,useskilltoposinfo,12:15:18:31:33
  720. 0x0085,17,changedir,8:16
  721. 0x0089,13,ticksend,9
  722. 0x008c,8,getcharnamerequest,4
  723. 0x0094,31,movetokafra,16:27
  724. 0x009b,32,wanttoconnection,9:15:23:27:31
  725. 0x009f,19,useitem,9:15
  726. 0x00a2,9,solvecharname,5
  727. 0x00a7,11,walktoxy,8
  728. 0x00f5,13,takeitem,9
  729. 0x00f7,18,movefromkafra,11:14
  730. 0x0113,33,useskilltopos,12:15:18:31
  731. 0x0116,12,dropitem,3:10
  732. 0x0190,24,actionrequest,11:23
  733. 0x0216,-1
  734. 0x023d,-1
  735. 0x023e,4
  736. //2005-07-18aSakexe
  737. packet_ver: 18
  738. 0x0072,19,useskilltoid,5:11:15
  739. 0x007e,110,useskilltoposinfo,9:15:23:28:30
  740. 0x0085,11,changedir,6:10
  741. 0x0089,7,ticksend,3
  742. 0x008c,11,getcharnamerequest,7
  743. 0x0094,21,movetokafra,12:17
  744. 0x009b,31,wanttoconnection,3:13:22:26:30
  745. 0x009f,12,useitem,3:8
  746. 0x00a2,18,solvecharname,14
  747. 0x00a7,15,walktoxy,12
  748. 0x00f5,7,takeitem,3
  749. 0x00f7,13,movefromkafra,5:9
  750. 0x0113,30,useskilltopos,9:15:23:28
  751. 0x0116,12,dropitem,6:10
  752. 0x0190,21,actionrequest,5:20
  753. 0x0216,6
  754. 0x023f,2,mailrefresh,0
  755. 0x0240,8
  756. 0x0241,6,mailread,2
  757. 0x0242,-1
  758. 0x0243,6,maildelete,2
  759. 0x0244,6,mailgetattach,2
  760. 0x0245,7
  761. 0x0246,4,mailwinopen,2
  762. 0x0247,8,mailsetattach,2:4
  763. 0x0248,68
  764. 0x0249,3
  765. 0x024a,70
  766. 0x024b,4,auctioncancelreg,0
  767. 0x024c,8,auctionsetitem,0
  768. 0x024d,14
  769. 0x024e,6,auctioncancel,0
  770. 0x024f,10,auctionbid,0
  771. 0x0250,3
  772. 0x0251,2
  773. 0x0252,-1
  774. //2005-07-19bSakexe
  775. packet_ver: 19
  776. 0x0072,34,useskilltoid,6:17:30
  777. 0x007e,113,useskilltoposinfo,12:15:18:31:33
  778. 0x0085,17,changedir,8:16
  779. 0x0089,13,ticksend,9
  780. 0x008c,8,getcharnamerequest,4
  781. 0x0094,31,movetokafra,16:27
  782. 0x009b,32,wanttoconnection,9:15:23:27:31
  783. 0x009f,19,useitem,9:15
  784. 0x00a2,9,solvecharname,5
  785. 0x00a7,11,walktoxy,8
  786. 0x00f5,13,takeitem,9
  787. 0x00f7,18,movefromkafra,11:14
  788. 0x0113,33,useskilltopos,12:15:18:31
  789. 0x0116,12,dropitem,3:10
  790. 0x0190,24,actionrequest,11:23
  791. //2005-08-01aSakexe
  792. 0x0245,3
  793. 0x0251,4
  794. //2005-08-08aSakexe
  795. 0x024d,12,auctionregister,0
  796. 0x024e,4
  797. //2005-08-17aSakexe
  798. 0x0253,3
  799. 0x0254,3,feelsaveok,0
  800. //2005-08-29aSakexe
  801. 0x0240,-1
  802. 0x0248,-1,mailsend,2:4:28:68
  803. 0x0255,5
  804. 0x0256,-1
  805. 0x0257,8
  806. //2005-09-12bSakexe
  807. 0x0256,5
  808. 0x0258,2
  809. 0x0259,3
  810. //2005-10-10aSakexe
  811. 0x020e,32
  812. 0x025a,-1
  813. 0x025b,6,cooking,0
  814. //2005-10-13aSakexe
  815. 0x007a,6
  816. 0x0251,32
  817. 0x025c,4,auctionbuysell,0
  818. //2005-10-17aSakexe
  819. 0x007a,58
  820. 0x025d,6,auctionclose,0
  821. 0x025e,4
  822. //2005-10-24aSakexe
  823. 0x025f,6
  824. 0x0260,6
  825. //2005-11-07aSakexe
  826. 0x024e,6,auctioncancel,0
  827. 0x0251,34,auctionsearch,0
  828. //2006-01-09aSakexe
  829. 0x0261,11
  830. 0x0262,11
  831. 0x0263,11
  832. 0x0264,20
  833. 0x0265,20
  834. 0x0266,30
  835. 0x0267,4
  836. 0x0268,4
  837. 0x0269,4
  838. 0x026a,4
  839. 0x026b,4
  840. 0x026c,4
  841. 0x026d,4
  842. 0x026f,2
  843. 0x0270,2
  844. 0x0271,38
  845. 0x0272,44
  846. //2006-01-26aSakexe
  847. 0x0271,40
  848. //2006-03-06aSakexe
  849. 0x0273,6
  850. 0x0274,8
  851. //2006-03-13aSakexe
  852. 0x0273,30,mailreturn,2:6
  853. //2006-03-27aSakexe
  854. packet_ver: 20
  855. 0x0072,26,useskilltoid,11:18:22
  856. 0x007e,120,useskilltoposinfo,5:15:29:38:40
  857. 0x0085,12,changedir,7:11
  858. //0x0089,13,ticksend,9
  859. 0x008c,12,getcharnamerequest,8
  860. 0x0094,23,movetokafra,5:19
  861. 0x009b,37,wanttoconnection,9:21:28:32:36
  862. 0x009f,24,useitem,9:20
  863. 0x00a2,11,solvecharname,7
  864. 0x00a7,15,walktoxy,12
  865. 0x00f5,13,takeitem,9
  866. 0x00f7,26,movefromkafra,11:22
  867. 0x0113,40,useskilltopos,5:15:29:38
  868. 0x0116,17,dropitem,8:15
  869. 0x0190,18,actionrequest,7:17
  870. //2006-10-23aSakexe
  871. 0x006d,110
  872. //2006-04-24aSakexe to 2007-01-02aSakexe
  873. 0x023e,8
  874. 0x0277,84
  875. 0x0278,2
  876. 0x0279,2
  877. 0x027a,-1
  878. 0x027b,14
  879. 0x027c,60
  880. 0x027d,62
  881. 0x027e,-1
  882. 0x027f,8
  883. 0x0280,12
  884. 0x0281,4
  885. 0x0282,284
  886. 0x0283,6
  887. 0x0284,14
  888. 0x0285,6
  889. 0x0286,4
  890. 0x0287,-1
  891. 0x0288,6
  892. 0x0289,8
  893. 0x028a,18
  894. 0x028b,-1
  895. 0x028c,46
  896. 0x028d,34
  897. 0x028e,4
  898. 0x028f,6
  899. 0x0290,4
  900. 0x0291,4
  901. 0x0292,2,autorevive,0
  902. 0x0293,70
  903. 0x0294,10
  904. 0x0295,-1
  905. 0x0296,-1
  906. 0x0297,-1
  907. 0x0298,8
  908. 0x0299,6
  909. 0x029a,27
  910. 0x029c,66
  911. 0x029d,-1
  912. 0x029e,11
  913. 0x029f,3,mermenu,0
  914. 0x02a0,-1
  915. 0x02a1,-1
  916. 0x02a2,8
  917. //2007-01-08aSakexe
  918. packet_ver: 21
  919. 0x0072,30,useskilltoid,10:14:26
  920. 0x007e,120,useskilltoposinfo,10:19:23:38:40
  921. 0x0085,14,changedir,10:13
  922. 0x0089,11,ticksend,7
  923. 0x008c,17,getcharnamerequest,13
  924. 0x0094,17,movetokafra,4:13
  925. 0x009b,35,wanttoconnection,7:21:26:30:34
  926. 0x009f,21,useitem,7:17
  927. 0x00a2,10,solvecharname,6
  928. 0x00a7,8,walktoxy,5
  929. 0x00f5,11,takeitem,7
  930. 0x00f7,15,movefromkafra,3:11
  931. 0x0113,40,useskilltopos,10:19:23:38
  932. 0x0116,19,dropitem,11:17
  933. 0x0190,10,actionrequest,4:9
  934. //2007-01-22aSakexe
  935. 0x02a3,18
  936. 0x02a4,2
  937. //2007-01-29aSakexe
  938. 0x029b,72
  939. 0x02a3,-1
  940. 0x02a4,-1
  941. 0x02a5,8
  942. // 2007-02-05aSakexe
  943. 0x02aa,4
  944. 0x02ab,36
  945. 0x02ac,6
  946. //2007-02-12aSakexe
  947. packet_ver: 22
  948. 0x0072,25,useskilltoid,6:10:21
  949. 0x007e,102,useskilltoposinfo,5:9:12:20:22
  950. 0x0085,11,changedir,7:10
  951. 0x0089,8,ticksend,4
  952. 0x008c,11,getcharnamerequest,7
  953. 0x0094,14,movetokafra,7:10
  954. 0x009b,26,wanttoconnection,4:9:17:21:25
  955. 0x009f,14,useitem,4:10
  956. 0x00a2,15,solvecharname,11
  957. //0x00a7,8,walktoxy,5
  958. 0x00f5,8,takeitem,4
  959. 0x00f7,22,movefromkafra,14:18
  960. 0x0113,22,useskilltopos,5:9:12:20
  961. 0x0116,10,dropitem,5:8
  962. 0x0190,19,actionrequest,5:18
  963. //2007-05-07aSakexe
  964. 0x01fd,15,repairitem,2
  965. //2007-02-27aSakexe to 2007-10-02aSakexe
  966. 0x0288,10,cashshopbuy,2:4:6
  967. 0x0289,12
  968. 0x02a6,22
  969. 0x02a7,22
  970. 0x02a8,162
  971. 0x02a9,58
  972. 0x02ad,8
  973. 0x02b0,85
  974. 0x02b1,-1
  975. 0x02b2,-1
  976. 0x02b3,107
  977. 0x02b4,6
  978. 0x02b5,-1
  979. 0x02b6,7,queststate,2:6
  980. 0x02b7,7
  981. 0x02b8,22
  982. 0x02b9,191
  983. 0x02ba,11,hotkey,2:4:5:9
  984. 0x02bb,8
  985. 0x02bc,6
  986. 0x02bf,10
  987. 0x02c0,2
  988. 0x02c1,-1
  989. 0x02c2,-1
  990. 0x02c4,26,partyinvite2,2
  991. 0x02c5,30
  992. 0x02c6,30
  993. 0x02c7,7,replypartyinvite2,2:6
  994. 0x02c8,3
  995. 0x02c9,3
  996. 0x02ca,3
  997. 0x02cb,20
  998. 0x02cc,4
  999. 0x02cd,26
  1000. 0x02ce,10
  1001. 0x02cf,6
  1002. 0x02d0,-1
  1003. 0x02d1,-1
  1004. 0x02d2,-1
  1005. 0x02d3,4
  1006. 0x02d4,29
  1007. 0x02d5,2
  1008. 0x02d6,6,viewplayerequip,2
  1009. 0x02d7,-1
  1010. 0x02d8,10,equiptickbox,6
  1011. 0x02d9,10
  1012. 0x02da,3
  1013. 0x02db,-1,battlechat,2:4
  1014. 0x02dc,-1
  1015. 0x02dd,32
  1016. 0x02de,6
  1017. 0x02df,36
  1018. 0x02e0,34
  1019. //2007-10-23aSakexe
  1020. 0x02cb,65
  1021. 0x02cd,71
  1022. //2007-11-06aSakexe
  1023. 0x0078,55
  1024. 0x007c,42
  1025. 0x022c,65
  1026. 0x029b,80
  1027. //2007-11-13aSakexe
  1028. 0x02e1,33
  1029. //2007-11-20aSakexe
  1030. //0x01df,10 <- ???
  1031. 0x02e2,14
  1032. 0x02e3,25
  1033. 0x02e4,8
  1034. 0x02e5,8
  1035. 0x02e6,6
  1036. //2007-11-27aSakexe
  1037. 0x02e7,-1
  1038. //2008-01-02aSakexe
  1039. 0x01df,6,gmreqaccname,2
  1040. 0x02e8,-1
  1041. 0x02e9,-1
  1042. 0x02ea,-1
  1043. 0x02eb,13
  1044. 0x02ec,67
  1045. 0x02ed,59
  1046. 0x02ee,60
  1047. 0x02ef,8
  1048. //2008-03-18aSakexe
  1049. 0x02bf,-1
  1050. 0x02c0,-1
  1051. 0x02f0,10
  1052. 0x02f1,2,progressbar,0
  1053. 0x02f2,2
  1054. //2008-03-25bSakexe
  1055. 0x02f3,-1
  1056. 0x02f4,-1
  1057. 0x02f5,-1
  1058. 0x02f6,-1
  1059. 0x02f7,-1
  1060. 0x02f8,-1
  1061. 0x02f9,-1
  1062. 0x02fa,-1
  1063. 0x02fb,-1
  1064. 0x02fc,-1
  1065. 0x02fd,-1
  1066. 0x02fe,-1
  1067. 0x02ff,-1
  1068. 0x0300,-1
  1069. //2008-04-01aSakexe
  1070. 0x0301,-1
  1071. 0x0302,-1
  1072. 0x0303,-1
  1073. 0x0304,-1
  1074. 0x0305,-1
  1075. 0x0306,-1
  1076. 0x0307,-1
  1077. 0x0308,-1
  1078. 0x0309,-1
  1079. 0x030a,-1
  1080. 0x030b,-1
  1081. 0x030c,-1
  1082. 0x030d,-1
  1083. 0x030e,-1
  1084. 0x030f,-1
  1085. 0x0310,-1
  1086. 0x0311,-1
  1087. 0x0312,-1
  1088. 0x0313,-1
  1089. 0x0314,-1
  1090. 0x0315,-1
  1091. 0x0316,-1
  1092. 0x0317,-1
  1093. 0x0318,-1
  1094. 0x0319,-1
  1095. 0x031a,-1
  1096. 0x031b,-1
  1097. 0x031c,-1
  1098. 0x031d,-1
  1099. 0x031e,-1
  1100. 0x031f,-1
  1101. 0x0320,-1
  1102. 0x0321,-1
  1103. 0x0322,-1
  1104. 0x0323,-1
  1105. 0x0324,-1
  1106. 0x0325,-1
  1107. 0x0326,-1
  1108. 0x0327,-1
  1109. 0x0328,-1
  1110. 0x0329,-1
  1111. 0x032a,-1
  1112. 0x032b,-1
  1113. 0x032c,-1
  1114. 0x032d,-1
  1115. 0x032e,-1
  1116. 0x032f,-1
  1117. 0x0330,-1
  1118. 0x0331,-1
  1119. 0x0332,-1
  1120. 0x0333,-1
  1121. 0x0334,-1
  1122. 0x0335,-1
  1123. 0x0336,-1
  1124. 0x0337,-1
  1125. 0x0338,-1
  1126. 0x0339,-1
  1127. 0x033a,-1
  1128. 0x033b,-1
  1129. 0x033c,-1
  1130. 0x033d,-1
  1131. 0x033e,-1
  1132. 0x033f,-1
  1133. 0x0340,-1
  1134. 0x0341,-1
  1135. 0x0342,-1
  1136. 0x0343,-1
  1137. 0x0344,-1
  1138. 0x0345,-1
  1139. 0x0346,-1
  1140. 0x0347,-1
  1141. 0x0348,-1
  1142. 0x0349,-1
  1143. 0x034a,-1
  1144. 0x034b,-1
  1145. 0x034c,-1
  1146. 0x034d,-1
  1147. 0x034e,-1
  1148. 0x034f,-1
  1149. 0x0350,-1
  1150. 0x0351,-1
  1151. 0x0352,-1
  1152. 0x0353,-1
  1153. 0x0354,-1
  1154. 0x0355,-1
  1155. 0x0356,-1
  1156. 0x0357,-1
  1157. 0x0358,-1
  1158. 0x0359,-1
  1159. 0x035a,-1
  1160. //2008-05-27aSakexe
  1161. 0x035b,-1
  1162. 0x035c,2
  1163. 0x035d,-1
  1164. 0x035e,2
  1165. 0x035f,-1
  1166. 0x0389,-1
  1167. //2008-08-20aSakexe
  1168. 0x040c,-1
  1169. 0x040d,-1
  1170. 0x040e,-1
  1171. 0x040f,-1
  1172. 0x0410,-1
  1173. 0x0411,-1
  1174. 0x0412,-1
  1175. 0x0413,-1
  1176. 0x0414,-1
  1177. 0x0415,-1
  1178. 0x0416,-1
  1179. 0x0417,-1
  1180. 0x0418,-1
  1181. 0x0419,-1
  1182. 0x041a,-1
  1183. 0x041b,-1
  1184. 0x041c,-1
  1185. 0x041d,-1
  1186. 0x041e,-1
  1187. 0x041f,-1
  1188. 0x0420,-1
  1189. 0x0421,-1
  1190. 0x0422,-1
  1191. 0x0423,-1
  1192. 0x0424,-1
  1193. 0x0425,-1
  1194. 0x0426,-1
  1195. 0x0427,-1
  1196. 0x0428,-1
  1197. 0x0429,-1
  1198. 0x042a,-1
  1199. 0x042b,-1
  1200. 0x042c,-1
  1201. 0x042d,-1
  1202. 0x042e,-1
  1203. 0x042f,-1
  1204. 0x0430,-1
  1205. 0x0431,-1
  1206. 0x0432,-1
  1207. 0x0433,-1
  1208. 0x0434,-1
  1209. 0x0435,-1
  1210. //2008-09-10aSakexe
  1211. packet_ver: 23
  1212. 0x0436,19,wanttoconnection,2:6:10:14:18
  1213. 0x0437,7,actionrequest,2:6
  1214. 0x0438,10,useskilltoid,2:4:6
  1215. 0x0439,8,useitem,2:4
  1216. //2008-11-13aSakexe
  1217. 0x043d,8
  1218. 0x043e,-1
  1219. 0x043f,8
  1220. //2008-11-26aSakexe
  1221. 0x01a2,37
  1222. 0x0440,10
  1223. 0x0441,4
  1224. //2008-12-10aSakexe
  1225. 0x0442,-1
  1226. 0x0443,8,skillselectmenu,2:6
  1227. //2009-01-14aSakexe
  1228. 0x043f,25
  1229. 0x0444,-1
  1230. 0x0445,10
  1231. //2009-02-18aSakexe
  1232. 0x0446,14
  1233. //2009-02-25aSakexe
  1234. 0x0448,-1
  1235. //2009-03-30aSakexe
  1236. 0x0449,4
  1237. //2009-04-08aSakexe
  1238. 0x02a6,-1
  1239. 0x02a7,-1
  1240. 0x044a,6
  1241. //Renewal Clients
  1242. //2008-08-27aRagexeRE
  1243. packet_ver: 24
  1244. 0x0072,22,useskilltoid,9:15:18
  1245. 0x007c,44
  1246. 0x007e,105,useskilltoposinfo,10:14:18:23:25
  1247. 0x0085,10,changedir,4:9
  1248. 0x0089,11,ticksend,7
  1249. 0x008c,14,getcharnamerequest,10
  1250. 0x0094,19,movetokafra,3:15
  1251. 0x009b,34,wanttoconnection,7:15:25:29:33
  1252. 0x009f,20,useitem,7:20
  1253. 0x00a2,14,solvecharname,10
  1254. 0x00a7,9,walktoxy,6
  1255. 0x00f5,11,takeitem,7
  1256. 0x00f7,17,movefromkafra,3:13
  1257. 0x0113,25,useskilltopos,10:14:18:23
  1258. 0x0116,17,dropitem,6:15
  1259. 0x0190,23,actionrequest,9:22
  1260. 0x02e2,20
  1261. 0x02e3,22
  1262. 0x02e4,11
  1263. 0x02e5,9
  1264. //2008-09-10aRagexeRE
  1265. packet_ver: 25
  1266. 0x0436,19,wanttoconnection,2:6:10:14:18
  1267. 0x0437,7,actionrequest,2:6
  1268. 0x0438,10,useskilltoid,2:4:6
  1269. 0x0439,8,useitem,2:4
  1270. //2008-11-12aRagexeRE
  1271. 0x043d,8
  1272. //0x043e,-1
  1273. 0x043f,8
  1274. //2008-12-17aRagexeRE
  1275. 0x01a2,37
  1276. //0x0440,10
  1277. //0x0441,4
  1278. //0x0442,8
  1279. //0x0443,8
  1280. //2008-12-17bRagexeRE
  1281. 0x006d,114
  1282. //2009-01-21aRagexeRE
  1283. 0x043f,25
  1284. //0x0444,-1
  1285. //0x0445,10
  1286. //2009-02-18aRagexeRE
  1287. //0x0446,14
  1288. //2009-02-26cRagexeRE
  1289. //0x0448,-1
  1290. //2009-04-01aRagexeRE
  1291. //0x0449,4
  1292. //2009-05-14aRagexeRE
  1293. //0x044b,2
  1294. //2009-05-20aRagexeRE
  1295. //0x07d0,6
  1296. //0x07d1,2
  1297. //0x07d2,-1
  1298. //0x07d3,4
  1299. //0x07d4,4
  1300. //0x07d5,4
  1301. //0x07d6,4
  1302. //0x0447,2
  1303. //2009-06-03aRagexeRE
  1304. 0x07d7,8,partychangeoption,2:6:7
  1305. 0x07d8,8
  1306. 0x07d9,254
  1307. 0x07da,6,partychangeleader,2
  1308. //2009-06-10aRagexeRE
  1309. //0x07db,8
  1310. //2009-06-17aRagexeRE
  1311. 0x07d9,268
  1312. //0x07dc,6
  1313. //0x07dd,54
  1314. //0x07de,30
  1315. //0x07df,54
  1316. //2009-07-01aRagexeRE
  1317. //0x0275,37
  1318. //0x0276,-1
  1319. //2009-07-08aRagexeRE
  1320. //0x07e0,58
  1321. //2009-07-15aRagexeRE
  1322. 0x07e1,15
  1323. //2009-08-05aRagexeRE
  1324. 0x07e2,8
  1325. //2009-08-18aRagexeRE
  1326. 0x07e3,6
  1327. 0x07e4,-1,itemlistwindowselected,2:4:8
  1328. 0x07e6,8
  1329. //2009-08-25aRagexeRE
  1330. //0x07e6,28
  1331. 0x07e7,5
  1332. //2009-09-22aRagexeRE
  1333. 0x07e5,8
  1334. 0x07e6,8
  1335. 0x07e7,32
  1336. 0x07e8,-1
  1337. 0x07e9,5
  1338. //2009-09-29aRagexeRE
  1339. //0x07ea,2
  1340. //0x07eb,-1
  1341. //0x07ec,6
  1342. //0x07ed,8
  1343. //0x07ee,6
  1344. //0x07ef,8
  1345. //0x07f0,4
  1346. //0x07f2,4
  1347. //0x07f3,3
  1348. //2009-10-06aRagexeRE
  1349. //0x07ec,8
  1350. //0x07ed,10
  1351. //0x07f0,8
  1352. //0x07f1,15
  1353. //0x07f2,6
  1354. //0x07f3,4
  1355. //0x07f4,3
  1356. //2009-10-27aRagexeRE
  1357. 0x07f5,6,gmreqaccname,2
  1358. 0x07f6,14
  1359. //2009-11-03aRagexeRE
  1360. 0x07f7,-1
  1361. 0x07f8,-1
  1362. 0x07f9,-1
  1363. //2009-11-17aRagexeRE
  1364. 0x07fa,8
  1365. //2009-11-24aRagexeRE
  1366. 0x07fb,25
  1367. //2009-12-01aRagexeRE
  1368. //0x07fc,10
  1369. //0x07fd,-1
  1370. 0x07fe,26
  1371. //0x07ff,-1
  1372. //2009-12-15aRagexeRE
  1373. 0x0800,-1
  1374. //0x0801,-1
  1375. //2009-12-22aRagexeRE
  1376. 0x0802,18,bookingregreq,2:4:6 // Booking System
  1377. 0x0803,4
  1378. 0x0804,8 // Booking System
  1379. 0x0805,-1
  1380. 0x0806,4,bookingdelreq,2 // Booking System
  1381. //0x0807,2
  1382. 0x0808,4 // Booking System
  1383. //0x0809,14
  1384. //0x080A,50
  1385. //0x080B,18
  1386. //0x080C,6
  1387. //2009-12-29aRagexeRE
  1388. 0x0804,14,bookingsearchreq,2:4:6:8:12 // Booking System
  1389. 0x0806,2,bookingdelreq,0 // Booking System
  1390. 0x0807,4
  1391. 0x0808,14,bookingupdatereq,2 // Booking System
  1392. 0x0809,50
  1393. 0x080A,18
  1394. 0x080B,6 // Booking System
  1395. //2010-01-05aRagexeRE
  1396. 0x0801,-1,purchasereq2,2:4:8:12
  1397. //2010-01-26aRagexeRE
  1398. //0x080C,2
  1399. //0x080D,3
  1400. 0x080E,14
  1401. //2010-02-09aRagexeRE
  1402. //0x07F0,6
  1403. //2010-02-23aRagexeRE
  1404. 0x080F,20
  1405. //2010-03-03aRagexeRE
  1406. 0x0810,3
  1407. 0x0811,-1,reqopenbuyingstore,2:4:8:9:89
  1408. //0x0812,86
  1409. //0x0813,6
  1410. //0x0814,6
  1411. //0x0815,-1
  1412. //0x0817,-1
  1413. //0x0818,6
  1414. //0x0819,4
  1415. //2010-03-09aRagexeRE
  1416. 0x0813,-1
  1417. //0x0814,2
  1418. //0x0815,6
  1419. 0x0816,6
  1420. 0x0818,-1
  1421. //0x0819,10
  1422. //0x081A,4
  1423. //0x081B,4
  1424. //0x081C,6
  1425. 0x081d,22
  1426. 0x081e,8
  1427. //2010-03-23aRagexeRE
  1428. //0x081F,-1
  1429. //2010-04-06aRagexeRE
  1430. //0x081A,6
  1431. //2010-04-13aRagexeRE
  1432. //0x081A,10
  1433. 0x0820,11
  1434. //0x0821,2
  1435. //0x0822,9
  1436. //0x0823,-1
  1437. //2010-04-14dRagexeRE
  1438. //0x081B,8
  1439. //2010-04-20aRagexeRE
  1440. 0x0812,8
  1441. 0x0814,86
  1442. 0x0815,2,reqclosebuyingstore,0
  1443. 0x0817,6,reqclickbuyingstore,2
  1444. 0x0819,-1,reqtradebuyingstore,2:4:8:12
  1445. 0x081a,4
  1446. 0x081b,10
  1447. 0x081c,10
  1448. 0x0824,6
  1449. //2010-06-01aRagexeRE
  1450. //0x0825,-1
  1451. //0x0826,4
  1452. 0x0835,-1,searchstoreinfo,2:4:5:9:13:14:15
  1453. 0x0836,-1
  1454. 0x0837,3
  1455. //0x0838,3
  1456. //2010-06-08aRagexeRE
  1457. 0x0838,2,searchstoreinfonextpage,0
  1458. 0x083A,4 // Search Stalls Feature
  1459. 0x083B,2,closesearchstoreinfo,0
  1460. 0x083C,12,searchstoreinfolistitemclick,2:6:10
  1461. 0x083D,6
  1462. //2010-06-15aRagexeRE
  1463. //0x083E,26
  1464. //2010-06-22aRagexeRE
  1465. //0x083F,22
  1466. //2010-06-29aRagexeRE
  1467. 0x00AA,9
  1468. //0x07F1,18
  1469. //0x07F2,8
  1470. //0x07F3,6
  1471. //2010-07-01aRagexeRE
  1472. 0x083A,5 // Search Stalls Feature
  1473. //2010-07-13aRagexeRE
  1474. //0x0827,6
  1475. //0x0828,14
  1476. //0x0829,6
  1477. //0x082A,10
  1478. //0x082B,6
  1479. //0x082C,14
  1480. //0x0840,-1
  1481. //0x0841,19
  1482. //2010-07-14aRagexeRE
  1483. //0x841,4
  1484. //2010-08-03aRagexeRE
  1485. 0x0839,66
  1486. 0x0842,6,recall2,2
  1487. 0x0843,6,remove2,2
  1488. //2010-11-24aRagexeRE
  1489. packet_ver: 26
  1490. 0x0288,-1,cashshopbuy,4:8
  1491. 0x0436,19,wanttoconnection,2:6:10:14:18
  1492. 0x035f,5,walktoxy,2
  1493. 0x0360,6,ticksend,2
  1494. 0x0361,5,changedir,2:4
  1495. 0x0362,6,takeitem,2
  1496. 0x0363,6,dropitem,2:4
  1497. 0x0364,8,movetokafra,2:4
  1498. 0x0365,8,movefromkafra,2:4
  1499. 0x0366,10,useskilltopos,2:4:6:8
  1500. 0x0367,90,useskilltoposinfo,2:4:6:8:10
  1501. 0x0368,6,getcharnamerequest,2
  1502. 0x0369,6,solvecharname,2
  1503. 0x0856,-1
  1504. 0x0857,-1
  1505. 0x0858,-1
  1506. 0x0859,-1
  1507. //2011-10-05aRagexeRE
  1508. packet_ver: 27
  1509. 0x0364,5,walktoxy,2
  1510. 0x0817,6,ticksend,2
  1511. 0x0366,5,changedir,2:4
  1512. 0x0815,6,takeitem,2
  1513. 0x0885,6,dropitem,2:4
  1514. 0x0893,8,movetokafra,2:4
  1515. 0x0897,8,movefromkafra,2:4
  1516. 0x0369,10,useskilltopos,2:4:6:8
  1517. 0x08ad,90,useskilltoposinfo,2:4:6:8:10
  1518. 0x088a,6,getcharnamerequest,2
  1519. 0x0838,6,solvecharname,2
  1520. 0x0439,8,useitem,2:4
  1521. // 2011-11-02aRagexe
  1522. packet_ver: 28
  1523. 0x0436,26,friendslistadd,2
  1524. 0x0898,5,hommenu,4
  1525. 0x0281,36,storagepassword,0
  1526. 0x088d,26,partyinvite2,2
  1527. 0x083c,19,wanttoconnection,2:6:10:14:18
  1528. 0x08aa,7,actionrequest,2:6
  1529. 0x02c4,10,useskilltoid,2:4:6
  1530. 0x0811,-1,itemlistwindowselected,2:4:8
  1531. 0x890,8
  1532. 0x08a5,18,bookingregreq,2:4:6
  1533. 0x0835,-1,reqopenbuyingstore,2:4:8:9:89
  1534. 0x089b,2,reqclosebuyingstore,0
  1535. 0x08a1,6,reqclickbuyingstore,2
  1536. 0x089e,-1,reqtradebuyingstore,2:4:8:12
  1537. 0x08ab,-1,searchstoreinfo,2:4:5:9:13:14:15
  1538. 0x088b,2,searchstoreinfonextpage,0
  1539. 0x08a2,12,searchstoreinfolistitemclick,2:6:10
  1540. //2012-03-07fRagexeRE
  1541. 0x086A,19,wanttoconnection,2:6:10:14:18
  1542. 0x0437,5,walktoxy,2
  1543. 0x0887,6,ticksend,2
  1544. 0x0890,5,changedir,2:4
  1545. 0x0865,6,takeitem,2
  1546. 0x02C4,6,dropitem,2:4
  1547. 0x093B,8,movetokafra,2:4
  1548. 0x0963,8,movefromkafra,2:4
  1549. 0x0438,10,useskilltopos,2:4:6:8
  1550. 0x0366,90,useskilltoposinfo,2:4:6:8:10
  1551. 0x096A,6,getcharnamerequest,2
  1552. 0x0368,6,solvecharname,2
  1553. 0x0369,26,friendslistadd,2
  1554. 0x0863,5,hommenu,4
  1555. 0x0861,36,storagepassword,0
  1556. 0x0929,26,partyinvite2,2
  1557. 0x0885,7,actionrequest,2:6
  1558. 0x0889,10,useskilltoid,2:4:6
  1559. 0x0870,-1,itemlistwindowselected,2:4:8
  1560. 0x0926,18,bookingregreq,2:4:6
  1561. 0x0815,-1,reqopenbuyingstore,2:4:8:9:89
  1562. 0x0817,2,reqclosebuyingstore,0
  1563. 0x0360,6,reqclickbuyingstore,2
  1564. 0x0811,-1,reqtradebuyingstore,2:4:8:12
  1565. 0x0884,-1,searchstoreinfo,2:4:5:9:13:14:15
  1566. 0x0835,2,searchstoreinfonextpage,0
  1567. 0x0838,12,searchstoreinfolistitemclick,2:6:10
  1568. 0x0439,8,useitem,2:4
  1569. //Add new packets here
  1570. //packet_ver: 29