packet_interserv.txt 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886
  1. //===== rAthena Documentation ================================
  2. //= Source Documentation
  3. //===== By: ==================================================
  4. //= rAthena Dev Team
  5. //===== Last Updated: ========================================
  6. //= 20140831
  7. //===== Description: =========================================
  8. //= List of all packets used by login-serv (A), char-serv (H),
  9. //= and map-serv (Z) to communicate with each other.
  10. //= See packet_client.txt for communication to client (C).
  11. //============================================================
  12. This file provides information about rAthena's packets, ordered by number.
  13. This assumes knowledge of packet notation, which is detailed in
  14. 'doc/packet_struct_notation.txt'.
  15. The format of this file is as follows:
  16. 1. Notes
  17. 2. Login-Char Packets
  18. 3. Char/Inter Packets
  19. - 3.1 Inter-Map Packets
  20. - 3.2 Char-Map Packets
  21. ============
  22. | 1. Notes |
  23. ============
  24. Currently the max packet size is 0xFFFF (see 'WFIFOSET()' in 'src/common/socket.c').
  25. =========================
  26. | 2. Login-Char Packets |
  27. =========================
  28. 0x2712:
  29. Type: HA
  30. Structure: <cmd>.W <aid>.L <login_id1>.L <login_id2>.L <sex>.B <ip>.L <request_id>.L
  31. index: 0,2,6,10,14,15,19
  32. len: 23
  33. parameter:
  34. - cmd : packet identification (0x2712)
  35. - aid : account identification
  36. - login_id1: unknown @FIXME
  37. - login_id2: unknown @FIXME
  38. - sex: the sex of the account
  39. - ip: the ip of the connection (obsolete)
  40. - request_id: unknown @FIXME
  41. desc:
  42. - Request from char-server to authenticate an account.
  43. 0x2713:
  44. Type: AH
  45. Structure: <cmd>.W <aid>.L <login_id1>.L <login_id2>.L <sex>.B <auth>.B <request_id>.L <version>.L <clienttype>.B
  46. index: 0,2,6,10,14,15,16,20,24
  47. len: 25
  48. parameter:
  49. - cmd : packet identification (0x2713)
  50. - aid : account identification
  51. - login_id1: unknown @FIXME
  52. - login_id2: unknown @FIXME
  53. - sex: the sex of the account
  54. - ok : 1=auth failed, 1=ok
  55. - request_id: unknown @FIXME
  56. - version: client version, (clientinfo version)
  57. - clienttype: unknown @FIXME
  58. desc:
  59. - Acknowledge the authentication request from char-serv
  60. 0x2714:
  61. Type: HA
  62. Structure: <cmd>.W <user_count>.L
  63. index: 0,2
  64. len: 6
  65. parameter:
  66. - cmd : packet identification (0x2714)
  67. - user_count: number of user present on the char-serv
  68. desc:
  69. - Retrieve the number of user present on a char-serv
  70. 0x2715:
  71. free
  72. 0x2716:
  73. Type: HA
  74. Structure: <cmd>.W <aid>.L
  75. index: 0,2
  76. len: 6
  77. parameter:
  78. - cmd : packet identification (0x2716)
  79. - aid: account identification
  80. desc:
  81. - Request the account information of aid (see 0x2717)
  82. 0x2717
  83. Type: AH
  84. Structure: <cmd>.W <aid>.L <email>.40B <expiration_time>.L <group_id>.B <char_slots>.B <birthdate>.11B <pincode>.5B <pincode_change>.L <isvip>.B <char_vip>.B <MAX_CHAR_BILLING>.B
  85. index: 0,2,6,46,50,51,52,63,68,72,73,74
  86. len: 75
  87. parameter:
  88. - cmd: packet identification (0x2717)
  89. - aid: account identification
  90. - email: email of aid
  91. - expiration_time: unknow @FIXME
  92. - group_id: the group the aid belong too
  93. - char_slots: number of slot available the account have (will be displayed on client)
  94. - birthdate: birthdate of aid
  95. - pincode: current pincode of aid
  96. - pincode_change: new pincode of aid
  97. - isvip: if this aid is currently vip or not
  98. - char_vip: number of charslot that are vip (could only do creation on if you are vip)
  99. - MAX_CHAR_BILLING: number of charslort that are for billing
  100. desc:
  101. - Request account data
  102. 0x2718
  103. Type: AH
  104. Structure: <cmd>.W
  105. index: 0
  106. len: 2
  107. parameter:
  108. - cmd : packet identification (0x2718)
  109. desc:
  110. - Keep alive packet, (confirm we are still connected)
  111. 0x2719:
  112. Type: HA
  113. Structure: <cmd>.W
  114. index: 0,2
  115. len: 2
  116. parameter:
  117. - cmd : packet identification (0x2719)
  118. desc:
  119. - Ping request from char-server
  120. 0x2720:
  121. Type: HA
  122. Structure: <cmd>.W <map_fd>.L <u_fd>.L <u_aid>.L <u_group>.L <account_id>.L
  123. index: 0,2,6,10,14,18
  124. len: 22
  125. parameter:
  126. - cmd : packet identification (0x2720)
  127. - map_fd :
  128. - u_fd :
  129. - u_aid :
  130. - u_group :
  131. - account_id :
  132. desc:
  133. -
  134. 0x2721:
  135. Type: AH
  136. Structure: <cmd>.W <map_fd>.L <u_fd>.L <u_aid>.L <account_id>.L <status>.B <password>.33B <email>.40B <last_ip>.16B <last_login>.24B <group_id>.L <logincount>.L <state>.L <password>.33B <birthdate>.11B <pincode>.?B <userid>.?B
  137. index: 0,2,6,10,18,19,52,92,108,132,136,140,144,155,155+PINCODE_LENGTH
  138. len: 155 + PINCODE_LENGTH + NAME_LENGTH
  139. parameter:
  140. - cmd : packet identification (0x2721)
  141. - map_fd
  142. - u_fd
  143. - u_aid
  144. - account_id
  145. - status: 0 - Failed
  146. - password
  147. - email
  148. - last_ip
  149. - last_login
  150. - group_id
  151. - logincount
  152. - state
  153. - password
  154. - birthdate
  155. - pincode
  156. - userid
  157. desc:
  158. -
  159. 0x2722:
  160. Type: HA
  161. Structure: <cmd>.W <account_id>.L <actual_e-mail>.40B <new_e-mail>.40B
  162. index: 0,2,6,46
  163. len: 86
  164. parameter:
  165. - cmd : packet identification (0x2722)
  166. - aid: account identification
  167. - actual_email: current email address
  168. - new_email: new email address
  169. desc:
  170. - Map server sends information to change an email of an account via char-server
  171. 0x2723:
  172. Type: AH
  173. Structure: <cmd>.W <aid>.L <sex>.B
  174. index: 0,2,6
  175. len: 7
  176. parameter:
  177. - cmd : packet identification (0x2723)
  178. - aid: account identification
  179. - sex: sex of account
  180. 0 = SEX_FEMALE
  181. 1= SEX_MALE
  182. 2=SEX_SERVER
  183. desc:
  184. - Acknowledge sex update
  185. 0x2724:
  186. Type: HA
  187. Structure: <cmd>.W <t_aid>.L <state>.L
  188. index: 0,2,6
  189. len: 10
  190. parameter:
  191. - cmd : packet identification (0x2724)
  192. - t_aid: account identification of target
  193. - state: state of account
  194. - 0 : unblock
  195. - 5 : block (Connection refused)
  196. desc:
  197. - Receiving an account state update request from a map-server (relayed via char-server)
  198. 0x2725:
  199. Type: HA
  200. Structure: <cmd>.W <t_aid>.L <timediff>.L
  201. index: 0,2,6
  202. len: 10
  203. parameter:
  204. - cmd : packet identification (0x2725)
  205. - t_aid: account identification of target
  206. - timediff: tick to add or remove to a timestamp
  207. desc:
  208. - Receiving of map-server via char-server a ban request (alter the ban time)
  209. 0x2726:
  210. Type: AH
  211. Structure: <cmd>.W <len>.W <aid>.L <cid>.L <?>.B <type>.B <count>.W { <keyLength>.B <key>.<keyLength> <index>.L <valLength>.B <val>.<valLength> }*
  212. index: 0,2,4,8,12,13,14,16,...
  213. len: variable
  214. parameter:
  215. - cmd : packet identification (0x2726)
  216. - ?
  217. - aid
  218. - cid
  219. - type
  220. - count
  221. - keyLength
  222. - key
  223. - index
  224. - val
  225. - valLength
  226. desc:
  227. - Send global account registry
  228. 0x2727:
  229. Type: HA
  230. Structure: <cmd>.W <aid>.L
  231. index: 0,2
  232. len: 6
  233. parameter:
  234. - cmd : packet identification (0x2727)
  235. - aid: account identification
  236. desc:
  237. - Receive a request to change sex (sex is reversed)
  238. 0x2728:
  239. Type: HA
  240. Structure: <cmd>.W <len>.W <aid>.L <cid>.L { <keyLength>.B <key>.<keyLength> <index>.L <type>.B <value>.?B }
  241. index: 0,2,4,8,13
  242. len: variable (reg size+4)
  243. parameter:
  244. - cmd : packet identification (0x2728)
  245. - len: pakcet size
  246. - aid: account identification
  247. - cid : char identification
  248. - keyLength
  249. - key
  250. - index
  251. - type
  252. - value
  253. desc:
  254. - Receive an request to fetch account_reg2 from a char-server, see packet 0x3004 (mapif_parse_Registry)
  255. 0x2729:
  256. Type: AH
  257. Structure: <cmd>.W <len>.L <aid>.L <cid>.L <type>.B { <str>.?B <value>.?B }
  258. index: 0,2,4,8,12,13
  259. len: variable (reg2 size+13)
  260. parameter:
  261. - cmd : packet identification (0x2729)
  262. - len: pakcet size
  263. - aid: account identification
  264. - cid : char identification
  265. -type:
  266. -type:
  267. 1: account2 registry (only one used atm)
  268. 2: account registry
  269. 3: char registry
  270. - str : name of variable in registry
  271. - value : value of varaible in registry
  272. desc:
  273. - Receive account_reg2 registry, forward to map servers.
  274. 0x272a:
  275. Type: HA
  276. Structure: <cmd>.W <t_aid>.L
  277. index: 0,2
  278. len: 6
  279. parameter:
  280. - cmd : packet identification (0x272a)
  281. - t_aid: account identification
  282. desc:
  283. - request unban account
  284. 0x272b:
  285. Type: HA
  286. Structure: <cmd>.W <t_aid>.L
  287. index: 0,2
  288. len: 6
  289. parameter:
  290. - cmd : packet identification (0x272b)
  291. - t_aid: account identification
  292. desc:
  293. - Add aid to list of online user on loginserv (setacconline).
  294. 0x272c:
  295. Type: HA
  296. Structure: <cmd>.W <t_aid>.L
  297. index: 0,2
  298. len: 6
  299. parameter:
  300. - cmd : packet identification (0x272c)
  301. - t_aid: account identification
  302. desc:
  303. - Remove aid to the list of online user (setaccoffline).
  304. 0x272d:
  305. Type: HA
  306. Structure: <cmd>.W <len>.W <nb_online>.L {<aid>.L}*
  307. index: 0,2,4,8
  308. len: 8+users*4
  309. parameter:
  310. - cmd : packet identification (0x272d)
  311. - len : size of packet
  312. - users: number of users connected to char-serv
  313. - aid: account identification
  314. desc:
  315. - receive account list from char-server
  316. 0x272e:
  317. Type: HA
  318. Structure: <cmd>.W <aid>.L <cid>.L
  319. index: 0,2,4,6
  320. len: 10
  321. parameter:
  322. - cmd : packet identification (0x272e)
  323. - aid: account identification
  324. - cid: char identification
  325. desc:
  326. - request accreg2 to login
  327. 0x272f:
  328. 0x2730:
  329. free
  330. 0x2731:
  331. Type: AH
  332. Structure: <cmd>.W <aid>.L <state>.B <status/date>.L
  333. index: 0,2,6,7
  334. len: 11
  335. parameter:
  336. - cmd : packet identification (0x2731)
  337. - aid: account identification
  338. - state: 0=change of status, 1=ban
  339. - status|date: status or final date of a banishment
  340. desc:
  341. - Notify char-serv of a state change or ban (accbannotification).
  342. 0x2732:
  343. 0x2733:
  344. free
  345. 0x2734:
  346. Type: AH
  347. Structure: <cmd>.W <aid>.L
  348. index: 0,2,
  349. len: 6
  350. parameter:
  351. - cmd : packet identification (0x2734)
  352. - aid: account identification
  353. desc:
  354. - Account is already marked as online. (Login server request to kick a character out).
  355. 0x2735:
  356. Type: AH
  357. Structure: <cmd>.W
  358. index: 0
  359. len: 2
  360. parameter:
  361. - cmd : packet identification (0x2735
  362. desc:
  363. - IP address update signal from login server.
  364. - Send back the IP of char server to login-server if IP was changed.
  365. 0x2736:
  366. Type: HA
  367. Structure: <cmd>.W <ip>.L
  368. index: 0,2
  369. len: 6
  370. parameter:
  371. - cmd : packet identification (0x2736)
  372. - ip: ip of char server
  373. desc:
  374. - IP update for char-server
  375. 0x2737:
  376. Type: HA
  377. Structure: <cmd>.W
  378. index: 0
  379. len: 2
  380. parameter:
  381. - cmd : packet identification (0x2737)
  382. desc:
  383. - Request to set all account as offline from char-server
  384. 0x2738:
  385. Type: HA
  386. Structure: <cmd>.W <aid>.L <pincode>.?B
  387. index: 0,2,6
  388. len: variable: 11+PINCODE_LENGTH+1
  389. parameter:
  390. - cmd : packet identification (0x2738)
  391. - aid : account identification
  392. - pincode : new pincode code
  393. desc:
  394. - Change PIN Code of an account
  395. 0x2739:
  396. Type: HA
  397. Structure: <cmd>.W <aid>.L
  398. index: 0,2
  399. len: 6
  400. parameter:
  401. - cmd : packet identification (0x2739)
  402. - aid : account identification
  403. desc:
  404. - Login notify char that too many wrong PIN code entered. (fail auth)
  405. 0x273a
  406. 0x273b
  407. 0x273c
  408. 0x273d
  409. 0x273e
  410. 0x273f
  411. free
  412. 0x2740
  413. 0x2741
  414. free
  415. 0x2742:
  416. Type: HA
  417. Structure: <cmd>.W <aid>.L <flag>.B <timediff>.L <mapfd>.L
  418. index: 0,2,6,7,11
  419. len: 15
  420. parameter:
  421. - cmd : packet identification (0x2742)
  422. - aid: account identification
  423. - flag: 0x1 ack vip data to char-serv, 0x2 add duration, 0x8 First request on player login
  424. - timediff: tick to add to viptime
  425. - mapfd: map-serv link to ack if type&1
  426. desc:
  427. - Received a VIP data request from char
  428. 0x2743:
  429. Type: AH
  430. Structure: <cmd>.W <aid>.L <vip_time>.L <flag>.B <groupid>.L <mapfd>.L
  431. index: 0,2,6,10,11,15
  432. len: 19
  433. parameter:
  434. - cmd : packet identification (0x2743)
  435. - aid: account identification
  436. - vip_time: timestamp of vip_time if he is vip
  437. - flag: 0x1: isvip, is this account in vip mode atm, 0x2: isgm, 0x4: show rates on player
  438. - groupid: group id of account
  439. - mapfd: map-serv link to ack
  440. desc:
  441. - Transmit vip specific data to char-serv (will be transfered to mapserv)
  442. =========================
  443. | 3.1 Inter-Map Packets |
  444. =========================
  445. 0x3000
  446. Type: ZI
  447. Structure: <cmd>.W <len>.W <fontColor>.L <fontType>.W <fontSize>.W <fontAlign>.W <fontY>.W <mes>.?B
  448. index: 0,2,4,8,10,12,14,16
  449. len: 16+msglen
  450. parameter:
  451. - cmd : packet identification (0x3000)
  452. - len : packet size
  453. - fontColor: (standard broadcast color=0xFF000000)
  454. - fontType:
  455. - fontSize:
  456. - fontAlign:
  457. - fontY:
  458. - mes: message to send
  459. desc:
  460. - Broadcasts a message to all map-servs connected to this char-serv
  461. - NB carefull (also using cmd=3000 rAthena_report but encapsulate it into cmd 3008 for map-char)
  462. 0x3001
  463. Type: ZI
  464. Structure: <cmd>.W <len>.W <name>(NAME_LENGTH)B <nick>(NAME_LENGTH)B <mes>.?B
  465. index: 0,2,4,4+NAME_LENGTH,4+2*NAME_LENGTH
  466. len: 52+mes_len
  467. parameter:
  468. - cmd : packet identification (0x3001)
  469. - len: packet size
  470. - name : sender name of msg
  471. - nick : receiver name of msg
  472. - mes : message to send
  473. desc:
  474. - Send a whisper to another player
  475. 0x3002
  476. Type: ZI
  477. Structure: <cmd>.W <
  478. index: 0,2,6
  479. len: 7
  480. parameter:
  481. - cmd : packet identification (0x3002)
  482. - id: whisper id, identifier to match current whisper session that store in inter.c::wis_db
  483. - flag: 0=success, 1=target not found, 2=ignored by target
  484. desc:
  485. - Inform the char-serv of the result of the whisper
  486. 0x3003
  487. Type: ZI
  488. Structure: <cmd>.W <packet_len>.W <wispname>.?B <permission>.L <message>.?B
  489. index: 0,2,4,4+NAME_LENGTH,8+NAME_LENGTH
  490. len: variable: mes_len + 8 + NAME_LENGTH
  491. parameter:
  492. - cmd : packet identification (0x3003)
  493. - packet_len: mes_len + 8 + NAME_LENGTH
  494. - wisp_name
  495. - permission
  496. - message
  497. desc:
  498. - Transmission of GM only Wisp/Page from server to inter-server
  499. 0x3004
  500. Type: ZI
  501. Structure: <cmd>.W <aid>.L <cid>.L <type>.B { <str>.?B <value>.?B }?
  502. index: 0,4,8,12,13
  503. len: variable : 13+regnum*(len variable name+len value) (max=288 * MAX_REG_NUM+13)
  504. parameter:
  505. - cmd : packet identification (0x3004)
  506. - aid: account identification
  507. - cid: char identification
  508. -type:
  509. 1: account2 registry
  510. 2: account registry
  511. 3: char registry
  512. -str: registre variable identifiant, (variable name)
  513. -value: variable value
  514. desc:
  515. - Map-serv is requesting Char-serv to save registry values. (type=1 will forward data to login-serv)
  516. 0x3005
  517. Type: ZI
  518. Structure: <cmd>.W <aid>.L <cid>.L <acc_reg2>.B <acc_reg>.B <ch_reg>.B
  519. index: 0,2,6,10,11,12
  520. len: 13
  521. parameter:
  522. - cmd : packet identification (0x3005)
  523. - aid:
  524. - cid:
  525. -acc_reg2 : request account registry (permanent variable of account, save on login-serv)
  526. -acc_reg : request account registry (permanent variable of account , save on char-serv)
  527. -ch_reg : request char registry (permanent variable of char)
  528. desc:
  529. - Request the registries for this player.
  530. 0x3006
  531. Type: ZI
  532. Structure: <cmd>.W <aid>.L <cid>.L <type>.B <NAME_LENGTH>.?
  533. index: 0,2,6,10,11
  534. len: 12+NAME_LENGTH
  535. parameter:
  536. - cmd : packet identification (0x3006)
  537. - aid
  538. - cid
  539. - type
  540. - NAME_LENGTH
  541. desc
  542. 0x3007
  543. Type: ZI
  544. Structure: <cmd>.W <u_fd>.L <aid>.L <group_lv>.L <type>.B <query>.?B
  545. index: 0,2,6,10,14,15
  546. len: 15+NAME_LENGTH
  547. parameter:
  548. - cmd : packet identification (0x3007)
  549. - u_fd
  550. - aid
  551. - group_lv
  552. - type : 0 - Full account info. 1 - Return as clif_account_name
  553. - query : name or aid of player we want info
  554. desc:
  555. - Request acc info
  556. 0x3009
  557. Type: ZI
  558. Structure: <cmd>.W <len>.W <nameid>.W <source>.W <type>.B <name>.24B <srcname>.24B
  559. index: 0,2,6,4,8,9,24
  560. len: 9+NAME_LENGTH+NAME_LENGTH
  561. parameter:
  562. - cmd : packet identification (0x3009)
  563. - len : Packet length
  564. - nameid : ID of obtained item
  565. - source : Source from where the item obtained
  566. - type : Obtained type. 0: Box/Package, 1: Monster, 2: NPC
  567. - name : Name of player who obtained the item
  568. - srcname : Source name as alternative of source id
  569. desc:
  570. - Send broadcasts request if player get special items.
  571. 0x3018
  572. Type: ZI
  573. Structure: <cmd>.W <aid>.L <gid>.L
  574. index 0,2,6
  575. len: 10
  576. parameter:
  577. - cmd : packet identification (0x3018)
  578. - aid
  579. - gid
  580. desc:
  581. - Request guild storage
  582. 0x3019
  583. Type: ZI
  584. Structure: <cmd>.W <guild_storage>.W <aid>.L <gid>.L
  585. index: 0,2,4,8,12
  586. len: 12+guild_storage
  587. parameter:
  588. - cmd : packet identification (0x3019)
  589. - guild_storage
  590. - aid
  591. - gid
  592. desc:
  593. - Send guild storage
  594. 0x3020
  595. Type: ZI
  596. Structure: <cmd>.W <party_member>.W <name>.24B <item>.B <item2>.B <member>.?B
  597. index: 0,2,4,28,29,30
  598. len: variable: 28+party_member (max=64)
  599. parameter:
  600. - cmd : packet identification (0x3020)
  601. - party_member
  602. - name
  603. - item
  604. - item2
  605. - member
  606. desc:
  607. - Party creation request
  608. 0x3021
  609. Type: ZI
  610. Structure: <cmd>.W <party_id>.L <cid>.L
  611. index: 0,2,6
  612. len: 10
  613. parameter:
  614. - cmd : packet identification (0x3021)
  615. - party_id
  616. - cid
  617. desc:
  618. - Party information request
  619. 0x3022
  620. Type: ZI
  621. Structure: <cmd>.W <party_member>.W <party_id>.L <member>.?B
  622. index: 0,2,4,8
  623. len: variable: 8+party_member (Max=42)
  624. parameter:
  625. - cmd : packet identification (0x3022)
  626. - party_member
  627. - party_id
  628. - member
  629. desc:
  630. - Request to add a member to party
  631. 0x3023
  632. Type: ZI
  633. Structure: <cmd>.W <party_id>.L <aid>.L <exp>.W <item>.W
  634. index: 0,2,6,10,12,14
  635. len: 14
  636. parameter:
  637. - cmd : packet identification (0x3023)
  638. - party_id
  639. - aid
  640. - exp
  641. - item
  642. desc:
  643. - Request to change party configuration (exp,item share)
  644. 0x3024
  645. Type: ZI
  646. Structure: <cmd>.W <party_id>.L <aid>.L <cid>.L <name>.24B <type>.B
  647. index: 0,2,6,10,14,48
  648. len: 49
  649. parameter:
  650. - cmd : packet identification (0x3024)
  651. - party_id : Party ID
  652. - aid : Account ID
  653. - cid : Character ID
  654. - name : Character Name
  655. - type : Leave (PARTY_MEMBER_WITHDRAW_LEAVE) or kick (PARTY_MEMBER_WITHDRAW_EXPEL) the player
  656. desc:
  657. - Request to leave party or kick party member
  658. 0x3025
  659. Type: ZI
  660. Structure: <cmd>.W <party_id>.L <aid>.L <cid>.L <mapindex>.W <online>.B <base_level>.W
  661. index: 0,2,6,10,14,16,17
  662. len: 19
  663. parameter:
  664. - cmd : packet identification (0x3025)
  665. - party_id
  666. - aid
  667. - cid
  668. - mapindex
  669. - online
  670. - base_level
  671. desc:
  672. - Party change map
  673. 0x3026
  674. Type: ZI
  675. Structure: <cmd>.W <party_id>.L
  676. index: 0,2
  677. len: 6
  678. parameter:
  679. - cmd : packet identification (0x3026)
  680. - party_id
  681. desc:
  682. - Request breaking party
  683. 0x3027
  684. Type: ZI
  685. Structure: <cmd>.W <len>.W <party_id>.L <aid>.L <mes>.?B
  686. index: 0,2,4,8,12
  687. len: variable: 12+len
  688. parameter:
  689. - cmd : packet identification (0x3027)
  690. - len
  691. - party_id
  692. - aid
  693. - mes
  694. desc:
  695. - Sending party chat
  696. 0x3029
  697. Type: ZI
  698. Structure: <cmd>.W <party_id>.L <aid>.L <cid>.L
  699. index: 0,2,6,10
  700. len: 14
  701. parameter:
  702. - cmd : packet identification (0x3029)
  703. - party_id
  704. - aid
  705. - cid
  706. desc:
  707. - Request a new leader for party
  708. 0x302A
  709. Type: ZI
  710. Structure: <cmd>.W <share_lvl>.L
  711. index: 0,2
  712. len: 6
  713. parameter:
  714. - cmd : packet identification (0x302a)
  715. - share_lvl
  716. desc:
  717. - Request to update party share level
  718. 0x3030
  719. Type: ZI
  720. Structure: <cmd>.W <guild_member>.W <aid>.L <name>.?B <master>.?B
  721. index: 0,2,4,8,8+NAME_LENGTH
  722. len:
  723. parameter:
  724. - cmd : packet identification (0x3030)
  725. - guild_member
  726. - aid
  727. - name
  728. - master
  729. desc:
  730. - Request a Guild creation
  731. 0x3031
  732. Type: ZI
  733. Structure: <cmd>.W <guild_id>.L
  734. index: 0,2
  735. len: 6
  736. parameter:
  737. - cmd : packet identification (0x3031)
  738. - guild_id
  739. desc:
  740. - Request Guild information
  741. 0x3032
  742. Type: ZI
  743. Structure: <cmd>.W <guild_member>.W <guild_id>.L <m>.?B
  744. index: 0,2,4,8
  745. len: variable: 8+guild_member
  746. parameter:
  747. - cmd : packet identification (0x3032)
  748. desc:
  749. - Request to add member to the guild
  750. 0x3033
  751. Type: ZI
  752. Structure: <cmd>.W <len>.W <guild_id>.L <name>.?B
  753. index: 0,2,4,8
  754. len: variable: 8+len
  755. parameter:
  756. - cmd : packet identification (0x3033)
  757. - len
  758. - guild_id
  759. - name
  760. desc:
  761. - Request a new leader for guild
  762. 0x3034
  763. Type: ZI
  764. Structure: <cmd>.W <guild_id>.L <aid>.L <cid>.L <flag>.B <mes> .40B
  765. index: 0,2,6,10,14,15
  766. len: 55
  767. parameter:
  768. - cmd : packet identification (0x3034)
  769. - guild_id
  770. - aid
  771. - cid
  772. - flag
  773. - mes
  774. desc:
  775. - Request to leave guild
  776. 0x3035
  777. Type: ZI
  778. Structure: <cmd>.W <guild_id>.L <aid>.L <cid>.L <online>.B <lv>.W <class_>.W
  779. index: 0,2,6,10,14,15,17
  780. len: 19
  781. parameter:
  782. - cmd : packet identification (0x3035)
  783. - guild_id
  784. - aid
  785. - cid
  786. - online
  787. - lv
  788. - class_
  789. desc:
  790. - Update request / Lv online status of the guild members
  791. 0x3036
  792. Type: ZI
  793. Structure: <cmd>.W <guild_id>.L
  794. index: 0,2
  795. len: 6
  796. parameter:
  797. - cmd : packet identification (0x3036)
  798. - guild_id
  799. desc:
  800. - Guild disbanded notification
  801. 0x3037
  802. Type: ZI
  803. Structure: <cmd>.W <len>.W <guild_id>.L <aid>.L <mes>.?B
  804. index: 0,2,4,8,12
  805. len: variable: 12+len
  806. parameter:
  807. - cmd : packet identification (0x3037)
  808. - len
  809. - guild_id
  810. - aid
  811. - mes
  812. desc:
  813. - Send a guild message
  814. 0x3039
  815. Type: ZI
  816. Structure: <cmd>.W <len>.W <guild_id>.L <type>.W <data>.?B
  817. index: 0,2,4,8,10
  818. len: variable: 10+len
  819. parameter:
  820. - cmd : packet identification (0x3039)
  821. - len
  822. - guild_id
  823. - type
  824. - data
  825. desc:
  826. - Request a change of Guild basic information
  827. 0x303a
  828. Type: ZI
  829. Structure: <cmd>.W <len>.W <guild_id>.L <aid>.L <cid>.L <type>.W <data>.?B
  830. index: 0,2,4,8,12,16,18
  831. len: variable: 18+len
  832. parameter:
  833. - cmd : packet identification (0x303a)
  834. - len
  835. - guild_id
  836. - aid
  837. - cid
  838. - type
  839. - data
  840. desc:
  841. - Request a change of Guild member information
  842. 0x303b
  843. Type: ZI
  844. Structure: <cmd>.W <guild_position>.W <guild_id>.L <idx>.L <p>.?B
  845. index: 0,2,4,8,12
  846. len: variable: 12+guild_position
  847. parameter:
  848. - cmd : packet identification (0x303b)
  849. - guild_position
  850. - guild_id
  851. - idx
  852. - p
  853. desc:
  854. - Request a change of Guild title
  855. 0x303c
  856. Type: ZI
  857. Structure: <cmd>.W <guild_id>.L <skill_id>.L <aid>.L <max>.L
  858. index: 0,2,6,10,14
  859. len: 18
  860. parameter:
  861. - cmd : packet identification (0x303c)
  862. - guild_id
  863. - skill_id
  864. - aid
  865. - max
  866. desc:
  867. - Request an update of Guildskill skill_id
  868. 0x303d
  869. Type: ZI
  870. Structure: <cmd>.W <guild_id1>.L <guild_id2>.L <account_id1>.L <account_id2>.L <flag>.B
  871. index: 0,2,6,10,14,18
  872. len: 19
  873. parameter:
  874. - cmd : packet identification (0x303d)
  875. - guild_id1
  876. - guild_id2
  877. - account_id1
  878. - account_id2
  879. - flag
  880. desc:
  881. - Request a new guild alliance
  882. 0x303e
  883. Type: ZI
  884. Structure: <cmd>.W <guild_id>.L <mes1>.60B <mes2>.120B
  885. index: 0,2,6,66
  886. len: 186
  887. parameter:
  888. - cmd : packet identification (0x303e)
  889. - guild_id
  890. - mes1
  891. - mes2
  892. desc:
  893. - Request to change guild notice
  894. 0x303f
  895. Type: ZI
  896. Structure: <cmd>.W <len>.W <guild_id>.L <0>.L <data>.?B
  897. index: 0,2,4,8,12
  898. len: variable: 12+len (Max=2012)
  899. parameter:
  900. - cmd : packet identification (0x303f)
  901. desc:
  902. - Request to change guild emblem
  903. 0x3040
  904. Type: ZI
  905. Structure: <cmd>.W <num>.W <castle_ids>.?B
  906. index: 0,2,4
  907. len: variable: 4 + num * 2,147,483,647
  908. parameter:
  909. - cmd : packet identification (0x3040)
  910. - num
  911. - castle_ids
  912. desc:
  913. - Requests guild castles data from char-server
  914. 0x3041
  915. Type: ZI
  916. Structure: <cmd>.W <castle_ids>.W <index>.B <value>.L
  917. index: 0,2,4,5
  918. len: 9
  919. parameter:
  920. - cmd : packet identification (0x3041)
  921. - castle_ids
  922. - index
  923. - value
  924. desc:
  925. - Request change castle guild owner and save data
  926. 0x3048
  927. Type: ZI
  928. Structure: <cmd>.W <cid>.L <flag>.B
  929. index: 0,2,6
  930. len: 7
  931. parameter:
  932. - cmd : packet identification (0x3048)
  933. - cid
  934. - flag
  935. desc:
  936. - Inbox request
  937. 0x3049
  938. Type: ZI
  939. Structure: <cmd>.W <mail_id>.L
  940. index: 0,2
  941. len: 6
  942. parameter:
  943. - cmd : packet identification (0x3049)
  944. - mail_id
  945. desc:
  946. - Mail read
  947. 0x304a
  948. Type: ZI
  949. Structure: <cmd>.W <cid>.L <mail_id>.L
  950. index: 0,2,6
  951. len: 10
  952. parameter:
  953. - cmd : packet identification (0x3093)
  954. - cid
  955. - mail_id
  956. desc:
  957. - Mail get attachment
  958. 0x304b
  959. Type: ZI
  960. Structure: <cmd>.W <cid>.L <mail_id>.L
  961. index: 0,2,6
  962. len: 10
  963. parameter:
  964. - cmd : packet identification (0x3093)
  965. - cid
  966. - mail_id
  967. desc:
  968. - Mail delete
  969. 0x304c
  970. Type: ZI
  971. Structure: <cmd>.W <cid>.L <mail_id>.L
  972. index: 0,2,6
  973. len: 10
  974. parameter:
  975. - cmd : packet identification (0x3093)
  976. - cid
  977. - mail_id
  978. desc:
  979. - Mail return
  980. 0x304d
  981. Type: ZI
  982. Structure: <cmd>.W <len>.W <aid>.L <msg>.?B
  983. index: 0,2,4,8
  984. len: variable: 8+mail_message
  985. parameter:
  986. - cmd : packet identification (0x3093)
  987. - len
  988. - aid
  989. - msg
  990. desc:
  991. - Mail send
  992. 0x3050
  993. Type: ZI
  994. Structure: <cmd>.W <len>.W <cid>.L <type>.W <price>.L <page>.W <searchtext>.?B
  995. index: 0,2,4,8,10,14,16
  996. len: variable: 16+NAME_LENGTH
  997. parameter:
  998. - cmd : packet identification (0x3093)
  999. - len
  1000. - cid
  1001. - type
  1002. - price
  1003. - page
  1004. - searchtext
  1005. desc:
  1006. - Auction request list
  1007. 0x3051
  1008. Type: ZI
  1009. Structure: <cmd>.W <len>.W <auction_data>.?B
  1010. index: 0,2,4
  1011. len: variable: 4+auction_data
  1012. parameter:
  1013. - cmd : packet identification (0x3093)
  1014. - len
  1015. - auction_data
  1016. desc:
  1017. - Auction register
  1018. 0x3052
  1019. Type: ZI
  1020. Structure: <cmd>.W <cid>.L <auction_id>.L
  1021. index: 0,2,6
  1022. len: 10
  1023. parameter:
  1024. - cmd : packet identification (0x3093)
  1025. - cid
  1026. - auction_id
  1027. desc:
  1028. - Auction cancel
  1029. 0x3053
  1030. Type: ZI
  1031. Structure: <cmd>.W <cid>.L <auction_id>.L
  1032. index: 0,2,6
  1033. len: 10
  1034. parameter:
  1035. - cmd : packet identification (0x3093)
  1036. - cid
  1037. - auction_id
  1038. desc:
  1039. - Auction close
  1040. 0x3055
  1041. Type: ZI
  1042. Structure: <cmd>.W <len>.W <cid>.L <auction_id>.L <bid>.L <name>.?B
  1043. index: 0,2,4,8,12,16
  1044. len: variable: 16+NAME_LENGTH
  1045. parameter:
  1046. - cmd : packet identification (0x3093)
  1047. - len
  1048. - cid
  1049. - auction_id
  1050. - bid
  1051. desc:
  1052. - Auction bid
  1053. 0x3056
  1054. Type: ZI
  1055. Structure: <cmd>.W <cid>.L <aid>.L <guild_id>.W
  1056. index: 0,2,6,10
  1057. len: 12
  1058. parameter:
  1059. - cmd : packet identification (0x3093)
  1060. - cid
  1061. - aid
  1062. - guild_id
  1063. desc:
  1064. - Itembound request
  1065. 0x3060
  1066. Type: ZI
  1067. Structure: <cmd>.W <cid>.L
  1068. index: 0,2
  1069. len: 6
  1070. parameter:
  1071. - cmd : packet identification (0x3093)
  1072. - cid
  1073. desc:
  1074. - Requests a character's quest log entries to the inter server.
  1075. 0x3061
  1076. Type: ZI
  1077. Structure: <cmd>.W <len>.W <cid>.L <quest_log>.?B
  1078. index: 0,2,4,8
  1079. len: variable: 8+num_quests
  1080. parameter:
  1081. - cmd : packet identification (0x3093)
  1082. desc:
  1083. - Requests to the inter server to save a character's quest log entries.
  1084. 0x3070
  1085. Type: ZI
  1086. Structure: <cmd>.W <size>.W <merc>.?B
  1087. index: 0,2,4
  1088. len: variable: 4+s_mercenary
  1089. parameter:
  1090. - cmd : packet identification (0x3093)
  1091. - size
  1092. - merc
  1093. desc:
  1094. - Mercenary create
  1095. 0x3071
  1096. Type: ZI
  1097. Structure: <cmd>.W <merc_id>.L <char_id>.L
  1098. index: 0,2,6
  1099. len: 10
  1100. parameter:
  1101. - cmd : packet identification (0x3071)
  1102. - merc_id
  1103. - cid
  1104. desc:
  1105. - Mercenary request
  1106. 0x3072
  1107. Type: ZI
  1108. Structure: <cmd>.W <merc_id>.L
  1109. index: 0,2
  1110. len: 6
  1111. parameter:
  1112. - cmd : packet identification (0x3072)
  1113. - merc_id
  1114. desc:
  1115. - Mercenary delete
  1116. 0x3073
  1117. Type: ZI
  1118. Structure: <cmd>.W <size>.W <merc>.?B
  1119. index: 0,2,4
  1120. len: variable: 4+s_mercenary
  1121. parameter:
  1122. - cmd : packet identification (0x3073)
  1123. - size
  1124. - merc
  1125. desc:
  1126. - Mercenary save
  1127. 0x307c
  1128. Type: ZI
  1129. Structure: <cmd>.W <size>.W <ele>.?B
  1130. index: 0,2,4
  1131. len: variable: 4+s_elemental
  1132. parameter:
  1133. - cmd : packet identification (0x307c)
  1134. - size
  1135. - ele
  1136. desc:
  1137. - Elemental create
  1138. 0x307d
  1139. Type: ZI
  1140. Structure: <cmd>.W <ele_id>.L <cid>.L
  1141. index: 0,2,6
  1142. len: 10
  1143. parameter:
  1144. - cmd : packet identification (0x307d)
  1145. - ele_id
  1146. - cid
  1147. desc:
  1148. - Elemental request
  1149. 0x307e
  1150. Type: ZI
  1151. Structure: <cmd>.W <ele_id>.L
  1152. index: 0,2
  1153. len: 6
  1154. parameter:
  1155. - cmd : packet identification (0x307e)
  1156. - ele_id
  1157. desc:
  1158. - Elemental delete
  1159. 0x307f
  1160. Type: ZI
  1161. Structure: <cmd>.W <size>.W <ele>.?B
  1162. index: 0,2,4
  1163. len: variable: 4+s_elemental
  1164. parameter:
  1165. - cmd : packet identification (0x307f)
  1166. - size
  1167. - ele
  1168. desc:
  1169. - Elemental save
  1170. 0x3080
  1171. Type: ZI
  1172. Structure: <cmd>.W <aid>.L <cid>.L <pet_class>.W <pet_lv>.W <pet_egg_id>.W <pet_equip>.W <intimate>.W <hungry>.W <rename_flag>.B <incubate>.B
  1173. index: 0,2,6,10,12,14,16,18,20,22,23,24
  1174. len: variable: 24+NAME_LENGTH
  1175. parameter:
  1176. - cmd : packet identification (0x3080)
  1177. - aid
  1178. - cid
  1179. - pet_class
  1180. - pet_lv
  1181. - pet_egg_id
  1182. -pet_equip
  1183. - intimate
  1184. - hungry
  1185. - rename_flag
  1186. - incubate
  1187. desc:
  1188. - Pet create
  1189. 0x3081
  1190. Type: ZI
  1191. Structure: <cmd>.W <aid>.L <cid>.L <pet_id>.L
  1192. index: 0,2,6,10
  1193. len: 14
  1194. parameter:
  1195. - cmd : packet identification (0x3081)
  1196. - aid
  1197. - cid
  1198. - pet_id
  1199. desc:
  1200. - Request pet data
  1201. 0x3082
  1202. Type: ZI
  1203. Structure: <cmd>.W <size>.W <aid>.L <s_pet>.?B
  1204. index: 0,2,4,8
  1205. len: variable: 8+s_pet
  1206. parameter:
  1207. - cmd : packet identification (0x3082)
  1208. - size
  1209. - aid
  1210. - s_pet: Pet data
  1211. desc:
  1212. - Save pet data
  1213. 0x3083
  1214. Type: ZI
  1215. Structure: <cmd>.W <pet_id>.L
  1216. index: 0,2
  1217. len 6:
  1218. parameter:
  1219. - cmd : packet identification (0x3083)
  1220. - pet_id
  1221. desc:
  1222. - Delete pet data
  1223. 0x3090:
  1224. Type: ZI
  1225. Structure: <cmd>.W <s_homunculus>.W <aid>.L <sh>.?B
  1226. index: 0,2,4,8
  1227. len: variable: 8+s_homunculus
  1228. parameter:
  1229. - cmd : packet identification (0x3090)
  1230. - s_homunculus
  1231. - aid
  1232. - sh
  1233. desc:
  1234. - Homunculus create
  1235. 0x3091:
  1236. Type: ZI
  1237. Structure: <cmd>.W <aid>.L <homun_id>.L
  1238. index: 0,2,6
  1239. len: 10
  1240. parameter:
  1241. - cmd : packet identification (0x3091)
  1242. - aid
  1243. - homun_id
  1244. desc:
  1245. - Homunculus request load
  1246. 0x3092:
  1247. Type: ZI
  1248. Structure: <cmd>.W <s_homunculus>.W <aid>.L <sh>.?B
  1249. index: 0,2,4,8
  1250. len: variable: 8+s_homunculus
  1251. parameter:
  1252. - cmd : packet identification (0x3092)
  1253. - s_homunculus
  1254. - aid
  1255. - sh
  1256. desc:
  1257. - Homunculus request save
  1258. 0x3093:
  1259. Type: ZI
  1260. Structure: <cmd>.W <homun_id>.L
  1261. index: 0,2
  1262. len: 6
  1263. parameter:
  1264. - cmd : packet identification (0x3093)
  1265. - homun_id
  1266. desc:
  1267. - Homunculus request delete
  1268. 0x3094:
  1269. Type: ZI
  1270. Structure: <cmd>.W <aid>.L <cid>.L <name>.?B
  1271. index: 0,2,6,10
  1272. len: variable: 10+name
  1273. parameter:
  1274. - cmd : packet identification (0x3094)
  1275. - aid
  1276. - cid
  1277. - name
  1278. desc:
  1279. - Homunculus rename
  1280. 0x3800:
  1281. Type: IZ
  1282. Structure: <cmd>.W <len>.W <fontColor>.L <fontType>.W <fontSize>.W <fontAlign>.W <fontY>.W <mes>.?B
  1283. index: 0,2,4,8,10,12,14,16
  1284. len: variable: 16+len
  1285. parameter:
  1286. - cmd : packet identification (0x3800)
  1287. - len
  1288. - fontColor
  1289. - fontType
  1290. - fontSize
  1291. - fontAlign
  1292. - fontY
  1293. - mes
  1294. desc:
  1295. - Send broadcast message
  1296. 0x3801
  1297. Type: IZ
  1298. Structure: <cmd>.W <len>.W <id>.L <src>.24B <dst>.24B <msg>.?B
  1299. index: 0,2,4,8,32,56
  1300. len: variable: 56+len (Max=1991)
  1301. parameter:
  1302. - cmd : packet identification (0x3801)
  1303. - len
  1304. - id
  1305. - src
  1306. - dst
  1307. - msg
  1308. desc:
  1309. - Send whisper message
  1310. 0x3802
  1311. Type: IZ
  1312. Structure: <cmd>.W <src>.24B <flag>.B
  1313. index: 0,2,26
  1314. len: 27
  1315. parameter:
  1316. - cmd : packet identification (0x3802)
  1317. - src
  1318. - flag
  1319. desc:
  1320. - Whisper sending result
  1321. 0x3803
  1322. Type: IZ
  1323. Structure: <cmd>.W <packet_len>.W <wispname>.?B <permission>.L <message>.?B
  1324. index: 0,2,4,4+NAME_LENGTH,8+NAME_LENGTH
  1325. len: variable: mes_len + 8 + NAME_LENGTH
  1326. parameter:
  1327. - cmd : packet identification (0x3003)
  1328. - packet_len: mes_len + 8 + NAME_LENGTH
  1329. - wisp_name
  1330. - permission
  1331. - message
  1332. desc:
  1333. - Parse whisper to GM
  1334. 0x3804
  1335. Type: HZ
  1336. Structure: <cmd>.W <len>.W <aid>.L <cid>.L <?>.B <type>.B <count>.W { <keyLength>.B <key>.<keyLength> <index>.L <valLength>.B <val>.<valLength> }*
  1337. index: 0,2,4,8,12,13,14,16,...
  1338. len: variable
  1339. parameter:
  1340. - cmd : packet identification (0x3804)
  1341. - ?
  1342. - aid
  1343. - cid
  1344. - type
  1345. - count
  1346. - keyLength
  1347. - key
  1348. - index
  1349. - val
  1350. - valLength
  1351. desc:
  1352. - Send global account registry to map-server from login-server
  1353. 0x3806
  1354. Type: IZ
  1355. Structure: <cmd>.W <aid>.L <cid>.L <type>.B <flag>.B <name>.B
  1356. index: 0,2,6,10,11,12
  1357. len: 13
  1358. parameter:
  1359. - cmd : packet identification (0x3806)
  1360. - aid
  1361. - cid
  1362. - type
  1363. - flag
  1364. - name
  1365. desc:
  1366. - mapif_namechange_ack
  1367. 0x3807
  1368. Type: IZ
  1369. Structure: <cmd>.W <len>.W <u_fd>.L <aid>.L <msg_out>.?B
  1370. index: 0,2,4,8,12
  1371. len: variable: 12+len
  1372. parameter:
  1373. - cmd : packet identification (0x3807)
  1374. - len
  1375. - u_fd
  1376. - aid
  1377. - msg_out
  1378. desc:
  1379. - sends a mesasge to map server (fd) to a user (u_fd) although we use fd we keep aid for safe-check
  1380. 0x3808
  1381. Type: IZ
  1382. Structure: <cmd>.W <u_fd>.L <aid>.L <acc_name>.?B
  1383. index: 0,2,6,10
  1384. len: variable: 10+NAME+LENGTH
  1385. parameter:
  1386. - cmd : packet identification (0x3807)
  1387. - u_fd
  1388. - aid
  1389. - acc_name
  1390. desc:
  1391. - Transmit the result of a account_information request from map-serv, with type 1
  1392. 0x3809
  1393. Type: IZ
  1394. Structure: <cmd>.W <len>.W <nameid>.W <source>.W <type>.B <name>.24B <srcname>.24B
  1395. index: 0,2,6,4,8,9,24
  1396. len: 9+NAME_LENGTH+NAME_LENGTH
  1397. parameter:
  1398. - cmd : packet identification (0x3809)
  1399. - len : Packet length
  1400. - nameid : ID of obtained item
  1401. - source : Source from where the item obtained
  1402. - type : Obtained type. 0: Box/Package, 1: Monster, 2: NPC
  1403. - name : Name of player who obtained the item
  1404. - srcname : Source name as alternative of source
  1405. desc:
  1406. - Broadcasts if player get special items.
  1407. 0x3818
  1408. Type: IZ
  1409. Structure: <cmd>.W <len>.W <aid>.L <guild_id>.L <flag>.B <guild_storage>.?B
  1410. index: 0,2,4,8,12,13
  1411. len: variable: 13+guild_storage
  1412. parameter:
  1413. - cmd : packet identification (0x3818)
  1414. - len
  1415. - aid
  1416. - guild_id
  1417. - flag
  1418. - guild_storage
  1419. desc:
  1420. - mapif_load_guild_storage
  1421. 0x3819
  1422. Type: IZ
  1423. Structure: <cmd>.W <aid>.L <guild_id>.L <fail>.B
  1424. index: 0,2,6,10
  1425. len: 11
  1426. parameter:
  1427. - cmd : packet identification (0x3819)
  1428. - aid
  1429. - guild_id
  1430. - fail
  1431. desc:
  1432. - mapif_save_guild_storage_ack
  1433. 0x3820
  1434. Type: IZ
  1435. Structure: <cmd>.W <aid>.L <char_id>.L <?>.B <party_id>.L <name>.?B
  1436. index: 0,2,6,10,11,15
  1437. len: 39
  1438. parameter:
  1439. - cmd : packet identification (0x3820)
  1440. - aid
  1441. - char_id
  1442. - ?
  1443. - party_id
  1444. - name
  1445. desc:
  1446. - ACK party creation
  1447. 0x3821
  1448. Type: IZ
  1449. Structure: <cmd>.W <?>.W <char_id>.L <party_id>.L
  1450. index: 0,2,4,8
  1451. len: 12
  1452. parameter:
  1453. - cmd : packet identification (0x3821)
  1454. - ?
  1455. - char_id
  1456. - party_id
  1457. desc:
  1458. - Party information not found
  1459. 0x3822
  1460. Type: IZ
  1461. Structure: <cmd>.W <party_id>.L <account_id>.L <char_id>.L <flag>.B
  1462. index: 0,2,6,10,14
  1463. len: 15
  1464. parameter:
  1465. - cmd : packet identification (0x3822)
  1466. - party_id
  1467. - account_id
  1468. - char_id
  1469. - flag
  1470. desc:
  1471. - mapif_party_memberadded
  1472. 0x3823
  1473. Type: IZ
  1474. Structure: <cmd>.W <party_id>.L <account_id>.L <exp>.W <item>.W <flag>.B
  1475. index: 0,2,6,10,12,14,15?
  1476. len: 16?
  1477. parameter:
  1478. - cmd : packet identification (0x3823)
  1479. - party_id
  1480. - account_id
  1481. - exp
  1482. - item
  1483. - flag
  1484. - ?
  1485. desc:
  1486. - Party setting change notification
  1487. 0x3824
  1488. Type: IZ
  1489. Structure: <cmd>.W <party_id>.L <account_id>.L <char_id>.L <name>.24B <type>.B
  1490. index: 0,2,6,10,14,48
  1491. len: 49
  1492. parameter:
  1493. - cmd : packet identification (0x3824)
  1494. - party_id : Party ID
  1495. - account_id : Account ID
  1496. - char_id : Character ID
  1497. - name : Character Name
  1498. - type : Leaving reason/result
  1499. desc:
  1500. - Withdrawal notification party
  1501. 0x3825
  1502. Type: IZ
  1503. Structure: <cmd>.W <party_id>.L <account_id>.L <char_id>.L <map>.W <online>.B <lv>.W <?>.?B
  1504. index: 0,2,6,10,14,16,17,19
  1505. len: 20?
  1506. parameter:
  1507. - cmd : packet identification (0x3825)
  1508. - party_id
  1509. - account_id
  1510. - char_id
  1511. - map
  1512. - online
  1513. - lv
  1514. - ?
  1515. desc:
  1516. - Party map update notification
  1517. 0x3826
  1518. Type: IZ
  1519. Structure: <cmd>.W <party_id>.L <flag>.B <?>.?B
  1520. index: 0,2,6,7
  1521. len: 16
  1522. parameter:
  1523. - cmd : packet identification (0x3826)
  1524. - party_id
  1525. - flag
  1526. - ?
  1527. desc:
  1528. - Dissolution party notification
  1529. 0x3827
  1530. Type: IZ
  1531. Structure: <cmd>.W <len>.W <party_id>.L <account_id>.L <mes>.?B
  1532. index: 0,2,4,8,12
  1533. len: variable: 12+len (max=512)
  1534. parameter:
  1535. - cmd : packet identification (0x3827)
  1536. - len
  1537. - party_id
  1538. - account_id
  1539. - mes
  1540. desc:
  1541. - mapif_party_message
  1542. 0x3830
  1543. Type: IZ
  1544. Structure: <cmd>.W <account_id>.L <guild_id>.L
  1545. index: 0,2,6
  1546. len: 10
  1547. parameter:
  1548. - cmd : packet identification (0x3830)
  1549. - account_id
  1550. - guild_id
  1551. desc:
  1552. - mapif_guild_created
  1553. 0x3831
  1554. Type: IZ
  1555. Structure: <cmd>.W <?>.W <guild_id>.L <?>.?B
  1556. index: 0,2,4,8
  1557. len: 12
  1558. parameter:
  1559. - cmd : packet identification (0x3831)
  1560. - ?
  1561. - guild_id
  1562. - ?
  1563. desc:
  1564. - mapif_guild_noinfo
  1565. 0x3832
  1566. Type: IZ
  1567. Structure: <cmd>.W <guild_id>.L <account_id>.L <char_id>.L <flag>.B
  1568. index: 0,2,6,10,14
  1569. len: 15
  1570. parameter:
  1571. - cmd : packet identification (0x3832)
  1572. - guild_id
  1573. - account_id
  1574. - char_id
  1575. - flag
  1576. desc:
  1577. - ACK member add
  1578. 0x3834
  1579. Type: IZ
  1580. Structure: <cmd>.W <guild_id>.L <account_id>.L <char_id>.L <flag>.B <mes>.40B <name>.?B
  1581. index: 0,2,6,10,14,15,55
  1582. len: variable: 55+NAME_LENGTH
  1583. parameter:
  1584. - cmd : packet identification (0x3834)
  1585. - guild_id
  1586. - account_id
  1587. - char_id
  1588. - flag
  1589. - mes
  1590. - name
  1591. desc:
  1592. - mapif_guild_withdraw
  1593. 0x3835
  1594. Type: IZ
  1595. Structure: <cmd>.W <guild_id>.L <account_id>.L <char_id>.L <online>.B <lv>.W <class_>.W
  1596. index: 0,2,6,10,14,15,17
  1597. len: 19
  1598. parameter:
  1599. - cmd : packet identification (0x3835)
  1600. - guild_id
  1601. - account_id
  1602. - char_id
  1603. - online
  1604. - lv
  1605. - class_
  1606. desc:
  1607. - Send short guild member's info
  1608. 0x3836
  1609. Type: IZ
  1610. Structure: <cmd>.W <guild_id>.L <flag>.B
  1611. index: 0,2,6
  1612. len: 7
  1613. parameter:
  1614. - cmd : packet identification (0x3836)
  1615. - guild_id
  1616. - flag
  1617. desc:
  1618. - mapif_guild_broken
  1619. 0x3837
  1620. Type: IZ
  1621. Structure: <cmd>.W <len>.W <guild_id>.L <account_id>.L <mes>.?B
  1622. index: 0,2,4,8,12
  1623. len: variable: 12+len (max=512)
  1624. parameter:
  1625. - cmd : packet identification (0x3837)
  1626. - len
  1627. - guild_id
  1628. - account_id
  1629. - mes
  1630. desc:
  1631. - Send guild message
  1632. 0x3839
  1633. Type: IZ
  1634. Structure: <cmd>.W <len>.W <guild_id>.L <type>.W <data>.?B
  1635. index: 0,2,4,8,10
  1636. len: variable: 10+len (Max=2048)
  1637. parameter:
  1638. - cmd : packet identification (0x3839)
  1639. - len
  1640. - guild_id
  1641. - type
  1642. - data
  1643. desc:
  1644. - mapif_guild_basicinfochanged
  1645. 0x383a
  1646. Type: IZ
  1647. Structure: <cmd>.W <len>.W <guild_id>.L <account_id>.L <char_id>.L <type>.W <data>.?B
  1648. index: 0,2,4,8,12,16,18
  1649. len: variable: 18+len (Max=2048)
  1650. parameter:
  1651. - cmd : packet identification (0x383a)
  1652. - len
  1653. - guild_id
  1654. - account_id
  1655. - char_id
  1656. - type
  1657. - data
  1658. desc:
  1659. - mapif_guild_memberinfochanged
  1660. 0x383b
  1661. Type: IZ
  1662. Structure: <cmd>.W <len>.W <guild_id>.L <idx>.L <position>.?B
  1663. index: 0,2,4,8,12
  1664. len: variable: 12+guild_position
  1665. parameter:
  1666. - cmd : packet identification (0x383b)
  1667. - len
  1668. - guild_id
  1669. - idx
  1670. - position
  1671. desc:
  1672. - mapif_guild_position
  1673. 0x383c
  1674. Type: IZ
  1675. Structure: <cmd>.W <guild_id>.L <skill_id>.L <account_id>.L
  1676. index: 0,2,6,10
  1677. len: 14
  1678. parameter:
  1679. - cmd : packet identification (0x383c)
  1680. - guild_id
  1681. - skill_id
  1682. - account_id
  1683. desc:
  1684. - ACK guild skill up
  1685. 0x383d
  1686. Type: IZ
  1687. Structure: <cmd>.W <guild_id1>.L <guild_id2>.L <account_id1>.L <account_id2>.L <flag>.B <name1>.?B <name2>.?B
  1688. index: 0,2,6,10,14,18,19
  1689. len: variable: 19+2*NAME_LENGTH
  1690. parameter:
  1691. - cmd : packet identification (0x383d)
  1692. - guild_id1
  1693. - guild_id2
  1694. - account_id1
  1695. - account_id2
  1696. desc:
  1697. - ACK guild alliance
  1698. 0x383e
  1699. Type: IZ
  1700. Structure: <cmd>.W <guild_id>.L <mes1>.60B <mes2>.120B <?>.?B
  1701. index: 0,2,6,66,186
  1702. len: 256
  1703. parameter:
  1704. - cmd : packet identification (0x383e)
  1705. - guild_id
  1706. - mes1
  1707. - mes2
  1708. - ?
  1709. desc:
  1710. - Send the guild notice
  1711. 0x383f
  1712. Type: IZ
  1713. Structure: <cmd>.W <len>.W <guild_id>.L <emblem_id>.L <emblem_data>.?B
  1714. index: 0,2,4,8,12
  1715. len: variable: 12+emblem_data
  1716. parameter:
  1717. - cmd : packet identification (0x383f)
  1718. - len
  1719. - guild_id
  1720. - emblem_id
  1721. - emblem_data
  1722. desc:
  1723. - Send emblem data
  1724. 0x3840
  1725. Type: IZ
  1726. Structure: <cmd>.W <len>.W <gc>.?B
  1727. index: 0,2,4
  1728. len: variable: 4+num*gc
  1729. parameter:
  1730. - cmd : packet identification (0x3840)
  1731. - len
  1732. - gc
  1733. desc:
  1734. - mapif_guild_castle_dataload
  1735. 0x3843
  1736. Type: IZ
  1737. Structure: <cmd>.W <guild_id>.L <aid>.L <cid>.L
  1738. index: 0,2,6,10
  1739. len: 14
  1740. parameter:
  1741. - cmd : packet identification (0x3843)
  1742. - guild_id
  1743. - aid
  1744. - cid
  1745. desc:
  1746. - mapif_guild_master_changed
  1747. 0x3848
  1748. Type: IZ
  1749. Structure: <cmd>.W <size>.W <char_id>.L <flag>.B <md>.?B
  1750. index: 0,2,4,8,9
  1751. len: variable: 9+md
  1752. parameter:
  1753. - cmd : packet identification (0x3848)
  1754. - size
  1755. - char_id
  1756. - flag
  1757. - md : Mail
  1758. desc:
  1759. - A player request for mail inbox
  1760. 0x3849
  1761. Type: IZ
  1762. Structure: <cmd>.W <dest_id>.L <sender_id>.L <sender_name>.24B <mail_title>.40B
  1763. index: 0,2,6,10,34
  1764. len: 74
  1765. parameter:
  1766. - cmd : packet identification (0x3849)
  1767. - dest_id
  1768. - sender_id
  1769. - sender_name
  1770. - mail_title
  1771. desc:
  1772. - Report New Mail to Map Server
  1773. 0x384a
  1774. Type: IZ
  1775. Structure: <cmd>.W <size>.W <char_id>.L <zeny>.L <item>.?B
  1776. index: 0,2,4,8,12
  1777. len: variable: 12+item
  1778. parameter:
  1779. - cmd : packet identification (0x384a)
  1780. - size
  1781. - char_id
  1782. - zeny
  1783. - item
  1784. desc:
  1785. - Get mail attachment
  1786. 0x384b
  1787. Type: IZ
  1788. Structure: <cmd>.W <char_id>.L <mail_id>.L <failed>.B
  1789. index: 0,2,6,10,11
  1790. len: 11
  1791. parameter:
  1792. - cmd : packet identification (0x384b)
  1793. - char_id
  1794. - mail_id
  1795. - failed: Fail status when delete a mail
  1796. desc:
  1797. - Status about mail deletion to player
  1798. 0x384c
  1799. Type: IZ
  1800. Structure: <cmd>.W <char_id>.L <mail_id>.L <new_mail>.B
  1801. index: 0,2,6,10,11
  1802. len: 11
  1803. parameter:
  1804. - cmd : packet identification (0x384c)
  1805. - char_id
  1806. - mail_id
  1807. - new_mail
  1808. desc:
  1809. - Received a returned mail
  1810. 0x384d
  1811. Type: IZ
  1812. Structure: <cmd>.W <size>.W <mail_message>.?B
  1813. index: 0,2,4
  1814. len: variable: 4+mail_message
  1815. parameter:
  1816. - cmd : packet identification (0x384d)
  1817. - size
  1818. - mail_message
  1819. desc:
  1820. - Mail sent status (to player if the sender is player and online)
  1821. 0x3850
  1822. Type: IZ
  1823. Structure: <cmd>.W <size>.W <char_id>.L <count>.W <pages>.W <auction_data>.?B
  1824. index: 0,2,4,8,10,12
  1825. len: variable: 12+auction_data
  1826. parameter:
  1827. - cmd : packet identification (0x3850)
  1828. - size
  1829. - char_id
  1830. - count
  1831. - pages
  1832. - auction_data
  1833. desc:
  1834. - Auction list
  1835. 0x3851
  1836. Type: IZ
  1837. Structure: <cmd>.W <size>.W <auction_data>.?B
  1838. index: 0,2,4
  1839. len: variable: 4+auction_data
  1840. parameter:
  1841. - cmd : packet identification (0x3851)
  1842. - size
  1843. - auction_data
  1844. desc:
  1845. - Status auction registration
  1846. 0x3852
  1847. Type: IZ
  1848. Structure: <cmd>.W <char_id>.L <result>.B
  1849. index: 0,2,6
  1850. len: 7
  1851. parameter:
  1852. - cmd : packet identification (0x3852)
  1853. - char_id
  1854. - result
  1855. desc:
  1856. - Cancel an auction that requested by player
  1857. 0x3853
  1858. Type: IZ
  1859. Structure: <cmd>.W <char_id>.L <result>.B
  1860. index: 0,2,6
  1861. len: 7
  1862. parameter:
  1863. - cmd : packet identification (0x3853)
  1864. - char_id
  1865. - result
  1866. desc:
  1867. - Receive a notification that the auction has ended
  1868. 0x3855
  1869. Type: IZ
  1870. Structure: <cmd>.W <char_id>.L <bid>.L <result>.B
  1871. index: 0,2,6,10
  1872. len: 11
  1873. parameter:
  1874. - cmd : packet identification (0x3855)
  1875. - char_id
  1876. - bid
  1877. - result
  1878. desc:
  1879. - Get back the money from biding auction (someone else have bid it over)
  1880. 0x3856
  1881. Type: IZ
  1882. Structure: <cmd>.W <aid>.L <guild_id>.W
  1883. index: 0,2,6
  1884. len: 8
  1885. parameter:
  1886. - cmd : packet identification (0x3856)
  1887. - aid : account_id
  1888. - guild_id
  1889. desc:
  1890. - Acknowledge the good deletion of the bound item
  1891. 0x3857
  1892. Type: IZ
  1893. Structure: <cmd>.W <size>.W <count>.W <guild_id>.W { <items>.?B }*MAX_INVENTORY
  1894. index: 0,2,4,6,8
  1895. len: variable: 8+items
  1896. parameter:
  1897. - cmd : packet identification (0x3856)
  1898. - size
  1899. - count : number of item retrieved
  1900. - guild_id
  1901. - items: retreived guild bound items
  1902. desc:
  1903. - Ask map-server to process the retreived guild bound items from expelled member
  1904. 0x3860
  1905. Type: IZ
  1906. Structure: <cmd>.W <size>.W <char_id>.L <quest>.?B
  1907. index: 0,2,4,8
  1908. len: variable: 8+quest
  1909. parameter:
  1910. - cmd : packet identification (0x3860)
  1911. - size
  1912. - char_id
  1913. - quest
  1914. desc:
  1915. - Send quest log to a player
  1916. 0x3861
  1917. Type: IZ
  1918. Structure: <cmd>.W <char_id>.L <success>.B
  1919. index: 0,2,4
  1920. len: 5
  1921. parameter:
  1922. - cmd : packet identification (0x3861)
  1923. - char_id
  1924. - success
  1925. desc:
  1926. - Send quest log saving status
  1927. 0x3880
  1928. Type: IZ
  1929. Structure: <cmd>.W <account_id>.L <class>.W <pet_id>.L
  1930. index: 0,2,6,8
  1931. len: 12
  1932. parameter:
  1933. - cmd : packet identification (0x3880)
  1934. - account_id
  1935. - class
  1936. - pet_id
  1937. desc:
  1938. - Send pet egg creation status
  1939. 0x3881
  1940. Type: IZ
  1941. Structure: <cmd>.W <size>.W <account_id>.L <status>.B <s_pet>.?B
  1942. index: 0,2,4,6,8,9
  1943. len: variable: 9+s_pet
  1944. parameter:
  1945. - cmd : packet identification (0x3881)
  1946. - size
  1947. - account_id
  1948. - status: 1 means no info available
  1949. - s_pet: Pet data
  1950. desc:
  1951. - Send packet data to a player
  1952. 0x3882
  1953. Type: IZ
  1954. Structure: <cmd>.W <account_id>.L <flag>.B
  1955. index: 0,2,4
  1956. len: 5
  1957. parameter:
  1958. - cmd : packet identification (0x3882)
  1959. - account_id
  1960. - flag: 1 failed to save
  1961. desc:
  1962. - Send pet save status
  1963. 0x3883
  1964. Type: IZ
  1965. Structure: <cmd>.W <flag>.B
  1966. index: 0,2
  1967. len: 3
  1968. parameter:
  1969. - cmd : packet identification (0x3883)
  1970. - flag
  1971. desc:
  1972. - Send pet deletion status
  1973. 0x3890
  1974. Type: IZ
  1975. Structure: <cmd>.W <size>.W <account_id>.L <flag>.B <s_homunculus>.?B
  1976. index: 0,2,4,8,9
  1977. len: variable: 9+s_homunculus
  1978. parameter:
  1979. - cmd : packet identification (0x3890)
  1980. - size
  1981. - account_id
  1982. - flag: 0 means homunculus creation is failed
  1983. - s_homunculus: Homunculus data
  1984. desc:
  1985. - Send homunculus creation status
  1986. 0x3891
  1987. Type: IZ
  1988. Structure: <cmd>.W <size>.W <account_id>.L <flag>.B <s_homunculus>.?B
  1989. index: 0,2,4,8,9
  1990. len: variable: 9+s_homunculus
  1991. parameter:
  1992. - cmd : packet identification (0x3890)
  1993. - size
  1994. - account_id
  1995. - flag: 0 means failed to retrieve homunculus data
  1996. - s_homunculus: Homunculus data
  1997. desc:
  1998. - Send homunculus data to a player
  1999. 0x3892
  2000. Type: IZ
  2001. Structure: <cmd>.W <account_id>.L <flag>.B
  2002. index: 0,2,4
  2003. len: 5
  2004. parameter:
  2005. - cmd : packet identification (0x3892)
  2006. - account_id
  2007. - flag: 1 if success
  2008. desc:
  2009. - Send homunculus saving status to a player
  2010. 0x3893
  2011. Type: IZ
  2012. Structure: <cmd>.W <flag>.B
  2013. index: 0,2
  2014. len: 3
  2015. parameter:
  2016. - cmd : packet identification (0x3893)
  2017. - flag: 1 Homunculus deleted
  2018. desc:
  2019. - Send homunculus deletion status
  2020. ========================
  2021. | 3.2 Char-Map Packets |
  2022. ========================
  2023. 0x2af9
  2024. Type: AZ
  2025. Structure: <cmd>.W <?>.B
  2026. index: 0,2
  2027. len: 3
  2028. parameter:
  2029. - cmd : packet identification (0x2af9)
  2030. - ?
  2031. desc:
  2032. - chrif_connectack
  2033. 0x2afb
  2034. Type: HZ
  2035. Structure: <cmd>.W <size>.W <status>.B <servername>.?B <defaultmap>.?B <mapx>.W <mapy>.W
  2036. index: 0,2,4,5+NAME_LENGTH,5+NAME_LENGTH+MAP_NAME_LENGTH,5+NAME_LENGTH+MAP_NAME_LENGTH+2
  2037. len: variable: 9+NAME_LENGTH+MAP_NAME_LENGTH
  2038. parameter:
  2039. - cmd : packet identification (0x2afb)
  2040. - status : 0 Success, 1 : Fail
  2041. - servername :
  2042. - defaultmap :
  2043. - mapx :
  2044. - mapy :
  2045. desc:
  2046. - Map received from map-server, then send reply with server name and default map
  2047. 0x2afd
  2048. Type: AZ
  2049. Structure: <cmd>.W <mmo_charstatus_len>.W <account_id>.L <?>.L <?>.L <?>.L <?>.L <?>.B <cd>.?B
  2050. index: 0,2,4,8,12,16,20,24,25
  2051. len: variable: mmo_charstatus_len
  2052. parameter:
  2053. - cmd : packet identification (0x2afd)
  2054. - mmo_charstatus_len
  2055. - account_id
  2056. - ?
  2057. - ?
  2058. - ?
  2059. - ?
  2060. - ?
  2061. - cd
  2062. desc:
  2063. - auth request from map-server
  2064. 0x2b00
  2065. Type: AZ
  2066. Structure: <cmd>.W <users>.L
  2067. index: 0,2
  2068. len: 6
  2069. parameter:
  2070. - cmd : packet identification (0x2b00)
  2071. desc:
  2072. - Send to map-servers the users count on this char-serv, (meaning the total of all mapserv)
  2073. 0x2b03
  2074. Type: AZ
  2075. Structure: <cmd>.W <account_id>.L <?>.B
  2076. index: 0,2,6
  2077. len: 7
  2078. parameter:
  2079. - cmd : packet identification (0x2b03)
  2080. - account_id
  2081. - ?
  2082. desc:
  2083. - Player Requesting char-select from map_serv
  2084. 0x2b04
  2085. Type: AZ
  2086. Structure: <cmd>.W <?>.W <ip>.L <port>.W
  2087. index: 0,2,4,8
  2088. len: ?
  2089. parameter:
  2090. - cmd : packet identification (0x2b04)
  2091. - ?
  2092. - ip
  2093. - port
  2094. desc:
  2095. - Receive maps from some other map-server (relayed via char-server)
  2096. 0x2b06
  2097. Type: AZ
  2098. Structure: <cmd>.W <account_id>.L <login_id1>.L <login_id2>.L <char_id>.L <map_index>.W <x>.W <y>.W <ip>.L <port>.W
  2099. index: 0,2,6,10,14,16,18,20,24,28
  2100. len: 30
  2101. parameter:
  2102. - cmd : packet identification (0x2b06)
  2103. - account_id
  2104. - login_id1
  2105. - login_id2
  2106. - char_id
  2107. - map_index
  2108. - x
  2109. - y
  2110. - ip
  2111. - port
  2112. desc:
  2113. - Map-server change request acknowledgement (positive or negative)
  2114. 0x2b09
  2115. Type: AZ
  2116. Structure: <cmd>.W <?>.L <?>?
  2117. index: 0,2,6
  2118. len: 30
  2119. parameter:
  2120. - cmd : packet identification (0x2b09)
  2121. - ?
  2122. - ?
  2123. desc:
  2124. - Lookup to search if that char_id correspond to a name.
  2125. 0x2b0b
  2126. Type: AZ
  2127. Structure: <cmd>.W <len>.W <aid>.L <cid>.L <count>.W <skill_cooldown_data>.?B
  2128. index: 0,2,4,8,12,14
  2129. len: variable: 14+MAX_SKILLCOOLDOWN*skill_cooldown_data
  2130. parameter:
  2131. - cmd : packet identification (0x2b0b)
  2132. - len
  2133. - aid
  2134. - cid
  2135. - count
  2136. - skill_cooldown_data
  2137. desc:
  2138. - Retrieve and load skillcooldown for a player
  2139. 0x2b0d
  2140. Type: AZ
  2141. Structure: <cmd>.W <acc>.L <sex>.L
  2142. index:0,2,6
  2143. len: 10
  2144. parameter:
  2145. - cmd : packet identification (0x2b0d)
  2146. - acc
  2147. - sex
  2148. desc:
  2149. - Request char server to change sex of char
  2150. 0x2b0f
  2151. Type: AZ
  2152. Structure: <cmd>.W <aid>.L <name>.24B <operation>.W <result>.W
  2153. index: 0,2,6,30,32
  2154. len: 34
  2155. parameter:
  2156. - cmd : packet identification (0x2b0f)
  2157. - aid
  2158. - name
  2159. - operation
  2160. - result
  2161. desc:
  2162. - Processing a reply to chrif_req_login_operation() (request to modify an account).
  2163. 0x2b12
  2164. Type: AZ
  2165. Structure: <cmd>.W <partner_id1>.L <partner_id2>.L <?>.B
  2166. index: 0,2,6,10
  2167. len: 11
  2168. parameter:
  2169. - cmd : packet identification (0x2b12)
  2170. - partner_id1
  2171. - partner_id2
  2172. - ?
  2173. desc:
  2174. - Divorce players (only used if 'partner_id' is offline)
  2175. 0x2b14
  2176. Type: AZ
  2177. Structure: <cmd>.W <id>.L <res>.B <ret_status>.L
  2178. index: 0,2,6,7
  2179. len: 11
  2180. parameter:
  2181. - cmd : packet identification (0x2b14)
  2182. - id
  2183. - res
  2184. - ret_status
  2185. desc:
  2186. - Disconnection of a player (account has been banned of has a status, from login/char-server)
  2187. 0x2b1b
  2188. Type: AZ
  2189. Structure: <cmd>.W <size>.W <size>.W <size>.W <smith_rank>.?B <alchi_rank>.?B <taek_rank>.?B
  2190. index: 0,2,4,6,?,?,?
  2191. len: ? (Max=32000)
  2192. parameter:
  2193. - cmd : packet identification (0x2b1b)
  2194. - size: total packet length
  2195. - size: Alchemist block size
  2196. - size: Blacksmith block size
  2197. -
  2198. -
  2199. -
  2200. desc:
  2201. - Send map-servers fames ranking lists
  2202. 0x2b1d
  2203. Type: AZ
  2204. Structure: <cmd>.W <len>.W <aid>.L <cid>.L
  2205. index: 0,2,4,8
  2206. len: variable: 14+50*status_change_data
  2207. parameter:
  2208. - cmd : packet identification (0x2b1d)
  2209. - len
  2210. - aid
  2211. - cid
  2212. desc:
  2213. - Map-serv requesting to send the list of sc_data the player has saved
  2214. 0x2b1e
  2215. Type: AZ
  2216. Structure: <cmd>.W <new_ip>.L
  2217. index: 0,2
  2218. len: 6
  2219. parameter:
  2220. - cmd : packet identification (0x2b1e)
  2221. - new_ip
  2222. desc:
  2223. - Request forwarded from char-server for interserver IP sync
  2224. 0x2b1f
  2225. Type: AZ
  2226. Structure: <cmd>.W <account_id>.L <reason>.B
  2227. index: 0,2,6
  2228. len: 7
  2229. parameter:
  2230. - cmd : packet identification (0x2b1f)
  2231. - account_id
  2232. - reason
  2233. desc:
  2234. - Request to kick char from a certain map server
  2235. 0x2b20
  2236. Type: AZ
  2237. Structure: <cmd>.W <len>.W <ip>.L <port>.W
  2238. index: 0,2,4,8
  2239. len: 10
  2240. parameter:
  2241. - cmd : packet identification (0x2b20)
  2242. - len
  2243. - ip
  2244. - port
  2245. desc:
  2246. - Remove specified maps (used when some other map-server disconnects)
  2247. 0x2b21
  2248. Type: AZ
  2249. Structure: <cmd>.W <aid>.L <cid>.L
  2250. index: 0,2,6
  2251. len: 10
  2252. parameter:
  2253. - cmd : packet identification (0x2b21)
  2254. desc:
  2255. - chrif_save_ack (Received after a character has been "final saved" on the char-server)
  2256. 0x2b22
  2257. Type: AZ
  2258. Structure: <cmd>.W <type>.B <index>.B <fame>.L
  2259. index: 0,2,3,4
  2260. len: 8
  2261. parameter:
  2262. - cmd : packet identification (0x2b22)
  2263. - type
  2264. - index
  2265. - fame
  2266. desc:
  2267. - Send to map-servers the updated fame ranking lists
  2268. 0x2b24
  2269. Type: AZ
  2270. Structure: <cmd>.W
  2271. index: 0
  2272. len: 2
  2273. parameter:
  2274. - cmd : packet identification (0x2b24)
  2275. desc:
  2276. - Map-server keep alive packet, awnser back map that we alive as well
  2277. 0x2b25
  2278. Type: AZ
  2279. Structure: <cmd>.W <father_id>.L <mother_id>.L <char_id>.L
  2280. index: 0,2,6
  2281. len: ? (Max=64)
  2282. parameter:
  2283. - cmd : packet identification (0x2b25)
  2284. - father_id
  2285. - mother_id
  2286. - char_id
  2287. desc:
  2288. - Removes baby from Father ID and Mother ID
  2289. 0x2b27
  2290. Type: AZ
  2291. Structure: <cmd>.W <account_id>.L <char_id>.L <login_id1>.L <sex>.B
  2292. index: 0,2,6,10,14
  2293. len: 15
  2294. parameter:
  2295. - cmd : packet identification (0x2b27)
  2296. - account_id
  2297. - char_id
  2298. - login_id1
  2299. - sex
  2300. desc:
  2301. - Client authentication failed
  2302. 0x2b29
  2303. free
  2304. 0x2b2b
  2305. Type: AZ
  2306. Structure: <cmd>.W <aid>.L <vip_time>.L <groupid>.L <flag>.B
  2307. index: 0,2,6,10,11
  2308. len: 15
  2309. parameter:
  2310. - cmd : packet identification (0x2b2b)
  2311. - aid
  2312. - vip_time
  2313. - groupid
  2314. - flag : 0x1: isvip, is this account in vip mode atm, 0x2: isgm, 0x4: show rates on player
  2315. desc:
  2316. - Received vip-data from char-serv, fill map-serv data
  2317. 0x2b2f
  2318. Type: AZ
  2319. Structure: <cmd>.W <len>.W <cid>.L <count>.B { <bonus_script_data>.?B }
  2320. index: 0,2,4,8
  2321. len: variable: 9+count*bonus_script_data
  2322. parameter:
  2323. - cmd : packet identification (0x2b2f)
  2324. desc:
  2325. - Get bonus_script data(s) from table to load
  2326. 0x2736
  2327. Type: ZA
  2328. Structure: <cmd>.W <ip>.L
  2329. index: 0,2
  2330. len: 6
  2331. parameter:
  2332. - cmd : packet identification (0x2736)
  2333. desc:
  2334. - ip address update
  2335. 0x2afa
  2336. Type: ZA
  2337. Structure: <cmd>.W <size>.W {<map_index>.W}*instance_start
  2338. index: 0,2,4
  2339. len: variable: 4+instance_start*4
  2340. parameter:
  2341. - cmd : packet identification (0x2afa)
  2342. - size
  2343. - map_index*instance_start
  2344. desc:
  2345. - Send available normal maps. chrif_sendmap
  2346. 0x2afc
  2347. Type: ZA
  2348. Structure: <cmd>.W <account_id>.L <char_id>.L
  2349. index: 0,2,6
  2350. len: 10
  2351. parameter:
  2352. - cmd : packet identification (0x2afc)
  2353. - account_id
  2354. - char_id
  2355. desc:
  2356. - Request sc_data from charserver
  2357. 0x2afe
  2358. Type: ZA
  2359. Structure: <cmd>.W <map_usercount>.W
  2360. index: 0,2
  2361. len: 4
  2362. parameter:
  2363. - cmd : packet identification (0x2afe)
  2364. desc:
  2365. - send_usercount_tochar (unused)
  2366. 0x2aff
  2367. Type: ZA
  2368. Structure: <cmd>.W <len>.W <users>.W <account_id>.L <char_id>.L
  2369. index: 0,2,4,6+8*i,6+8+i+4
  2370. len: variable: 6+8*users
  2371. parameter:
  2372. - cmd : packet identification (0x2aff)
  2373. - len
  2374. - users
  2375. - account_id
  2376. - char_id
  2377. desc:
  2378. - Map-serv sent us all his users info, (aid and cid) so we can update online_char_db
  2379. 0x2b01
  2380. Type: ZA
  2381. Structure: <cmd>.W <mmo_charstatus_len>.W <account_id>.L <char_id>.L <flag>.B
  2382. index: 0,2,4,8,12
  2383. len: variable: mmo_charstatus_len
  2384. parameter:
  2385. - cmd : packet identification (0x2b01)
  2386. desc:
  2387. - charsave of char XY account XY
  2388. 0x2b02
  2389. Type: ZA
  2390. Structure: <cmd>.W <id>.L <login_id1>.L <login_id2>.L <s_ip>.L <packet_ver>.B
  2391. index: 0,2,6,10,14,18
  2392. len: 19
  2393. parameter:
  2394. - cmd : packet identification (0x2b02)
  2395. - id
  2396. - login_id1
  2397. - login_id2
  2398. - s_ip
  2399. - packet_ver
  2400. desc:
  2401. - chrif_charselectreq
  2402. 0x2b05
  2403. Type: ZA
  2404. Structure: <cmd>.W <id>.L <login_id1>.L <login_id2>.L <char_id>.L <mapindex>.W <x>.W <y>.W <ip>.L <port>.W <sex>.B <client_addr>.L <group_id>.L
  2405. index: 0,2,6,10,14,18,20,22,24,28,30,31,35
  2406. len: 39
  2407. parameter:
  2408. - cmd : packet identification (0x2b05)
  2409. - id
  2410. - login_id1
  2411. - login_id2
  2412. - char_id
  2413. - mapindex
  2414. - x
  2415. - y
  2416. - ip
  2417. - port
  2418. - sex
  2419. - client_addr
  2420. - group_id
  2421. desc:
  2422. - Tell the charserver the mapchange / quest for ok
  2423. 0x2b07
  2424. Type: ZA
  2425. Structure: <cmd>.W <char_id>.L <friend_id>.L
  2426. index: 0,2,6
  2427. len: 10
  2428. parameter:
  2429. - cmd : packet identification (0x2b07)
  2430. - char_id
  2431. - friend_id
  2432. desc:
  2433. - Asks char server to remove friend_id from the friend list of char_id
  2434. 0x2b08
  2435. Type: ZA
  2436. Structure: <cmd>.W <char_id>.L
  2437. index: 0,2
  2438. len: 6
  2439. parameter:
  2440. - cmd : packet identification (0x2b08)
  2441. desc:
  2442. - Search char through id on char serv
  2443. 0x2b0a
  2444. Type: ZA
  2445. Structure: <cmd>.W <account_id>.L <char_id>.L
  2446. index: 0,2,6
  2447. len: 10
  2448. parameter:
  2449. - cmd : packet identification (0x2b0a)
  2450. - account_id
  2451. - char_id
  2452. desc:
  2453. - Request skillcooldown from charserver
  2454. 0x2b0c
  2455. Type: ZA
  2456. Structure: <cmd>.W <id>.W <actual_email>.40B <new_email>.40B
  2457. index: 0,2,6,46
  2458. len: 86
  2459. parameter:
  2460. - cmd : packet identification (0x2b0c)
  2461. - id
  2462. - actual_email
  2463. - new_email
  2464. desc:
  2465. - Change Email
  2466. 0x2b0e
  2467. Type: ZA
  2468. Structure: <cmd>.W <aid>.L <name>.24B <operation_type>.W <timediff>.L <val1>.L <val2>.L
  2469. index: 0,2,30,36,40
  2470. len: 44
  2471. parameter:
  2472. - cmd : packet identification (0x2b0e)
  2473. - aid
  2474. - name
  2475. - operation_type: 1:block account, 2:ban account, 3:unblock account, 4:unban account, 5:changesex, 6:VIP, 7:changecharsex
  2476. - timediff
  2477. - val1
  2478. - val2
  2479. desc:
  2480. - Send an account modification request to the login server (via char server).
  2481. 0x2b10
  2482. Type: ZA
  2483. Structure: <cmd>.W <char_id>.L <fame>.L <type>.B
  2484. index: 0,2,6,10
  2485. len: 11
  2486. parameter:
  2487. - cmd : packet identification (0x2b10)
  2488. - char_id
  2489. - fame
  2490. - type
  2491. desc:
  2492. - Request/Receive top 10 Fame character list
  2493. 0x2b11
  2494. Type: ZA
  2495. Structure: <cmd>.W <partner_id1>.L <partner_id2>.L
  2496. index: 0,2,6
  2497. len: 10
  2498. parameter:
  2499. - cmd : packet identification (0x2b11)
  2500. - partner_id1
  2501. - partner_id2
  2502. desc:
  2503. - Request Char Server to Divorce Players
  2504. 0x2b15
  2505. Type: ZA
  2506. Structure: <cmd>.W <len>.W <account_id>.L <char_id>.L <count>.W
  2507. index: 0,2,4,8,12
  2508. len: variable: 14+MAX_SKILLCOOLDOWN*skill_cooldown_data
  2509. parameter:
  2510. - cmd : packet identification (0x2b15)
  2511. - len
  2512. - account_id
  2513. - char_id
  2514. - count
  2515. desc:
  2516. - Request to save skill cooldown data
  2517. 0x2b16
  2518. Type: ZA
  2519. Structure: <cmd>.W <base_rate>.L <job_rate>.L <drop_rate>.L
  2520. index: 0,2,6,10
  2521. len: 14
  2522. parameter:
  2523. - cmd : packet identification (0x2b16)
  2524. - base_rate
  2525. - job_rate
  2526. - drop_rate
  2527. desc:
  2528. - Send rates and motd to char server
  2529. 0x2b17
  2530. Type: ZA
  2531. Structure: <cmd>.W <char_id>.L <account_id>.L
  2532. index: 0,2,6
  2533. len: 10
  2534. parameter:
  2535. - cmd : packet identification (0x2b17)
  2536. - char_id
  2537. - account_id
  2538. desc:
  2539. - Tell char-server character disconnected
  2540. 0x2b18
  2541. Type: ZA
  2542. Structure: <cmd>.W
  2543. index: 0
  2544. len: 2
  2545. parameter:
  2546. - cmd : packet identification (0x2b18)
  2547. desc:
  2548. - Tell char-server to reset all chars offline
  2549. 0x2b19
  2550. Type: ZA
  2551. Structure: <cmd>.W <char_id>.L <account_id>.L
  2552. index: 0,2,6
  2553. len: 10
  2554. parameter:
  2555. - cmd : packet identification (0x2b19)
  2556. - char_id
  2557. - account_id
  2558. desc:
  2559. - Tell char-server character is online
  2560. 0x2b1a
  2561. Type: ZA
  2562. Structure: <cmd>.W
  2563. index: 0
  2564. len: 2
  2565. parameter:
  2566. - cmd : packet identification (0x2b1a)
  2567. desc:
  2568. - Build the fame ranking lists and send them
  2569. 0x2b1c
  2570. Type: ZA
  2571. Structure: <cmd>.W <len>.W <account_id>.L <char_id>.L <count>.W
  2572. index: 0,2,4,8,12
  2573. len: variable: 14+SC_MAX*status_change_data
  2574. parameter:
  2575. - cmd : packet identification (0x2b1c)
  2576. - len
  2577. - account_id
  2578. - char_id
  2579. - count
  2580. desc:
  2581. - parses the sc_data of the player and sends it to the char-server for saving
  2582. 0x2b23
  2583. Type: ZA
  2584. Structure: <cmd>.W
  2585. index: 0
  2586. len: 2
  2587. parameter:
  2588. - cmd : packet identification (0x2b23)
  2589. desc:
  2590. - pings the charserver (chrif_keepalive)
  2591. 0x2b26
  2592. Type: ZA
  2593. Structure: <cmd>.W <account_id>.L <char_id>.L <login_id1>.L <sex>.B <client_addr>.L <autotrade>.B
  2594. index: 0,2,6,10,14,15,19
  2595. len: 20
  2596. parameter:
  2597. - cmd : packet identification (0x2b26)
  2598. - account_id
  2599. - char_id
  2600. - login_id1
  2601. - sex
  2602. - client_addr
  2603. - autotrade
  2604. desc:
  2605. - client authentication request
  2606. 0x2b28
  2607. Type: ZA
  2608. Structure: <cmd>.W <aid>.L <timediff>.L <character_name>.?B
  2609. index: 0,2,6,10
  2610. len: variable: 10+NAME_LENGTH
  2611. parameter:
  2612. - cmd : packet identification (0x2b28)
  2613. - aid
  2614. - timediff
  2615. - character_name
  2616. desc:
  2617. - chrif_req_charban
  2618. 0x2b2a
  2619. Type: ZA
  2620. Structure: <cmd>.W <aid>.L <character_name>.?B
  2621. index: 0,2,6
  2622. len: 6+NAME_LENGTH
  2623. parameter:
  2624. - cmd : packet identification (0x2b2a)
  2625. - aid
  2626. - character_name
  2627. desc:
  2628. - chrif_req_charunban
  2629. 0x2b2d
  2630. Type: ZA
  2631. Structure: <cmd>.W <char_id>.L
  2632. index: 0,2
  2633. len: 6
  2634. parameter:
  2635. - cmd : packet identification (0x2b2d)
  2636. desc:
  2637. - Requests bonus_script data
  2638. 0x2b2e
  2639. Type: ZA
  2640. Structure: <cmd>.W <len>.W <char_id>.L <count>.B { <bonus_script_data>.?B }
  2641. index: 0,2,4,8
  2642. len: variable: 9+count*bonus_script_data
  2643. parameter:
  2644. - cmd : packet identification (0x2b2e)
  2645. - len
  2646. - char_id
  2647. - count
  2648. desc:
  2649. - Stores bonus_script data(s) to the table
  2650. 0x3008
  2651. Type: ZA
  2652. Structure: <cmd>.W <buf>.?B
  2653. index: 0,2
  2654. len: variable: 2+len
  2655. parameter:
  2656. - cmd : packet identification (0x3008)
  2657. - buf
  2658. desc:
  2659. - chrif_send_report