packet_db.txt 44 KB

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