packet_db.txt 56 KB

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