1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
|
/*
* The ManaPlus Client
* Copyright (C) 2004-2009 The Mana World Development Team
* Copyright (C) 2009-2010 The Mana Developers
* Copyright (C) 2011-2017 The ManaPlus Developers
*
* This file is part of The ManaPlus Client.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define PACKETSOUT_VOID
// 0
packet(CMSG_SERVER_VERSION_REQUEST, 0x7530, 0, nullptr);
packet(CMSG_LOGIN_REGISTER, 0x0064, 0, lclif->p->parse_CA_LOGIN);
packet(CMSG_LOGIN_REGISTER2, 0x01dd, 0, lclif->p->parse_CA_LOGIN2);
packet(CMSG_LOGIN_REGISTER3, 0x01fa, 0, lclif->p->parse_CA_LOGIN3);
packet(CMSG_LOGIN_REGISTER4, 0x027c, 0, lclif->p->parse_CA_LOGIN4);
packet(CMSG_LOGIN_REGISTER_PCBANG, 0x0277, 0, lclif->p->parse_CA_LOGIN_PCBANG);
packet(CMSG_LOGIN_REGISTER_HAN, 0x02b0, 0, lclif->p->parse_CA_LOGIN_HAN);
packet(CMSG_LOGIN_REGISTER_SSO, 0x0825, -1, lclif->p->parse_CA_SSO_LOGIN_REQ);
packet(CMSG_LOGIN_REGISTER_KEY, 0x01db, 0, lclif->p->parse_CA_REQ_HASH);
packet(CMSG_NAME_REQUEST, 0x0094, 6, clif->pGetCharNameRequest);
packet(CMSG_CHAR_PASSWORD_CHANGE, 0x0061, 0, nullptr);
packet(CMSG_CHAR_SERVER_CONNECT, 0x0065, 0, chr->parse_char_connect);
packet(CMSG_CHAR_SELECT, 0x0066, 3, chr->parse_char_select);
packet(CMSG_CHAR_CREATE, 0x0067, 0, chr->parse_make_char_0067);
packet(CMSG_CHAR_DELETE, 0x0068, 56, chr->parse_char_delete_char_0068);
packet(CMSG_CHAR_DELETE2_REQ, 0x0827, 6, chr->parse_char_delete2_req);
packet(CMSG_CHAR_DELETE2_ACCEPT, 0x0829, 12, chr->parse_char_delete2_accept);
packet(CMSG_CHAR_DELETE2_CANCEL, 0x082b, 6, chr->parse_char_delete2_cancel);
packet(CMSG_CHAR_CREATE_PIN, 0x08ba, 10, chr->parse_char_pincode_first_pin);
packet(CMSG_CHAR_PIN_CHECK, 0x08b8, 10, chr->parse_char_pincode_check);
packet(CMSG_CHAR_PIN_CHANGE, 0x08be, 14, chr->parse_char_pincode_change);
packet(CMSG_CHAR_PIN_WINDOW, 0x08c5, 6, chr->parse_char_pincode_window);
packet(CMSG_CHAR_REQUEST_CHARS, 0x09a1, 2, chr->parse_char_request_chars);
packet(CMSG_CHAR_CHECK_RENAME, 0x08fc, 30, chr->parse_char_rename_char);
packet(CMSG_CHAR_CHECK_RENAME2, 0x028d, 34, chr->parse_char_rename_char2);
packet(CMSG_CHAR_RENAME, 0x028f, 6, chr->parse_char_rename_char_confirm);
packet(CMSG_CHAR_CHANGE_SLOT, 0x08d4, 8, chr->parse_char_move_character);
packet(CMSG_CHAR_REQUEST_CAPTCHA, 0x07e5, 8, chr->parse_char_request_captcha);
packet(CMSG_CHAR_CHECK_CAPTCHA, 0x07e7, 32, chr->parse_char_check_captcha);
packet(CMSG_MAP_SERVER_CONNECT, 0x0072, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x007e, 6, clif->pTickSend);
packet(CMSG_LOGIN_PING, 0x0200, 0, lclif->p->parse_CA_CONNECT_INFO_CHANGED);
packet(CMSG_LOGIN_HASH_CHECK, 0x0204, 0, lclif->p->parse_CA_EXE_HASHCHECK);
packet(CMSG_CHAR_PING, 0x0187, 56, chr->parse_char_ping);
packet(CMSG_MAP_LOADED, 0x007d, 2, clif->pLoadEndAck);
packet(CMSG_CLIENT_QUIT, 0x018A, 4, clif->pQuitGame);
packet(CMSG_CHAT_MESSAGE, 0x008c, -1, clif->pGlobalMessage);
packet(CMSG_CHAT_WHISPER, 0x0096, -1, clif->pWisMessage);
packet(CMSG_CHAT_ROOM_JOIN, 0x00d9, 14, clif->pChatAddMember);
packet(CMSG_CHAT_JOIN_CHANNEL, 0x0b07, 0, nullptr);
packet(CMSG_CHAT_PART_CHANNEL, 0x0b09, 0, nullptr);
packet(CMSG_BATTLE_CHAT_MESSAGE, 0x02db, -1, clif->pBattleChat);
packet(CMSG_CREAYE_CHAT_ROOM, 0x00d5, -1, clif->pCreateChatRoom);
packet(CMSG_LEAVE_CHAT_ROOM, 0x00e3, 2, clif->pChatLeave);
packet(CMSG_SET_CHAT_ROOM_OPTIONS, 0x00de, -1, clif->pChatRoomStatusChange);
packet(CMSG_SET_CHAT_ROOM_OWNER, 0x00e0, 30, clif->pChangeChatOwner);
packet(CMSG_KICK_FROM_CHAT_ROOM, 0x00e2, 26, clif->pKickFromChat);
packet(CMSG_SKILL_LEVELUP_REQUEST, 0x0112, 4, clif->pSkillUp);
packet(CMSG_STAT_UPDATE_REQUEST, 0x00bb, 5, clif->pStatusUp);
packet(CMSG_SKILL_USE_BEING, 0x0113, 10, clif->pUseSkillToId);
packet(CMSG_SKILL_USE_POSITION, 0x0116, 10, clif->pUseSkillToPos);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0190, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SKILL_USE_MAP, 0x011b, 20, clif->pUseSkillMap);
packet(CMSG_PLAYER_INVENTORY_USE, 0x0439, 8, clif->pUseItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x00a2, 6, clif->pDropItem);
packet(CMSG_PLAYER_EQUIP, 0x00a9, 6, clif->pEquipItem);
packet(CMSG_PLAYER_UNEQUIP, 0x00ab, 4, clif->pUnequipItem);
packet(CMSG_PLAYER_USE_CARD, 0x017a, 4, clif->pUseCard);
packet(CMSG_PLAYER_INSERT_CARD, 0x017c, 6, clif->pInsertCard);
packet(CMSG_PLAYER_VIEW_EQUIPMENT, 0x02d6, 6, clif->pViewPlayerEquip);
packet(CMSG_PLAYER_SET_EQUIPMENT_VISIBLE, 0x02d8, 10, clif->pEquipTick);
packet(CMSG_ITEM_PICKUP, 0x009f, 6, clif->pTakeItem);
packet(CMSG_PLAYER_CHANGE_DIR, 0x009b, 5, clif->pChangeDir);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0085, 5, clif->pWalkToXY);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0089, 7, clif->pActionRequest);
packet(CMSG_PLAYER_RESTART, 0x00b2, 3, clif->pRestart);
packet(CMSG_PLAYER_EMOTE, 0x00bf, 3, clif->pEmotion);
packet(CMSG_PLAYER_STOP_ATTACK, 0x0118, 2, clif->pStopAttack);
packet(CMSG_WHO_REQUEST, 0x00c1, 2, clif->pHowManyConnections);
packet(CMSG_NPC_TALK, 0x0090, 7, clif->pNpcClicked);
packet(CMSG_NPC_NEXT_REQUEST, 0x00b9, 6, clif->pNpcNextClicked);
packet(CMSG_NPC_CLOSE, 0x0146, 6, clif->pNpcCloseClicked);
packet(CMSG_NPC_LIST_CHOICE, 0x00b8, 7, clif->pNpcSelectMenu);
packet(CMSG_NPC_INT_RESPONSE, 0x0143, 10, clif->pNpcAmountInput);
packet(CMSG_NPC_STR_RESPONSE, 0x01d5, -1, clif->pNpcStringInput);
packet(CMSG_NPC_BUY_SELL_REQUEST, 0x00c5, 7, clif->pNpcBuySellSelected);
packet(CMSG_NPC_BUY_REQUEST, 0x00c8, -1, clif->pNpcBuyListSend);
packet(CMSG_NPC_SELL_REQUEST, 0x00c9, -1, clif->pNpcSellListSend);
packet(CMSG_TRADE_REQUEST, 0x00e4, 6, clif->pTradeRequest);
packet(CMSG_TRADE_RESPONSE, 0x00e6, 3, clif->pTradeAck);
packet(CMSG_TRADE_ITEM_ADD_REQUEST, 0x00e8, 8, clif->pTradeAddItem);
packet(CMSG_TRADE_CANCEL_REQUEST, 0x00ed, 2, clif->pTradeCancel);
packet(CMSG_TRADE_ADD_COMPLETE, 0x00eb, 2, clif->pTradeOk);
packet(CMSG_TRADE_OK, 0x00ef, 2, clif->pTradeCommit);
packet(CMSG_PARTY_CREATE, 0x00f9, 26, clif->pCreateParty);
packet(CMSG_PARTY_CREATE2, 0x01e8, 28, clif->pCreateParty2);
packet(CMSG_PARTY_INVITE, 0x00fc, 6, clif->pPartyInvite);
packet(CMSG_PARTY_INVITED, 0x00ff, 10, clif->pReplyPartyInvite);
packet(CMSG_PARTY_INVITED2, 0x02c7, 7, clif->pReplyPartyInvite2);
packet(CMSG_PARTY_LEAVE, 0x0100, 2, clif->pLeaveParty);
packet(CMSG_PARTY_SETTINGS, 0x0102, 6, clif->pPartyChangeOption);
packet(CMSG_PARTY_KICK, 0x0103, 30, clif->pRemovePartyMember);
packet(CMSG_PARTY_MESSAGE, 0x0108, -1, clif->pPartyMessage);
packet(CMSG_PARTY_CHANGE_LEADER, 0x07da, 6, clif->pPartyChangeLeader);
packet(CMSG_PARTY_ALLOW_INVITES, 0x02c8, 3, clif->pPartyTick);
packet(CMSG_MOVE_TO_STORAGE, 0x00f3, 8, clif->pMoveToKafra);
packet(CMSG_MOVE_FROM_STORAGE, 0x00f5, 8, clif->pMoveFromKafra);
packet(CMSG_CLOSE_STORAGE, 0x00f7, 2, clif->pCloseKafra);
packet(CMSG_MOVE_TO_CART, 0x0126, 8, clif->pPutItemToCart);
packet(CMSG_MOVE_FROM_CART, 0x0127, 8, clif->pGetItemFromCart);
packet(CMSG_CHANGE_CART, 0x01af, 4, clif->pChangeCart);
packet(CMSG_MOVE_FROM_STORAGE_TO_CART, 0x0128, 8, clif->pMoveFromKafraToCart);
packet(CMSG_MOVE_FROM_CART_TO_STORAGE, 0x0129, 8, clif->pMoveToKafraFromCart);
packet(CMSG_ADMIN_ANNOUNCE, 0x0099, -1, clif->pBroadcast);
packet(CMSG_ADMIN_LOCAL_ANNOUNCE, 0x019C, -1, clif->pLocalBroadcast);
packet(CMSG_ADMIN_HIDE, 0x019D, 6, clif->pGMHide);
packet(CMSG_ADMIN_KICK, 0x00CC, 6, clif->pGMKick);
packet(CMSG_ADMIN_KICK_ALL, 0x00ce, 2, clif->pGMKickAll);
packet(CMSG_ADMIN_RESET_PLAYER, 0x0197, 4, clif->pResetChar);
packet(CMSG_ADMIN_GOTO, 0x01bb, 26, clif->pGMShift);
packet(CMSG_ADMIN_RECALL, 0x01bd, 26, clif->pGMRecall);
packet(CMSG_ADMIN_MUTE, 0x0149, 9, clif->pGMReqNoChat);
packet(CMSG_ADMIN_MUTE_NAME, 0x0212, 26, clif->pGMRc);
packet(CMSG_ADMIN_ID_TO_LOGIN, 0x01df, 6, clif->pGMReqAccountName);
packet(CMSG_ADMIN_SET_TILE_TYPE, 0x0198, 8, clif->pGMChangeMapType);
packet(CMSG_ADMIN_UNEQUIP_ALL, 0x07f5, 6, clif->pGMFullStrip);
packet(CMSG_ADMIN_REQUEST_STATS, 0x0213, 26, clif->pCheck);
packet(CMSG_ADMIN_MONSTER_ITEM, 0x013f, 26, clif->pGM_Monster_Item);
packet(CMSG_GUILD_CHECK_MASTER, 0x014d, 2, clif->pGuildCheckMaster);
packet(CMSG_GUILD_REQUEST_INFO, 0x014f, 6, clif->pGuildRequestInfo);
packet(CMSG_GUILD_REQUEST_EMBLEM, 0x0151, 6, clif->pGuildRequestEmblem);
packet(CMSG_GUILD_CHANGE_EMBLEM, 0x0153, -1, clif->pGuildChangeEmblem);
packet(CMSG_GUILD_CHANGE_MEMBER_POS, 0x0155, -1, clif->pGuildChangeMemberPosition);
packet(CMSG_GUILD_LEAVE, 0x0159, 54, clif->pGuildLeave);
packet(CMSG_GUILD_EXPULSION, 0x015b, 54, clif->pGuildExpulsion);
packet(CMSG_GUILD_BREAK, 0x015d, 42, clif->pGuildBreak);
packet(CMSG_GUILD_CHANGE_POS_INFO, 0x0161, -1, clif->pGuildChangePositionInfo);
packet(CMSG_GUILD_CREATE, 0x0165, 30, clif->pCreateGuild);
packet(CMSG_GUILD_INVITE, 0x0168, 14, clif->pGuildInvite);
packet(CMSG_GUILD_INVITE_REPLY, 0x016b, 10, clif->pGuildReplyInvite);
packet(CMSG_GUILD_CHANGE_NOTICE, 0x016e, 186, clif->pGuildChangeNotice);
packet(CMSG_GUILD_ALLIANCE_REQUEST, 0x0170, 14, clif->pGuildRequestAlliance);
packet(CMSG_GUILD_ALLIANCE_REPLY, 0x0172, 10, clif->pGuildReplyAlliance);
packet(CMSG_GUILD_MESSAGE, 0x017e, -1, clif->pGuildMessage);
packet(CMSG_GUILD_OPPOSITION, 0x0180, 6, clif->pGuildOpposition);
packet(CMSG_GUILD_ALLIANCE_DELETE, 0x0183, 10, clif->pGuildDelAlliance);
packet(CMSG_SOLVE_CHAR_NAME, 0x0193, 6, clif->pSolveCharName);
packet(CMSG_IGNORE_ALL, 0x00d0, 3, clif->pPMIgnoreAll);
packet(CMSG_IGNORE_NICK, 0x00cf, 27, clif->pPMIgnore);
packet(CMSG_REQUEST_IGNORE_LIST, 0x00d3, 2, clif->pPMIgnoreList);
packet(CMSG_SET_SHORTCUTS, 0x02ba, 11, clif->pHotkey);
packet(CMSG_NPC_COMPLETE_PROGRESS_BAR, 0x02f1, 2, clif->pProgressbar);
packet(CMSG_NPC_PRODUCE_MIX, 0x018e, 10, clif->pProduceMix);
packet(CMSG_NPC_COOKING, 0x025b, 6, clif->pCooking);
packet(CMSG_NPC_REPAIR, 0x01fd, 15, clif->pRepairItem);
packet(CMSG_NPC_REFINE, 0x0222, 6, clif->pWeaponRefine);
packet(CMSG_NPC_IDENTIFY, 0x0178, 4, clif->pItemIdentify);
packet(CMSG_NPC_SELECT_ARROW, 0x01ae, 4, clif->pSelectArrow);
packet(CMSG_NPC_SELECT_AUTO_SPELL, 0x01ce, 6, clif->pAutoSpell);
packet(CMSG_PLAYER_MAPMOVE, 0x0140, 22, clif->pMapMove);
packet(CMSG_REMOVE_OPTION, 0x012a, 2, clif->pRemoveOption);
packet(CMSG_PLAYER_SET_MEMO, 0x011d, 2, clif->pRequestMemo);
packet(CMSG_PET_CATCH, 0x019f, 6, clif->pCatchPet);
packet(CMSG_PET_SEND_MESSAGE, 0x01a9, 6, clif->pSendEmotion);
packet(CMSG_PET_SET_NAME, 0x01a5, 26, clif->pChangePetName);
packet(CMSG_PET_SELECT_EGG, 0x01a7, 4, clif->pSelectEgg);
packet(CMSG_PET_MENU_ACTION, 0x01a1, 3, clif->pPetMenu);
packet(CMSG_PET_TALK, 0x0b0c, 0, nullptr);
packet(CMSG_PET_EMOTE, 0x0b0d, 0, nullptr);
packet(CMSG_PET_MOVE_TO, 0x0b11, 0, nullptr);
packet(CMSG_PET_DIRECTION, 0x0b12, 0, nullptr);
packet(CMSG_MERCENARY_ACTION, 0x029f, 3, clif->pmercenary_action);
packet(CMSG_HOMUNCULUS_SET_NAME, 0x0231, 26, clif->pChangeHomunculusName);
packet(CMSG_HOMMERC_MOVE_TO_MASTER, 0x0234, 6, clif->pHomMoveToMaster);
packet(CMSG_HOMMERC_MOVE_TO, 0x0232, 9, clif->pHomMoveTo);
packet(CMSG_HOMMERC_ATTACK, 0x0233, 11, clif->pHomAttack);
packet(CMSG_HOMMERC_TALK, 0x0b13, 0, nullptr);
packet(CMSG_HOMMERC_EMOTE, 0x0b14, 0, nullptr);
packet(CMSG_HOMMERC_DIRECTION, 0x0b15, 0, nullptr);
packet(CMSG_DORI_DORI, 0x01e7, 2, clif->pNoviceDoriDori);
packet(CMSG_EXPLOSION_SPIRITS, 0x01ed, 2, clif->pNoviceExplosionSpirits);
packet(CMSG_PVP_INFO, 0x020f, 10, clif->pPVPInfo);
packet(CMSG_PLAYER_AUTO_REVIVE, 0x0292, 2, clif->pAutoRevive);
packet(CMSG_QUEST_ACTIVATE, 0x02b6, 7, clif->pquestStateAck);
packet(CMSG_MAIL_REFRESH_INBOX, 0x023f, 2, clif->pMail_refreshinbox);
packet(CMSG_MAIL_READ_MESSAGE, 0x0241, 6, clif->pMail_read);
packet(CMSG_MAIL_GET_ATTACH, 0x0244, 6, clif->pMail_getattach);
packet(CMSG_MAIL_DELETE_MESSAGE, 0x0243, 6, clif->pMail_delete);
packet(CMSG_MAIL_RETURN_MESSAGE, 0x0273, 30, clif->pMail_return);
packet(CMSG_MAIL_SET_ATTACH, 0x0247, 8, clif->pMail_setattach);
packet(CMSG_MAIL_RESET_ATTACH, 0x0246, 4, clif->pMail_winopen);
packet(CMSG_MAIL_SEND, 0x0248, -1, clif->pMail_send);
packet(CMSG_FAMILY_ASK_FOR_CHILD, 0x01f9, 6, clif->pAdopt_request);
packet(CMSG_FAMILY_ASK_FOR_CHILD_REPLY, 0x01f7, 14, clif->pAdopt_reply);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0202, 26, clif->pFriendsListAdd);
packet(CMSG_FRIENDS_REQUEST_ACK, 0x0208, 14, clif->pFriendsListReply);
packet(CMSG_FRIENDS_DELETE_PLAYER, 0x0203, 10, clif->pFriendsListRemove);
packet(CMSG_AUCTION_CANCEL_REG, 0x024b, 4, clif->pAuction_cancelreg);
packet(CMSG_AUCTION_SET_ITEM, 0x024c, 8, clif->pAuction_setitem);
packet(CMSG_AUCTION_REGISTER, 0x024d, 12, clif->pAuction_register);
packet(CMSG_AUCTION_CANCEL, 0x024e, 6, clif->pAuction_cancel);
packet(CMSG_AUCTION_CLOSE, 0x025d, 6, clif->pAuction_close);
packet(CMSG_AUCTION_BID, 0x024f, 10, clif->pAuction_bid);
packet(CMSG_AUCTION_SEARCH, 0x0251, 34, clif->pAuction_search);
packet(CMSG_AUCTION_BUY_SELL, 0x025c, 4, clif->pAuction_buysell);
packet(CMSG_VENDING_CLOSE, 0x012e, 2, clif->pCloseVending);
packet(CMSG_VENDING_LIST_REQ, 0x0130, 6, clif->pVendingListReq);
packet(CMSG_VENDING_BUY, 0x0134, -1, clif->pPurchaseReq);
packet(CMSG_VENDING_BUY2, 0x0801, -1, clif->pPurchaseReq2);
packet(CMSG_VENDING_CREATE_SHOP, 0x01b2, -1, clif->pOpenVending);
packet(CMSG_MERGE_ITEM_ACK, 0x096e, -1, clif->ackmergeitems);
packet(CMSG_MERGE_ITEM_CANCEL, 0x0974, 2, clif->cancelmergeitem);
packet(CMSG_SET_STATUS, 0x0b0e, 0, nullptr);
packet(CMSG_ONLINE_LIST, 0x0b0f, 0, nullptr);
packet(CMSG_PLAYER_INVENTORY_USE2, 0x0b26, 6, nullptr);
#ifndef PACKETS_UPDATE
// 0
packet(CMSG_ALCHEMIST_RANKS, 0x0000, 0, nullptr);
packet(CMSG_BLACKSMITH_RANKS, 0x0000, 0, nullptr);
packet(CMSG_PK_RANKS, 0x0000, 0, nullptr);
packet(CMSG_TAEKWON_RANKS, 0x0000, 0, nullptr);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0000, 0, nullptr);
packet(CMSG_BUYINGSTORE_CREATE, 0x0000, 0, nullptr);
packet(CMSG_BUYINGSTORE_SELL, 0x0000, 0, nullptr);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0000, 0, nullptr);
packet(CMSG_SEARCHSTORE_CLOSE, 0x0000, 0, nullptr);
packet(CMSG_HOMUNCULUS_MENU, 0x0000, 0, nullptr);
packet(CMSG_SEARCHSTORE_CLICK, 0x0000, 0, nullptr);
packet(CMSG_BUYINGSTORE_OPEN, 0x0000, 0, nullptr);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0000, 0, nullptr);
packet(CMSG_QUICK_IDENTIFY_ITEM, 0x0000, 0, nullptr);
packet(CMSG_PARTY_INVITE2, 0x0000, 0, nullptr);
packet(CMSG_SKILL_FEEL_SAVE_OK, 0x0000, 0, nullptr);
packet(CMSG_SKILL_SELECT_MENU, 0x0000, 0, nullptr);
packet(CMSG_PLAYER_LESS_EFFECTS, 0x0000, 0, nullptr);
packet(CMSG_SHORTCUTS_ROW_SHIFT, 0x0000, 0, nullptr);
packet(CMSG_NPC_SHOP_CLOSE, 0x0000, 0, nullptr);
packet(CMSG_NPC_MARKET_BUY, 0x0000, 0, nullptr);
packet(CMSG_NPC_MARKET_CLOSE, 0x0000, 0, nullptr);
packet(CMSG_BANK_DEPOSIT, 0x0000, 0, nullptr);
packet(CMSG_BANK_WITHDRAW, 0x0000, 0, nullptr);
packet(CMSG_BANK_CHECK, 0x0000, 0, nullptr);
packet(CMSG_BANK_OPEN, 0x0000, 0, nullptr);
packet(CMSG_BANK_CLOSE, 0x0000, 0, nullptr);
packet(CMSG_REQUEST_RANKS, 0x0000, 0, nullptr);
packet(CMSG_PLAYER_FAVORITE_ITEM, 0x0000, 0, nullptr);
packet(CMSG_BATTLE_REGISTER, 0x0000, 0, nullptr);
packet(CMSG_BATTLE_REVOKE, 0x0000, 0, nullptr);
packet(CMSG_BATTLE_BEGIN_ACK, 0x0000, 0, nullptr);
packet(CMSG_BATTLE_CHECK_STATE, 0x0000, 0, nullptr);
packet(CMSG_NPC_CASH_SHOP_BUY, 0x0000, 0, nullptr);
packet(CMSG_NPC_CASH_SHOP_BUY1, 0x0000, 0, nullptr);
packet(CMSG_NPC_CASH_SHOP_CLOSE, 0x0000, 0, nullptr);
packet(CMSG_NPC_CASH_SHOP_OPEN, 0x0000, 0, nullptr);
packet(CMSG_NPC_CASH_SHOP_REQUEST_TAB, 0x0000, 0, nullptr);
packet(CMSG_NPC_CASH_SHOP_SCHEDULE, 0x0000, 0, nullptr);
packet(CMSG_GUILD_INVITE2, 0x0000, 0, nullptr);
packet(CMSG_STORAGE_PASSWORD, 0x0000, 0, nullptr);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0000, 0, nullptr);
packet(CMSG_SELECT_CART, 0x0000, 0, nullptr);
packet(CMSG_ROULETTE_INFO, 0x0000, 0, nullptr);
packet(CMSG_ROULETTE_GENERATE, 0x0000, 0, nullptr);
packet(CMSG_ROULETTE_OPEN, 0x0000, 0, nullptr);
packet(CMSG_ROULETTE_CLOSE, 0x0000, 0, nullptr);
packet(CMSG_ROULETTE_RECV_ITEM, 0x0000, 0, nullptr);
packet(CMSG_ADMIN_RECALL2, 0x0000, 0, nullptr);
packet(CMSG_ADMIN_REMOVE2, 0x0000, 0, nullptr);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0000, 0, nullptr);
packet(CMSG_BOOKING_SEARCH_REQ, 0x0000, 0, nullptr);
packet(CMSG_BOOKING_DELETE_REQ, 0x0000, 0, nullptr);
packet(CMSG_BOOKING_UPDATE_REQ, 0x0000, 0, nullptr);
packet(CMSG_CHECK_NAME, 0x0000, 0, nullptr);
packet(CMSG_MAIL2_OPEN_WRITE_MAIL, 0x0000, 0, nullptr);
packet(CMSG_MAIL2_ADD_ITEM_TO_MAIL, 0x0000, 0, nullptr);
packet(CMSG_MAIL2_REMOVE_ITEM_MAIL, 0x0000, 0, nullptr);
packet(CMSG_MAIL2_SEND_MAIL, 0x0000, 0, nullptr);
packet(CMSG_MAIL2_NEXT_PAGE, 0x0000, 0, nullptr);
packet(CMSG_MAIL2_READ_MAIL, 0x0000, 0, nullptr);
#else
// 20040713
if (packetVersion >= 20040713)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x009b, 13, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x009f, 10, clif->pTakeItem);
}
// 20040726
if (packetVersion >= 20040726)
{
packet(CMSG_CHAT_MESSAGE, 0x00f3, -1, clif->pGlobalMessage);
packet(CMSG_MAP_PING, 0x00f7, 10, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x009f, 13, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0094, 10, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0072, 14, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0113, 16, clif->pMoveToKafra);
}
// 20040809
if (packetVersion >= 20040809)
{
packet(CMSG_MAP_PING, 0x00f7, 13, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x009f, 12, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0094, 13, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0072, 17, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0113, 23, clif->pMoveToKafra);
}
// 20040906
if (packetVersion >= 20040906)
{
packet(CMSG_CHAT_MESSAGE, 0x009f, -1, clif->pGlobalMessage);
packet(CMSG_MAP_PING, 0x0116, 11, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x00f3, 10, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0113, 11, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0094, 17, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x007e, 19, clif->pMoveToKafra);
}
// 20040920
if (packetVersion >= 20040920)
{
packet(CMSG_MAP_PING, 0x0116, 14, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x00f3, 18, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0113, 14, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0094, 19, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x007e, 25, clif->pMoveToKafra);
}
// 20041005
if (packetVersion >= 20041005)
{
packet(CMSG_MAP_PING, 0x0116, 10, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x00f3, 13, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0113, 10, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0094, 14, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x007e, 16, clif->pMoveToKafra);
}
// 20041025
if (packetVersion >= 20041025)
{
packet(CMSG_MAP_PING, 0x0116, 9, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x00f3, 15, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0113, 9, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0094, 12, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x007e, 13, clif->pMoveToKafra);
}
// 20041108
if (packetVersion >= 20041108)
{
packet(CMSG_ALCHEMIST_RANKS, 0x0218, 2, clif->pAlchemist);
packet(CMSG_BLACKSMITH_RANKS, 0x0217, 2, clif->pBlacksmith);
}
// 20041115
if (packetVersion >= 20041115)
{
packet(CMSG_PLAYER_LESS_EFFECTS, 0x021d, 6, clif->pLessEffect);
}
// 20041129
if (packetVersion >= 20041129)
{
packet(CMSG_CHAT_MESSAGE, 0x0085, -1, clif->pGlobalMessage);
packet(CMSG_MAP_PING, 0x0089, 7, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x00f3, 8, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x00a2, 7, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0116, 12, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0094, 14, clif->pMoveToKafra);
}
// 20050110
if (packetVersion >= 20050110)
{
packet(CMSG_CHAT_MESSAGE, 0x00f3, -1, clif->pGlobalMessage);
packet(CMSG_CLOSE_STORAGE, 0x0193, 2, clif->pCloseKafra);
packet(CMSG_MAP_PING, 0x0089, 9, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0085, 23, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x00f5, 9, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0116, 20, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0094, 20, clif->pMoveToKafra);
}
// 20050328
if (packetVersion >= 20050328)
{
packet(CMSG_TAEKWON_RANKS, 0x0225, 2, clif->pTaekwon);
}
// 20050425
if (packetVersion >= 20050425)
{
packet(CMSG_HOMUNCULUS_MENU, 0x022d, 5, clif->pHomMenu);
}
// 20050509
if (packetVersion >= 20050509)
{
packet(CMSG_MAP_PING, 0x0089, 8, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0085, 11, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x00f5, 8, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0116, 10, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0094, 14, clif->pMoveToKafra);
}
// 20050530
if (packetVersion >= 20050530)
{
packet(CMSG_PK_RANKS, 0x0237, 2, clif->pRankingPk);
}
// 20050628
if (packetVersion >= 20050628)
{
packet(CMSG_MAP_PING, 0x0089, 13, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0085, 17, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x00f5, 13, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0116, 12, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0094, 31, clif->pMoveToKafra);
}
// 20050718
if (packetVersion >= 20050718)
{
packet(CMSG_MAP_PING, 0x0089, 7, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0085, 11, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x00f5, 7, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0094, 21, clif->pMoveToKafra);
}
// 20050719
if (packetVersion >= 20050719)
{
packet(CMSG_MAP_PING, 0x0089, 13, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0085, 17, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x00f5, 13, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0094, 31, clif->pMoveToKafra);
}
// 20050817
if (packetVersion >= 20050817)
{
packet(CMSG_SKILL_FEEL_SAVE_OK, 0x0254, 3, clif->pFeelSaveOk);
}
// 20060327
if (packetVersion >= 20060327)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0085, 12, clif->pChangeDir);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0116, 17, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0094, 23, clif->pMoveToKafra);
}
// 20070108
if (packetVersion >= 20070108)
{
packet(CMSG_MAP_PING, 0x0089, 11, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0085, 14, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x00f5, 11, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0116, 19, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0094, 17, clif->pMoveToKafra);
}
// 20070212
if (packetVersion >= 20070212)
{
packet(CMSG_MAP_PING, 0x0089, 8, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0085, 11, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x00f5, 8, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0116, 10, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0094, 14, clif->pMoveToKafra);
}
// 20070227
if (packetVersion >= 20070227)
{
packet(CMSG_PARTY_INVITE2, 0x02c4, 26, clif->pPartyInvite2);
}
// 20080827
if (packetVersion >= 20080827)
{
packet(CMSG_MAP_PING, 0x0089, 11, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0085, 10, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x00f5, 11, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0116, 17, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0094, 19, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_DEST, 0x00a7, 9, clif->pWalkToXY);
packet(CMSG_NAME_REQUEST, 0x008c, 14, clif->pGetCharNameRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0113, 25, clif->pUseSkillToPos);
packet(CMSG_SOLVE_CHAR_NAME, 0x00a2, 14, clif->pSolveCharName);
packet(CMSG_MOVE_FROM_STORAGE, 0x00f7, 17, clif->pMoveFromKafra);
}
// 20080910
if (packetVersion >= 20080910)
{
packet(CMSG_MAP_SERVER_CONNECT, 0x0436, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0437, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_BEING, 0x0438, 10, clif->pUseSkillToId);
}
// 20081210
if (packetVersion >= 20081210)
{
packet(CMSG_SKILL_SELECT_MENU, 0x0443, 8, clif->pSkillSelectMenu);
}
// 20090603
if (packetVersion >= 20090603)
{
packet(CMSG_PARTY_SETTINGS, 0x07d7, 8, clif->pPartyChangeOption);
}
// 20091222
if (packetVersion >= 20091222)
{
packet(CMSG_BOOKING_DELETE_REQ, 0x0806, 4, clif->pPartyBookingDeleteReq);
}
// 20091229
if (packetVersion >= 20091229)
{
packet(CMSG_BOOKING_SEARCH_REQ, 0x0803, 14, clif->pPartyBookingSearchReq);
packet(CMSG_BOOKING_DELETE_REQ, 0x0806, 2, clif->pPartyBookingDeleteReq);
packet(CMSG_BOOKING_UPDATE_REQ, 0x0808, 14, clif->pPartyBookingUpdateReq);
}
// 20100303
if (packetVersion >= 20100303)
{
packet(CMSG_BUYINGSTORE_CREATE, 0x0811, -1, clif->pReqOpenBuyingStore);
}
// 20100420
if (packetVersion >= 20100420)
{
packet(CMSG_BUYINGSTORE_CLOSE, 0x0815, 2, clif->pReqCloseBuyingStore);
packet(CMSG_BUYINGSTORE_SELL, 0x0819, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_OPEN, 0x0817, 6, clif->pReqClickBuyingStore);
}
// 20100601
if (packetVersion >= 20100601)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x0835, -1, clif->pSearchStoreInfo);
}
// 20100608
if (packetVersion >= 20100608)
{
packet(CMSG_SEARCHSTORE_CLICK, 0x083c, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0838, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLOSE, 0x083b, 2, clif->pCloseSearchStoreInfo);
}
// 20100803
if (packetVersion >= 20100803)
{
packet(CMSG_ADMIN_RECALL2, 0x0842, 6, clif->pGMRecall2);
packet(CMSG_ADMIN_REMOVE2, 0x0843, 6, clif->pGMRemove2);
}
// 20101124
if (packetVersion >= 20101124)
{
packet(CMSG_MAP_PING, 0x0360, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0361, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0362, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0363, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0364, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0367, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x035f, 5, clif->pWalkToXY);
packet(CMSG_NAME_REQUEST, 0x0368, 6, clif->pGetCharNameRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0366, 10, clif->pUseSkillToPos);
packet(CMSG_SOLVE_CHAR_NAME, 0x0369, 6, clif->pSolveCharName);
packet(CMSG_MOVE_FROM_STORAGE, 0x0365, 8, clif->pMoveFromKafra);
packet(CMSG_MAP_SERVER_CONNECT, 0x0436, 19, clif->pWantToConnection);
packet(CMSG_NPC_CASH_SHOP_BUY, 0x0288, -1, clif->pcashshop_buy);
}
// 20110614
if (packetVersion >= 20110614)
{
packet(CMSG_NPC_CASH_SHOP_SCHEDULE, 0x08c9, 2, clif->pCashShopSchedule);
}
// 20110718
if (packetVersion >= 20110718)
{
packet(CMSG_NPC_CASH_SHOP_CLOSE, 0x084a, 2, clif->pCashShopClose);
packet(CMSG_NPC_CASH_SHOP_OPEN, 0x0844, 2, clif->pCashShopOpen);
packet(CMSG_NPC_CASH_SHOP_REQUEST_TAB, 0x0846, 4, clif->pCashShopReqTab);
packet(CMSG_NPC_CASH_SHOP_BUY1, 0x0848, -1, clif->pCashShopBuy);
}
// 20111005
if (packetVersion >= 20111005)
{
packet(CMSG_NAME_REQUEST, 0x088a, 6, clif->pGetCharNameRequest);
packet(CMSG_MAP_PING, 0x0817, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0366, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0815, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0885, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0893, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x08ad, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0364, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0369, 10, clif->pUseSkillToPos);
packet(CMSG_SOLVE_CHAR_NAME, 0x0838, 6, clif->pSolveCharName);
packet(CMSG_MOVE_FROM_STORAGE, 0x0897, 8, clif->pMoveFromKafra);
packet(CMSG_BATTLE_REGISTER, 0x08d7, 28, clif->pBGQueueRegister);
packet(CMSG_BATTLE_REVOKE, 0x08da, 26, clif->pBGQueueRevokeReq);
packet(CMSG_BATTLE_BEGIN_ACK, 0x08e0, 51, clif->pBGQueueBattleBeginAck);
packet(CMSG_BATTLE_CHECK_STATE, 0x090a, 26, clif->pBGQueueCheckState);
}
// 20111102
if (packetVersion >= 20111102)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x08ab, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x0835, 19, clif->pWantToConnection); // non PACKETVER_RE
packet(CMSG_MAP_SERVER_CONNECT, 0x083c, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x0899, 6, clif->pTickSend); // non PACKETVER_RE
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x088b, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0892, 5, clif->pWalkToXY); // non PACKETVER_RE
packet(CMSG_BUYINGSTORE_CLOSE, 0x089b, 2, clif->pReqCloseBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x08aa, 7, clif->pActionRequest);
packet(CMSG_BUYINGSTORE_SELL, 0x089e, -1, clif->pReqTradeBuyingStore);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0436, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x08a2, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_BUYINGSTORE_OPEN, 0x08a1, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0898, 5, clif->pHomMenu);
packet(CMSG_BUYINGSTORE_CREATE, 0x0835, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x02c4, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x088d, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0281, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0811, -1, clif->pItemListWindowSelected);
}
// 20120307
if (packetVersion >= 20120307)
{
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0884, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x086A, 19, clif->pWantToConnection);
packet(CMSG_CHAR_CREATE, 0x0970, 31, chr->parse_char_create_new_char);
packet(CMSG_MAP_PING, 0x0887, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0890, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0865, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x02c4, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x093b, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0885, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0369, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x0963, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0863, 5, clif->pHomMenu);
packet(CMSG_SKILL_USE_BEING, 0x0889, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x0929, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0861, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0870, -1, clif->pItemListWindowSelected);
}
// 20120410
if (packetVersion >= 20120410)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_MAP_SERVER_CONNECT, 0x094b, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x0886, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0871, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0938, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0891, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x086c, 8, clif->pMoveToKafra);
packet(CMSG_NAME_REQUEST, 0x0889, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_SOLVE_CHAR_NAME, 0x0884, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x089c, 26, clif->pFriendsListAdd);
packet(CMSG_MOVE_FROM_STORAGE, 0x08a6, 8, clif->pMoveFromKafra);
packet(CMSG_HOMUNCULUS_MENU, 0x0885, 5, clif->pHomMenu);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_FAVORITE_ITEM, 0x0907, 5, clif->pMoveItem);
packet(CMSG_PARTY_INVITE2, 0x091c, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0961, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0945, -1, clif->pItemListWindowSelected);
}
// 20120418
if (packetVersion >= 20120418)
{
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_GUILD_INVITE2, 0x0916, 26, clif->pGuildInvite2);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x08a8, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
}
// 20120502
if (packetVersion >= 20120502)
{
packet(CMSG_SELECT_CART, 0x0980, 7, clif->pSelectCart);
}
// 20120702
if (packetVersion >= 20120702)
{
packet(CMSG_MAP_SERVER_CONNECT, 0x0363, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x0364, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0960, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x089f, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x089e, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x08a0, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0889, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0953, 5, clif->pWalkToXY);
packet(CMSG_NAME_REQUEST, 0x094a, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x085a, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0863, 10, clif->pUseSkillToPos);
packet(CMSG_SOLVE_CHAR_NAME, 0x0886, 6, clif->pSolveCharName);
packet(CMSG_MOVE_FROM_STORAGE, 0x0861, 8, clif->pMoveFromKafra);
packet(CMSG_SKILL_USE_BEING, 0x0862, 10, clif->pUseSkillToId);
}
// 20120710
if (packetVersion >= 20120710)
{
packet(CMSG_BUYINGSTORE_CLOSE, 0x0886, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
}
// 20120716
if (packetVersion >= 20120716)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x0811, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0940, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x0819, 36, clif->pStoragePassword);
}
// 20120925
if (packetVersion >= 20120925)
{
packet(CMSG_PLAYER_EQUIP, 0x0998, 8, clif->pEquipItem);
}
// 20130320
if (packetVersion >= 20130320)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x094e, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x0888, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x0363, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0897, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0933, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0438, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x08ac, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x085a, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x092e, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0881, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0886, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x0898, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x088e, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0959, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0922, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x094c, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x086f, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x0365, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x0874, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x035f, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x093f, 5, clif->pHomMenu);
packet(CMSG_BUYINGSTORE_CREATE, 0x0938, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x089b, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x086d, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0947, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0868, -1, clif->pItemListWindowSelected);
}
// 20130320
if (packetVersion >= 20130320)
{
packet(CMSG_BANK_DEPOSIT, 0x09a7, 10, clif->pBankDeposit);
packet(CMSG_BANK_WITHDRAW, 0x09a9, 10, clif->pBankWithdraw);
packet(CMSG_BANK_CHECK, 0x09ab, 6, clif->pBankCheck);
}
// 20130417
if (packetVersion >= 20130417)
{
packet(CMSG_BANK_OPEN, 0x09b6, 6, clif->pBankOpen);
packet(CMSG_BANK_CLOSE, 0x09b8, 6, clif->pBankClose);
}
// 20130515
if (packetVersion >= 20130515)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x0943, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0362, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x08a1, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0944, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0887, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0962, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x08ac, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0931, 5, clif->pHomMenu);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x0947, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x093e, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0963, -1, clif->pItemListWindowSelected);
}
// 20130522
if (packetVersion >= 20130522)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x095b, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x08a9, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x07ec, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0925, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x095e, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x089c, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x08a3, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0964, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x08aa, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0360, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x086e, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x08a6, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x08a2, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0811, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0952, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0369, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0362, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x093e, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x087e, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0368, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0926, 5, clif->pHomMenu);
packet(CMSG_BUYINGSTORE_CREATE, 0x0874, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x095c, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x0950, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x088e, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x086a, -1, clif->pItemListWindowSelected);
}
// 20130529
if (packetVersion >= 20130529)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x0918, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x0919, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x0897, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0951, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0895, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0938, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x085e, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0941, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0876, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0964, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x0863, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0890, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0917, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0936, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0937, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0877, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x085a, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x0957, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0892, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x023b, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x08a7, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_CREATE, 0x0869, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x0438, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x08a8, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0956, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0958, -1, clif->pItemListWindowSelected);
}
// 20130605
if (packetVersion >= 20130605)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_REQUEST_RANKS, 0x097c, 4, clif->pRanklist);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0883, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
}
// 20130612
if (packetVersion >= 20130612)
{
packet(CMSG_MAP_SERVER_CONNECT, 0x0919, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DIR, 0x087e, 5, clif->pChangeDir);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0940, 26, clif->pFriendsListAdd);
packet(CMSG_HOMUNCULUS_MENU, 0x093a, 5, clif->pHomMenu);
packet(CMSG_STORAGE_PASSWORD, 0x0964, 36, clif->pStoragePassword);
}
// 20130618
if (packetVersion >= 20130618)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x0281, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x095b, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x0930, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x08a6, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0962, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0885, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x094f, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0363, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x088e, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x085a, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x0944, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0889, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x096a, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0891, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0945, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0953, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x0890, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x0936, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0862, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x02c4, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0917, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_CREATE, 0x0932, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x0951, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x0887, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0864, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0942, -1, clif->pItemListWindowSelected);
}
// 20130626
if (packetVersion >= 20130626)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x088c, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x094d, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x088b, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0921, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0365, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x08ab, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x0817, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0960, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0952, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x0895, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0930, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x08a5, -1, clif->pItemListWindowSelected);
}
// 20130703
if (packetVersion >= 20130703)
{
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0930, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0360, 26, clif->pFriendsListAdd);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0202, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x094a, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0873, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
}
// 20130807
if (packetVersion >= 20130807)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_STORAGE_PASSWORD, 0x0887, 36, clif->pStoragePassword);
}
// 20130814
if (packetVersion >= 20130814)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x0889, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x0368, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x088a, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x088c, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0926, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0202, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0962, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0941, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x093a, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x094e, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x0937, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0874, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0887, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0835, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0923, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0281, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x0868, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x0873, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0895, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0958, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x095f, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_CREATE, 0x0936, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x0947, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x0927, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0885, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x08a4, -1, clif->pItemListWindowSelected);
}
// 20130814
if (packetVersion >= 20130814)
{
packet(CMSG_ADMIN_MONSTER_ITEM, 0x09ce, 102, clif->pGM_Monster_Item);
}
// 20131218
if (packetVersion >= 20131218)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x092f, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0947, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x022d, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x08ab, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0811, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_NPC_SHOP_CLOSE, 0x09d4, 2, clif->pNPCShopClosed);
packet(CMSG_NPC_MARKET_BUY, 0x09d6, -1, clif->pNPCMarketPurchase);
packet(CMSG_NPC_MARKET_CLOSE, 0x09d8, 2, clif->pNPCMarketClosed);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x085c, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
}
if (packetVersion >= 20131218)
{
packet(CMSG_MAIL2_NEXT_PAGE, 0x09ee, 11, clif->pRodexNextMaillist);
}
// 20131223
if (packetVersion >= 20131223)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_STORAGE_PASSWORD, 0x08a4, 36, clif->pStoragePassword);
}
if (packetVersion >= 20131223)
{
packet(CMSG_MAIL2_READ_MAIL, 0x09ea, 11, clif->pRodexReadMail);
}
// 20131230
if (packetVersion >= 20131230)
{
packet(CMSG_BUYINGSTORE_CREATE, 0x0365, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_SELL, 0x087f, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x093d, -1, clif->pSearchStoreInfo);
packet(CMSG_BUYINGSTORE_CLOSE, 0x094c, 2, clif->pReqCloseBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0949, 5, clif->pHomMenu);
packet(CMSG_SEARCHSTORE_CLICK, 0x087b, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_BUYINGSTORE_OPEN, 0x0969, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x02C4, 10, clif->pUseSkillToId);
packet(CMSG_NAME_REQUEST, 0x0926, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_DIR, 0x094A, 5, clif->pChangeDir);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0860, 6, clif->pDropItem);
packet(CMSG_SKILL_USE_POSITION, 0x091E, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x092A, 6, clif->pTakeItem);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0369, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_MOVE_TO_STORAGE, 0x0968, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_DEST, 0x035f, 5, clif->pWalkToXY);
packet(CMSG_MAP_PING, 0x0438, 6, clif->pTickSend);
packet(CMSG_MOVE_FROM_STORAGE, 0x0895, 8, clif->pMoveFromKafra);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0871, 7, clif->pActionRequest);
packet(CMSG_MAP_SERVER_CONNECT, 0x089c, 19, clif->pWantToConnection);
packet(CMSG_PARTY_INVITE2, 0x08a9, 26, clif->pPartyInvite2);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0943, 26, clif->pFriendsListAdd);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x096a, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0898, 6, clif->pSolveCharName);
packet(CMSG_STORAGE_PASSWORD, 0x091d, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x022d, -1, clif->pItemListWindowSelected);
}
if (packetVersion >= 20131230)
{
packet(CMSG_MAIL2_SEND_MAIL, 0x09ec, -1, clif->pRodexSendMail);
}
// 20140115
if (packetVersion >= 20140115)
{
// look like server packet bug
// packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0965, 2, clif->pReqCloseBuyingStore);
packet(CMSG_BUYINGSTORE_SELL, 0x096A, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0815, -1, clif->pSearchStoreInfo);
packet(CMSG_HOMUNCULUS_MENU, 0x092d, 5, clif->pHomMenu);
packet(CMSG_SEARCHSTORE_CLICK, 0x0360, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_BUYINGSTORE_OPEN, 0x088A, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x083C, 10, clif->pUseSkillToId);
packet(CMSG_NAME_REQUEST, 0x0802, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_DIR, 0x08A7, 5, clif->pChangeDir);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0361, 6, clif->pDropItem);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x0940, 6, clif->pTakeItem);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0817, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_MOVE_TO_STORAGE, 0x088E, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_MOVE_FROM_STORAGE, 0x0367, 8, clif->pMoveFromKafra);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_MAP_SERVER_CONNECT, 0x0966, 19, clif->pWantToConnection);
packet(CMSG_PARTY_INVITE2, 0x095d, 26, clif->pPartyInvite2);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x089b, 26, clif->pFriendsListAdd);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_STORAGE_PASSWORD, 0x0865, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0965, -1, clif->pItemListWindowSelected);
}
// 20140129
if (packetVersion >= 20140129)
{
packet(CMSG_SHORTCUTS_ROW_SHIFT, 0x0a01, 3, clif->pHotkeyRowShift);
}
// 20140205
if (packetVersion == 20140205)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x0938, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20140305
if (packetVersion == 20140305)
{
packet(CMSG_ITEM_PICKUP, 0x0202, 6, clif->pTakeItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0361, -1, clif->pReqOpenBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0436, 10, clif->pUseSkillToPos);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_MAP_SERVER_CONNECT, 0x0438, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x07e4, 26, clif->pFriendsListAdd);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0815, 5, clif->pChangeDir);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
// packet(UNKNOWN, 0x0878, 4, clif->pDull);
packet(CMSG_HOMUNCULUS_MENU, 0x0934, 5, clif->pHomMenu);
packet(CMSG_STORAGE_PASSWORD, 0x095e, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20140402
if (packetVersion == 20140402)
{
packet(CMSG_BUYINGSTORE_OPEN, 0x023b, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0360, 5, clif->pChangeDir);
packet(CMSG_SKILL_USE_POSITION, 0x0364, 10, clif->pUseSkillToPos);
packet(CMSG_SOLVE_CHAR_NAME, 0x07ec, 6, clif->pSolveCharName);
packet(CMSG_MOVE_FROM_STORAGE, 0x085b, 8, clif->pMoveFromKafra);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x085d, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0867, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x0868, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0882, 6, clif->pDropItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0883, -1, clif->pItemListWindowSelected);
packet(CMSG_NAME_REQUEST, 0x088a, 6, clif->pGetCharNameRequest);
// packet(UNKNOWN, 0x088c, 4, clif->pDull);
packet(CMSG_PARTY_INVITE2, 0x0890, 26, clif->pPartyInvite2);
packet(CMSG_HOMUNCULUS_MENU, 0x0896, 5, clif->pHomMenu);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x089a, 26, clif->pFriendsListAdd);
packet(CMSG_BOOKING_REGISTER_REQ, 0x08ac, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_BUYINGSTORE_SELL, 0x091f, -1, clif->pReqTradeBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0920, 19, clif->pWantToConnection);
packet(CMSG_STORAGE_PASSWORD, 0x0926, 36, clif->pStoragePassword);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x092d, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0933, -1, clif->pSearchStoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x093f, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CREATE, 0x0944, -1, clif->pReqOpenBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0946, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x094c, 8, clif->pDull);
packet(CMSG_MAP_PING, 0x0950, 6, clif->pTickSend);
packet(CMSG_ITEM_PICKUP, 0x0958, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x095c, 8, clif->pMoveToKafra);
packet(CMSG_SEARCHSTORE_CLICK, 0x0965, 12, clif->pSearchStoreInfoListItemClick);
}
// 20140416
if (packetVersion == 20140416)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x095c, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
if (packetVersion >= 20140416)
{
packet(CMSG_MAIL2_OPEN_WRITE_MAIL, 0x0a08, 26, clif->pRodexOpenWriteMail);
packet(CMSG_MAIL2_ADD_ITEM_TO_MAIL, 0x0a04, 6, clif->pRodexAddItem);
packet(CMSG_MAIL2_REMOVE_ITEM_MAIL, 0x0a06, 6, clif->pRodexRemoveItem);
}
// 20140423
if (packetVersion >= 20140423)
{
packet(CMSG_CHECK_NAME, 0x0a13, 26, clif->pRodexCheckName);
}
// 20140605
if (packetVersion >= 20140605)
{
packet(CMSG_ROULETTE_INFO, 0x0a1b, 2, clif->pRouletteInfo);
}
// 20140611
if (packetVersion >= 20140611)
{
packet(CMSG_ROULETTE_GENERATE, 0x0a1f, 2, clif->pRouletteGenerate);
packet(CMSG_ROULETTE_OPEN, 0x0a19, 2, clif->pRouletteOpen);
packet(CMSG_ROULETTE_CLOSE, 0x0a1d, 2, clif->pRouletteClose);
}
// 20140618
if (packetVersion >= 20140618)
{
packet(CMSG_ROULETTE_RECV_ITEM, 0x0a21, 3, clif->pRouletteRecvItem);
}
// 20141016
if (packetVersion == 20141016)
{
packet(CMSG_MOVE_FROM_STORAGE, 0x022d, 8, clif->pMoveFromKafra);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_HOMUNCULUS_MENU, 0x0364, 5, clif->pHomMenu);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_MAP_SERVER_CONNECT, 0x086e, 19, clif->pWantToConnection);
// packet(UNKNOWN, 0x0922, 4, clif->pDull);
packet(CMSG_STORAGE_PASSWORD, 0x0936, 36, clif->pStoragePassword);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x094b, 26, clif->pFriendsListAdd);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0967, 5, clif->pChangeDir);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20141022
if (packetVersion == 20141022)
{
packet(CMSG_SKILL_USE_POSITION, 0x023b, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_STORAGE_PASSWORD, 0x0438, 36, clif->pStoragePassword);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_CLICK, 0x0835, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_MOVE_TO_STORAGE, 0x0878, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x087d, 6, clif->pDropItem);
packet(CMSG_PARTY_INVITE2, 0x0896, 26, clif->pPartyInvite2);
packet(CMSG_HOMUNCULUS_MENU, 0x0899, 5, clif->pHomMenu);
packet(CMSG_MOVE_FROM_STORAGE, 0x08aa, 8, clif->pMoveFromKafra);
// packet(UNKNOWN, 0x08ab, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DIR, 0x08ad, 5, clif->pChangeDir);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x091a, 26, clif->pFriendsListAdd);
// packet(UNKNOWN, 0x092b, 8, clif->pDull);
packet(CMSG_MAP_SERVER_CONNECT, 0x093b, 19, clif->pWantToConnection);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0940, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_ITEM_PICKUP, 0x094e, 6, clif->pTakeItem);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0955, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20141119
if (packetVersion >= 20141119)
{
packet(CMSG_QUICK_IDENTIFY_ITEM, 0x0a35, 4, clif->pOneClick_ItemIdentify);
}
// 20150107
if (packetVersion == 20150107)
{
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x087c, 26, clif->pFriendsListAdd);
packet(CMSG_STORAGE_PASSWORD, 0x0895, 36, clif->pStoragePassword);
packet(CMSG_HOMUNCULUS_MENU, 0x092d, 5, clif->pHomMenu);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0943, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x0947, 19, clif->pWantToConnection);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20150114
if (packetVersion == 20150114)
{
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_BEING, 0x0436, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MAP_SERVER_CONNECT, 0x083c, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0868, 26, clif->pFriendsListAdd);
packet(CMSG_HOMUNCULUS_MENU, 0x0899, 5, clif->pHomMenu);
packet(CMSG_STORAGE_PASSWORD, 0x0946, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x0955, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0957, 5, clif->pChangeDir);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20150128
if (packetVersion == 20150128)
{
packet(CMSG_SEARCHSTORE_CLICK, 0x0202, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_PLAYER_CHANGE_DIR, 0x023b, 5, clif->pChangeDir);
packet(CMSG_BUYINGSTORE_OPEN, 0x035f, 6, clif->pReqClickBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0365, -1, clif->pSearchStoreInfo);
// packet(UNKNOWN, 0x0368, 8, clif->pDull);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0838, 7, clif->pActionRequest);
packet(CMSG_BUYINGSTORE_CREATE, 0x085a, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_POSITION, 0x0864, 10, clif->pUseSkillToPos);
packet(CMSG_MOVE_TO_STORAGE, 0x086d, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0870, 5, clif->pWalkToXY);
packet(CMSG_NAME_REQUEST, 0x0874, 6, clif->pGetCharNameRequest);
packet(CMSG_BUYINGSTORE_SELL, 0x0875, -1, clif->pReqTradeBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0876, 5, clif->pHomMenu);
packet(CMSG_SOLVE_CHAR_NAME, 0x087d, 6, clif->pSolveCharName);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0888, -1, clif->pItemListWindowSelected);
packet(CMSG_BOOKING_REGISTER_REQ, 0x089a, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_ITEM_PICKUP, 0x08ab, 6, clif->pTakeItem);
packet(CMSG_MAP_PING, 0x091f, 6, clif->pTickSend);
packet(CMSG_PARTY_INVITE2, 0x0927, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0929, 36, clif->pStoragePassword);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x092d, 2, clif->pSearchStoreInfoNextPage);
// packet(UNKNOWN, 0x0938, 4, clif->pDull);
packet(CMSG_SKILL_USE_BEING, 0x093a, 10, clif->pUseSkillToId);
packet(CMSG_MAP_SERVER_CONNECT, 0x0944, 19, clif->pWantToConnection);
packet(CMSG_BUYINGSTORE_CLOSE, 0x094d, 2, clif->pReqCloseBuyingStore);
packet(CMSG_MOVE_FROM_STORAGE, 0x094e, 8, clif->pMoveFromKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0952, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0963, 26, clif->pFriendsListAdd);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0968, 6, clif->pDropItem);
}
// 20150204
if (packetVersion == 20150204)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x0966, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20150225
if (packetVersion == 20150225)
{
packet(CMSG_BUYINGSTORE_OPEN, 0x02c4, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_PARTY_INVITE2, 0x0360, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0362, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_NAME_REQUEST, 0x0436, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0817, 6, clif->pTakeItem);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0819, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0867, 18, clif->pPartyBookingRegisterReq);
// packet(UNKNOWN, 0x0885, 4, clif->pDull);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0896, -1, clif->pItemListWindowSelected);
// packet(UNKNOWN, 0x089b, 8, clif->pDull);
packet(CMSG_MOVE_TO_STORAGE, 0x089c, 8, clif->pMoveToKafra);
packet(CMSG_STORAGE_PASSWORD, 0x08a4, 36, clif->pStoragePassword);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0940, -1, clif->pSearchStoreInfo);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0946, 26, clif->pFriendsListAdd);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0948, 6, clif->pDropItem);
packet(CMSG_HOMUNCULUS_MENU, 0x094f, 5, clif->pHomMenu);
packet(CMSG_MOVE_FROM_STORAGE, 0x0952, 8, clif->pMoveFromKafra);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0955, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x096a, 19, clif->pWantToConnection);
}
// 20150226
if (packetVersion == 20150226)
{
packet(CMSG_BUYINGSTORE_OPEN, 0x02c4, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_PARTY_INVITE2, 0x0360, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0362, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_NAME_REQUEST, 0x0436, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0817, 6, clif->pTakeItem);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0819, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0867, 18, clif->pPartyBookingRegisterReq);
// packet(UNKNOWN, 0x0885, 4, clif->pDull);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0896, -1, clif->pItemListWindowSelected);
// packet(UNKNOWN, 0x089b, 8, clif->pDull);
packet(CMSG_MOVE_TO_STORAGE, 0x089c, 8, clif->pMoveToKafra);
packet(CMSG_STORAGE_PASSWORD, 0x08a4, 36, clif->pStoragePassword);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0940, -1, clif->pSearchStoreInfo);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0946, 26, clif->pFriendsListAdd);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0948, 6, clif->pDropItem);
packet(CMSG_HOMUNCULUS_MENU, 0x094f, 5, clif->pHomMenu);
packet(CMSG_MOVE_FROM_STORAGE, 0x0952, 8, clif->pMoveFromKafra);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0955, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x096a, 19, clif->pWantToConnection);
}
// 20150311
if (packetVersion == 20150311)
{
packet(CMSG_HOMUNCULUS_MENU, 0x023b, 5, clif->pHomMenu);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0360, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0436, -1, clif->pSearchStoreInfo);
packet(CMSG_BUYINGSTORE_SELL, 0x0438, -1, clif->pReqTradeBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0815, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION, 0x0838, 10, clif->pUseSkillToPos);
packet(CMSG_NAME_REQUEST, 0x086a, 6, clif->pGetCharNameRequest);
packet(CMSG_STORAGE_PASSWORD, 0x086c, 36, clif->pStoragePassword);
packet(CMSG_BOOKING_REGISTER_REQ, 0x087b, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0883, -1, clif->pItemListWindowSelected);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0886, 5, clif->pWalkToXY);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0888, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0896, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_BEING, 0x08a1, 10, clif->pUseSkillToId);
packet(CMSG_ITEM_PICKUP, 0x08a3, 6, clif->pTakeItem);
packet(CMSG_SEARCHSTORE_CLICK, 0x08a5, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x08a6, 26, clif->pFriendsListAdd);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x091c, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0928, 5, clif->pChangeDir);
// packet(UNKNOWN, 0x092a, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x092e, 8, clif->pMoveFromKafra);
packet(CMSG_PARTY_INVITE2, 0x093b, 26, clif->pPartyInvite2);
packet(CMSG_SOLVE_CHAR_NAME, 0x0943, 6, clif->pSolveCharName);
// packet(UNKNOWN, 0x0946, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_OPEN, 0x0957, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_PING, 0x0958, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_CREATE, 0x095b, -1, clif->pReqOpenBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0963, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0964, 8, clif->pMoveToKafra);
}
// 20150325
if (packetVersion == 20150325)
{
packet(CMSG_PARTY_INVITE2, 0x0202, 26, clif->pPartyInvite2);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0363, 6, clif->pDropItem);
packet(CMSG_SKILL_USE_BEING, 0x0365, 10, clif->pUseSkillToId);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0438, 2, clif->pSearchStoreInfoNextPage);
// packet(UNKNOWN, 0x0802, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_OPEN, 0x0819, 6, clif->pReqClickBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x085d, 6, clif->pSolveCharName);
packet(CMSG_BUYINGSTORE_CREATE, 0x086f, -1, clif->pReqOpenBuyingStore);
packet(CMSG_MOVE_TO_STORAGE, 0x087c, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_DIR, 0x087e, 5, clif->pChangeDir);
packet(CMSG_SEARCHSTORE_CLICK, 0x0883, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_POSITION, 0x0885, 10, clif->pUseSkillToPos);
packet(CMSG_NAME_REQUEST, 0x0891, 6, clif->pGetCharNameRequest);
// packet(UNKNOWN, 0x0893, 8, clif->pDull);
packet(CMSG_BUYINGSTORE_SELL, 0x0897, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0899, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PLAYER_CHANGE_ACT, 0x08a1, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x08a7, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_STORAGE_PASSWORD, 0x0919, 36, clif->pStoragePassword);
packet(CMSG_ITEM_PICKUP, 0x092c, 6, clif->pTakeItem);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0931, -1, clif->pSearchStoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0932, 5, clif->pWalkToXY);
packet(CMSG_HOMUNCULUS_MENU, 0x0938, 5, clif->pHomMenu);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0940, 26, clif->pFriendsListAdd);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0947, 2, clif->pReqCloseBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x094a, 19, clif->pWantToConnection);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0950, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x0954, 6, clif->pTickSend);
packet(CMSG_MOVE_FROM_STORAGE, 0x0969, 8, clif->pMoveFromKafra);
}
// 20150401
if (packetVersion == 20150401)
{
packet(CMSG_PLAYER_CHANGE_ACT, 0x0362, 7, clif->pActionRequest);
packet(CMSG_NAME_REQUEST, 0x0367, 6, clif->pGetCharNameRequest);
packet(CMSG_BUYINGSTORE_OPEN, 0x0437, 6, clif->pReqClickBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x083c, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_CLICK, 0x085e, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_PLAYER_CHANGE_DEST, 0x086f, 5, clif->pWalkToXY);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0875, -1, clif->pItemListWindowSelected);
// packet(UNKNOWN, 0x087e, 8, clif->pDull);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x088c, 6, clif->pDropItem);
packet(CMSG_MAP_PING, 0x088f, 6, clif->pTickSend);
packet(CMSG_MOVE_FROM_STORAGE, 0x0895, 8, clif->pMoveFromKafra);
packet(CMSG_HOMUNCULUS_MENU, 0x0898, 5, clif->pHomMenu);
packet(CMSG_STORAGE_PASSWORD, 0x089c, 36, clif->pStoragePassword);
packet(CMSG_MOVE_TO_STORAGE, 0x08a5, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x091b, 26, clif->pPartyInvite2);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x091c, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_BUYINGSTORE_CREATE, 0x0922, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0924, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0938, 2, clif->pReqCloseBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0939, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION, 0x093a, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x093b, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x093e, 2, clif->pSearchStoreInfoNextPage);
// packet(UNKNOWN, 0x0946, 4, clif->pDull);
packet(CMSG_ITEM_PICKUP, 0x0949, 6, clif->pTakeItem);
packet(CMSG_SKILL_USE_BEING, 0x094b, 10, clif->pUseSkillToId);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0953, 26, clif->pFriendsListAdd);
packet(CMSG_SOLVE_CHAR_NAME, 0x095f, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0964, 5, clif->pChangeDir);
}
// 20150422
if (packetVersion == 20150422)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x0955, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20150429
if (packetVersion == 20150429)
{
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0363, 5, clif->pChangeDir);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x0867, 36, clif->pStoragePassword);
packet(CMSG_MAP_SERVER_CONNECT, 0x086a, 19, clif->pWantToConnection);
packet(CMSG_PARTY_INVITE2, 0x0886, 26, clif->pPartyInvite2);
packet(CMSG_HOMUNCULUS_MENU, 0x088f, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0894, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0899, 8, clif->pMoveToKafra);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x089f, -1, clif->pItemListWindowSelected);
// packet(UNKNOWN, 0x08a6, 8, clif->pDull);
// packet(UNKNOWN, 0x08a8, 4, clif->pDull);
packet(CMSG_BOOKING_REGISTER_REQ, 0x08ad, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MOVE_FROM_STORAGE, 0x0929, 8, clif->pMoveFromKafra);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x093d, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_PICKUP, 0x0943, 6, clif->pTakeItem);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20150507
if (packetVersion == 20150507)
{
packet(CMSG_HOMUNCULUS_MENU, 0x023b, 5, clif->pHomMenu);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0362, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0817, 6, clif->pTakeItem);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_MOVE_TO_STORAGE, 0x085a, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0864, 26, clif->pPartyInvite2);
// packet(UNKNOWN, 0x0887, 8, clif->pDull);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0889, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MAP_SERVER_CONNECT, 0x0924, 19, clif->pWantToConnection);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x092e, -1, clif->pItemListWindowSelected);
packet(CMSG_PLAYER_CHANGE_DIR, 0x093b, 5, clif->pChangeDir);
packet(CMSG_MOVE_FROM_STORAGE, 0x0941, 8, clif->pMoveFromKafra);
// packet(UNKNOWN, 0x0942, 4, clif->pDull);
packet(CMSG_STORAGE_PASSWORD, 0x0953, 36, clif->pStoragePassword);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0955, 6, clif->pDropItem);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0958, 26, clif->pFriendsListAdd);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20150513
if (packetVersion == 20150513)
{
packet(CMSG_BUYINGSTORE_CLOSE, 0x022d, 2, clif->pReqCloseBuyingStore);
// packet(UNKNOWN, 0x02c4, 8, clif->pDull);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0363, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0817, 5, clif->pHomMenu);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_MOVE_FROM_STORAGE, 0x0864, 8, clif->pMoveFromKafra);
packet(CMSG_MOVE_TO_STORAGE, 0x0879, 8, clif->pMoveToKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0883, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0885, 6, clif->pDropItem);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x08a8, 26, clif->pFriendsListAdd);
packet(CMSG_STORAGE_PASSWORD, 0x0923, 36, clif->pStoragePassword);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0924, 5, clif->pChangeDir);
// packet(UNKNOWN, 0x0927, 4, clif->pDull);
packet(CMSG_PARTY_INVITE2, 0x094a, 26, clif->pPartyInvite2);
packet(CMSG_ITEM_PICKUP, 0x0958, 6, clif->pTakeItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0960, -1, clif->pItemListWindowSelected);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20150527
if (packetVersion == 20150527)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SKILL_USE_BEING, 0x0838, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x083c, 36, clif->pStoragePassword);
packet(CMSG_SEARCHSTORE_CLICK, 0x0940, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20150617
if (packetVersion == 20150617)
{
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_ITEM_PICKUP, 0x0360, 6, clif->pTakeItem);
packet(CMSG_BUYINGSTORE_OPEN, 0x0362, 6, clif->pReqClickBuyingStore);
packet(CMSG_STORAGE_PASSWORD, 0x0363, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0365, -1, clif->pItemListWindowSelected);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_MAP_SERVER_CONNECT, 0x0436, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x07ec, -1, clif->pReqTradeBuyingStore);
// packet(UNKNOWN, 0x0811, 8, clif->pDull);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_MOVE_FROM_STORAGE, 0x0869, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x086a, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PLAYER_CHANGE_DIR, 0x086b, 5, clif->pChangeDir);
packet(CMSG_PARTY_INVITE2, 0x0870, 26, clif->pPartyInvite2);
packet(CMSG_MOVE_TO_STORAGE, 0x087a, 8, clif->pMoveToKafra);
packet(CMSG_HOMUNCULUS_MENU, 0x0886, 5, clif->pHomMenu);
// packet(UNKNOWN, 0x0894, 4, clif->pDull);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0940, 6, clif->pDropItem);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x094e, 26, clif->pFriendsListAdd);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20150618
if (packetVersion == 20150618)
{
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_ITEM_PICKUP, 0x0360, 6, clif->pTakeItem);
packet(CMSG_BUYINGSTORE_OPEN, 0x0362, 6, clif->pReqClickBuyingStore);
packet(CMSG_STORAGE_PASSWORD, 0x0363, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0365, -1, clif->pItemListWindowSelected);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_MAP_SERVER_CONNECT, 0x0436, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x07ec, -1, clif->pReqTradeBuyingStore);
// packet(UNKNOWN, 0x0811, 8, clif->pDull);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_MOVE_FROM_STORAGE, 0x0869, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x086a, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PLAYER_CHANGE_DIR, 0x086b, 5, clif->pChangeDir);
packet(CMSG_PARTY_INVITE2, 0x0870, 26, clif->pPartyInvite2);
packet(CMSG_MOVE_TO_STORAGE, 0x087a, 8, clif->pMoveToKafra);
packet(CMSG_HOMUNCULUS_MENU, 0x0886, 5, clif->pHomMenu);
// packet(UNKNOWN, 0x0894, 4, clif->pDull);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0940, 6, clif->pDropItem);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x094e, 26, clif->pFriendsListAdd);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20150819
if (packetVersion == 20150819)
{
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0202, -1, clif->pItemListWindowSelected);
packet(CMSG_SKILL_USE_BEING, 0x022d, 10, clif->pUseSkillToId);
packet(CMSG_ITEM_PICKUP, 0x0281, 6, clif->pTakeItem);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x085d, 8, clif->pMoveFromKafra);
// packet(UNKNOWN, 0x0862, 8, clif->pDull);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0865, 26, clif->pFriendsListAdd);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0871, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_HOMUNCULUS_MENU, 0x0888, 5, clif->pHomMenu);
packet(CMSG_MOVE_TO_STORAGE, 0x0919, 8, clif->pMoveToKafra);
packet(CMSG_STORAGE_PASSWORD, 0x091e, 36, clif->pStoragePassword);
packet(CMSG_MAP_SERVER_CONNECT, 0x0927, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0940, 6, clif->pDropItem);
packet(CMSG_PARTY_INVITE2, 0x0961, 26, clif->pPartyInvite2);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0967, 5, clif->pChangeDir);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20150826
if (packetVersion == 20150826)
{
packet(CMSG_STORAGE_PASSWORD, 0x0362, 36, clif->pStoragePassword);
packet(CMSG_MOVE_FROM_STORAGE, 0x0368, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0436, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PLAYER_CHANGE_ACT, 0x07ec, 7, clif->pActionRequest);
packet(CMSG_BUYINGSTORE_OPEN, 0x0819, 6, clif->pReqClickBuyingStore);
// packet(UNKNOWN, 0x0861, 8, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0865, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x086b, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_CREATE, 0x0870, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x087b, 6, clif->pSolveCharName);
packet(CMSG_PARTY_INVITE2, 0x088b, 26, clif->pPartyInvite2);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x088d, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0890, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SKILL_USE_BEING, 0x0891, 10, clif->pUseSkillToId);
packet(CMSG_SEARCHSTORE_CLICK, 0x08a0, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_TO_STORAGE, 0x08a1, 8, clif->pMoveToKafra);
packet(CMSG_ITEM_PICKUP, 0x08a4, 6, clif->pTakeItem);
packet(CMSG_BUYINGSTORE_SELL, 0x08a8, -1, clif->pReqTradeBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0924, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0928, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x092e, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_NAME_REQUEST, 0x093b, 6, clif->pGetCharNameRequest);
packet(CMSG_HOMUNCULUS_MENU, 0x0945, 5, clif->pHomMenu);
packet(CMSG_PLAYER_CHANGE_DIR, 0x094f, 5, clif->pChangeDir);
packet(CMSG_MAP_PING, 0x0951, 6, clif->pTickSend);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0959, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_SERVER_CONNECT, 0x0964, 19, clif->pWantToConnection);
// packet(UNKNOWN, 0x0968, 4, clif->pDull);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0969, -1, clif->pSearchStoreInfo);
}
// 20151001
if (packetVersion == 20151001)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x0960, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
if (packetVersion >= 20151001)
{
packet(CMSG_CHAR_CREATE, 0x0a39, 36, chr->parse_char_create_new_char);
}
// 20151007
if (packetVersion == 20151007)
{
packet(CMSG_BUYINGSTORE_SELL, 0x0202, -1, clif->pReqTradeBuyingStore);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0811, 26, clif->pFriendsListAdd);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
// packet(UNKNOWN, 0x0862, 4, clif->pDull);
packet(CMSG_HOMUNCULUS_MENU, 0x093f, 5, clif->pHomMenu);
packet(CMSG_PLAYER_CHANGE_DIR, 0x095f, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x0961, 19, clif->pWantToConnection);
packet(CMSG_STORAGE_PASSWORD, 0x0967, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20151014
if (packetVersion == 20151014)
{
packet(CMSG_BOOKING_REGISTER_REQ, 0x0202, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0817, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0838, -1, clif->pSearchStoreInfo);
packet(CMSG_SKILL_USE_BEING, 0x085a, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_CHANGE_ACT, 0x085c, 7, clif->pActionRequest);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0860, 6, clif->pDropItem);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0863, 5, clif->pChangeDir);
packet(CMSG_BUYINGSTORE_SELL, 0x0867, -1, clif->pReqTradeBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0872, 5, clif->pHomMenu);
packet(CMSG_SKILL_USE_POSITION, 0x0874, 10, clif->pUseSkillToPos);
packet(CMSG_MOVE_FROM_STORAGE, 0x0881, 8, clif->pMoveFromKafra);
packet(CMSG_MAP_PING, 0x0883, 6, clif->pTickSend);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0884, -1, clif->pItemListWindowSelected);
packet(CMSG_BUYINGSTORE_OPEN, 0x0889, 6, clif->pReqClickBuyingStore);
// packet(UNKNOWN, 0x088e, 8, clif->pDull);
// packet(UNKNOWN, 0x089a, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_CLOSE, 0x089b, 2, clif->pReqCloseBuyingStore);
packet(CMSG_PLAYER_CHANGE_DEST, 0x089f, 5, clif->pWalkToXY);
packet(CMSG_ITEM_PICKUP, 0x08aa, 6, clif->pTakeItem);
packet(CMSG_PARTY_INVITE2, 0x091c, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x091d, 36, clif->pStoragePassword);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0930, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_BUYINGSTORE_CREATE, 0x0934, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SEARCHSTORE_CLICK, 0x0944, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x094f, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SOLVE_CHAR_NAME, 0x0956, 6, clif->pSolveCharName);
packet(CMSG_MOVE_TO_STORAGE, 0x095e, 8, clif->pMoveToKafra);
packet(CMSG_NAME_REQUEST, 0x0961, 6, clif->pGetCharNameRequest);
packet(CMSG_MAP_SERVER_CONNECT, 0x0964, 19, clif->pWantToConnection);
}
// 20151028
if (packetVersion == 20151028)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x0860, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20151029
if (packetVersion == 20151029)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x0860, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20151104
if (packetVersion == 20151104)
{
packet(CMSG_BUYINGSTORE_CREATE, 0x023b, -1, clif->pReqOpenBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0360, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0363, 5, clif->pWalkToXY);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_BUYINGSTORE_OPEN, 0x0436, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0437, 6, clif->pDropItem);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x07ec, 26, clif->pFriendsListAdd);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0811, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_BUYINGSTORE_SELL, 0x0815, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_MAP_PING, 0x0886, 6, clif->pTickSend);
packet(CMSG_NAME_REQUEST, 0x0887, 6, clif->pGetCharNameRequest);
packet(CMSG_MOVE_TO_STORAGE, 0x088b, 8, clif->pMoveToKafra);
packet(CMSG_HOMUNCULUS_MENU, 0x088d, 5, clif->pHomMenu);
// packet(UNKNOWN, 0x08a3, 4, clif->pDull);
packet(CMSG_PARTY_INVITE2, 0x08a5, 26, clif->pPartyInvite2);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0928, 5, clif->pChangeDir);
// packet(UNKNOWN, 0x0939, 8, clif->pDull);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x093a, -1, clif->pItemListWindowSelected);
packet(CMSG_STORAGE_PASSWORD, 0x0940, 36, clif->pStoragePassword);
packet(CMSG_ITEM_PICKUP, 0x0964, 6, clif->pTakeItem);
}
// 20151118
if (packetVersion == 20151118)
{
packet(CMSG_MAP_PING, 0x022d, 6, clif->pTickSend);
packet(CMSG_HOMUNCULUS_MENU, 0x035f, 5, clif->pHomMenu);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_PARTY_INVITE2, 0x0365, 26, clif->pPartyInvite2);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_MOVE_TO_STORAGE, 0x086b, 8, clif->pMoveToKafra);
packet(CMSG_STORAGE_PASSWORD, 0x088b, 36, clif->pStoragePassword);
packet(CMSG_MOVE_FROM_STORAGE, 0x08ab, 8, clif->pMoveFromKafra);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0921, 26, clif->pFriendsListAdd);
packet(CMSG_MAP_SERVER_CONNECT, 0x0925, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DIR, 0x092e, 5, clif->pChangeDir);
// packet(UNKNOWN, 0x092f, 8, clif->pDull);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x093c, 6, clif->pDropItem);
packet(CMSG_ITEM_PICKUP, 0x0943, 6, clif->pTakeItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0946, -1, clif->pItemListWindowSelected);
// packet(UNKNOWN, 0x0957, 4, clif->pDull);
packet(CMSG_BOOKING_REGISTER_REQ, 0x095c, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20151202
if (packetVersion == 20151202)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x0870, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20151216
if (packetVersion == 20151216)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x022d, 5, clif->pChangeDir);
packet(CMSG_BUYINGSTORE_OPEN, 0x0361, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0362, 5, clif->pHomMenu);
// packet(UNKNOWN, 0x0364, 4, clif->pDull);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SEARCHSTORE_CLICK, 0x0436, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_BUYINGSTORE_CLOSE, 0x083c, 2, clif->pReqCloseBuyingStore);
packet(CMSG_MAP_PING, 0x085b, 6, clif->pTickSend);
packet(CMSG_MOVE_FROM_STORAGE, 0x0864, 8, clif->pMoveFromKafra);
packet(CMSG_SKILL_USE_POSITION, 0x0865, 10, clif->pUseSkillToPos);
// packet(UNKNOWN, 0x086a, 8, clif->pDull);
packet(CMSG_PARTY_INVITE2, 0x086e, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_CREATE, 0x0870, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0874, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_STORAGE_PASSWORD, 0x0885, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x088b, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x089d, 7, clif->pActionRequest);
packet(CMSG_SOLVE_CHAR_NAME, 0x089e, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_DEST, 0x08a2, 5, clif->pWalkToXY);
packet(CMSG_ITEM_PICKUP, 0x08a9, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x08ac, 8, clif->pMoveToKafra);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x091d, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0944, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x0947, 19, clif->pWantToConnection);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0949, -1, clif->pItemListWindowSelected);
packet(CMSG_BUYINGSTORE_SELL, 0x0954, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0960, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0966, 6, clif->pDropItem);
packet(CMSG_SKILL_USE_BEING, 0x0968, 10, clif->pUseSkillToId);
}
// 20151223
if (packetVersion == 20151223)
{
packet(CMSG_MOVE_TO_STORAGE, 0x02c4, 8, clif->pMoveToKafra);
// packet(UNKNOWN, 0x0362, 8, clif->pDull);
packet(CMSG_ITEM_PICKUP, 0x0364, 6, clif->pTakeItem);
// packet(UNKNOWN, 0x0802, 4, clif->pDull);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0815, -1, clif->pSearchStoreInfo);
packet(CMSG_NAME_REQUEST, 0x0864, 6, clif->pGetCharNameRequest);
packet(CMSG_MAP_SERVER_CONNECT, 0x0866, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION, 0x086e, 10, clif->pUseSkillToPos);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0872, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_BEING, 0x0875, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0876, 6, clif->pDropItem);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0881, 7, clif->pActionRequest);
packet(CMSG_MOVE_FROM_STORAGE, 0x0884, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_SELL, 0x0886, -1, clif->pReqTradeBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x088d, 5, clif->pHomMenu);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0890, -1, clif->pItemListWindowSelected);
packet(CMSG_BUYINGSTORE_CREATE, 0x0891, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0898, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PARTY_INVITE2, 0x08aa, 26, clif->pPartyInvite2);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0918, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_BUYINGSTORE_OPEN, 0x091a, 6, clif->pReqClickBuyingStore);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x091b, 26, clif->pFriendsListAdd);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0920, 5, clif->pWalkToXY);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0923, 5, clif->pChangeDir);
packet(CMSG_MAP_PING, 0x0924, 6, clif->pTickSend);
packet(CMSG_SOLVE_CHAR_NAME, 0x095e, 6, clif->pSolveCharName);
packet(CMSG_BUYINGSTORE_CLOSE, 0x095f, 2, clif->pReqCloseBuyingStore);
packet(CMSG_STORAGE_PASSWORD, 0x0965, 36, clif->pStoragePassword);
packet(CMSG_SEARCHSTORE_CLICK, 0x0967, 12, clif->pSearchStoreInfoListItemClick);
}
// 20160127
if (packetVersion == 20160127)
{
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_CHANGE_DIR, 0x085e, 5, clif->pChangeDir);
packet(CMSG_HOMUNCULUS_MENU, 0x0922, 5, clif->pHomMenu);
packet(CMSG_STORAGE_PASSWORD, 0x095a, 36, clif->pStoragePassword);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0961, 26, clif->pFriendsListAdd);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20160203
if (packetVersion == 20160203)
{
packet(CMSG_BUYINGSTORE_SELL, 0x0202, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0361, 26, clif->pFriendsListAdd);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0436, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_PING, 0x0437, 6, clif->pTickSend);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x07e4, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0811, 5, clif->pChangeDir);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0819, 19, clif->pWantToConnection);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0835, -1, clif->pItemListWindowSelected);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_BOOKING_REGISTER_REQ, 0x086c, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_HOMUNCULUS_MENU, 0x0872, 5, clif->pHomMenu);
packet(CMSG_STORAGE_PASSWORD, 0x0873, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x088c, 4, clif->pDull);
// packet(UNKNOWN, 0x0918, 8, clif->pDull);
packet(CMSG_PARTY_INVITE2, 0x093e, 26, clif->pPartyInvite2);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0940, 5, clif->pWalkToXY);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0947, 6, clif->pDropItem);
packet(CMSG_MOVE_FROM_STORAGE, 0x0954, 8, clif->pMoveFromKafra);
packet(CMSG_ITEM_PICKUP, 0x095a, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x095d, 8, clif->pMoveToKafra);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20160217
if (packetVersion == 20160217)
{
packet(CMSG_BUYINGSTORE_SELL, 0x0202, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x023b, 2, clif->pReqCloseBuyingStore);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0362, 5, clif->pChangeDir);
packet(CMSG_SEARCHSTORE_CLICK, 0x0365, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_TO_STORAGE, 0x0864, 8, clif->pMoveToKafra);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0870, 26, clif->pFriendsListAdd);
packet(CMSG_HOMUNCULUS_MENU, 0x0873, 5, clif->pHomMenu);
packet(CMSG_MAP_SERVER_CONNECT, 0x087a, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x0888, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x088d, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x088f, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0899, 4, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x08a0, 8, clif->pMoveFromKafra);
packet(CMSG_PARTY_INVITE2, 0x08a9, 26, clif->pPartyInvite2);
packet(CMSG_BOOKING_REGISTER_REQ, 0x08ac, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x08ad, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x091d, 5, clif->pWalkToXY);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0920, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_BEING, 0x0926, 10, clif->pUseSkillToId);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x092e, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x093b, -1, clif->pItemListWindowSelected);
packet(CMSG_SEARCHSTORE_SEARCH, 0x093e, -1, clif->pSearchStoreInfo);
packet(CMSG_ITEM_PICKUP, 0x0941, 6, clif->pTakeItem);
packet(CMSG_SKILL_USE_POSITION, 0x094a, 10, clif->pUseSkillToPos);
// packet(UNKNOWN, 0x094f, 8, clif->pDull);
packet(CMSG_STORAGE_PASSWORD, 0x095e, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x0966, 6, clif->pGetCharNameRequest);
packet(CMSG_SOLVE_CHAR_NAME, 0x0967, 6, clif->pSolveCharName);
packet(CMSG_BUYINGSTORE_CREATE, 0x0969, -1, clif->pReqOpenBuyingStore);
}
// 20160302
if (packetVersion == 20160302)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x022d, 5, clif->pChangeDir);
packet(CMSG_BUYINGSTORE_OPEN, 0x0367, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0802, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0819, 5, clif->pWalkToXY);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x085b, 26, clif->pFriendsListAdd);
packet(CMSG_BUYINGSTORE_CREATE, 0x0864, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0865, -1, clif->pSearchStoreInfo);
packet(CMSG_BUYINGSTORE_SELL, 0x0867, -1, clif->pReqTradeBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0868, 5, clif->pHomMenu);
packet(CMSG_SEARCHSTORE_CLICK, 0x0873, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0875, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SKILL_USE_POSITION, 0x087a, 10, clif->pUseSkillToPos);
packet(CMSG_PARTY_INVITE2, 0x087d, 26, clif->pPartyInvite2);
packet(CMSG_SKILL_USE_BEING, 0x0883, 10, clif->pUseSkillToId);
packet(CMSG_BUYINGSTORE_CLOSE, 0x08a6, 2, clif->pReqCloseBuyingStore);
packet(CMSG_MOVE_FROM_STORAGE, 0x08a9, 8, clif->pMoveFromKafra);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x091a, 6, clif->pDropItem);
packet(CMSG_ITEM_PICKUP, 0x0927, 6, clif->pTakeItem);
// packet(UNKNOWN, 0x092d, 4, clif->pDull);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x092f, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_NAME_REQUEST, 0x0945, 6, clif->pGetCharNameRequest);
packet(CMSG_STORAGE_PASSWORD, 0x094e, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x0950, 8, clif->pDull);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0957, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x095a, 6, clif->pTickSend);
packet(CMSG_MOVE_TO_STORAGE, 0x0960, 8, clif->pMoveToKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0961, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SOLVE_CHAR_NAME, 0x0967, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0968, 7, clif->pActionRequest);
}
// 20160309
if (packetVersion == 20160309)
{
packet(CMSG_PLAYER_INVENTORY_DROP, 0x023b, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_OPEN, 0x0281, 6, clif->pReqClickBuyingStore);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0361, 26, clif->pFriendsListAdd);
packet(CMSG_STORAGE_PASSWORD, 0x0364, 36, clif->pStoragePassword);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_SKILL_USE_POSITION, 0x0819, 10, clif->pUseSkillToPos);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0838, 5, clif->pWalkToXY);
packet(CMSG_PARTY_INVITE2, 0x083c, 26, clif->pPartyInvite2);
packet(CMSG_MOVE_TO_STORAGE, 0x085a, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_BEING, 0x085f, 10, clif->pUseSkillToId);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0866, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_SEARCH, 0x086a, -1, clif->pSearchStoreInfo);
// packet(UNKNOWN, 0x0873, 8, clif->pDull);
packet(CMSG_MAP_SERVER_CONNECT, 0x087c, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x087e, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x089b, -1, clif->pItemListWindowSelected);
packet(CMSG_PLAYER_CHANGE_DIR, 0x089d, 5, clif->pChangeDir);
packet(CMSG_BOOKING_REGISTER_REQ, 0x08a7, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_NAME_REQUEST, 0x091d, 6, clif->pGetCharNameRequest);
packet(CMSG_MOVE_FROM_STORAGE, 0x0920, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_CREATE, 0x0922, -1, clif->pReqOpenBuyingStore);
// packet(UNKNOWN, 0x0929, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_SELL, 0x092a, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x092e, 2, clif->pReqCloseBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0932, 5, clif->pHomMenu);
packet(CMSG_PLAYER_CHANGE_ACT, 0x094f, 7, clif->pActionRequest);
packet(CMSG_MAP_PING, 0x0956, 6, clif->pTickSend);
packet(CMSG_SEARCHSTORE_CLICK, 0x095e, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_ITEM_PICKUP, 0x096a, 6, clif->pTakeItem);
}
// 20160330
if (packetVersion == 20160330)
{
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_STORAGE_PASSWORD, 0x0365, 36, clif->pStoragePassword);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x0867, 26, clif->pPartyInvite2);
packet(CMSG_ITEM_PICKUP, 0x086d, 6, clif->pTakeItem);
// packet(UNKNOWN, 0x0878, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x087f, 8, clif->pMoveFromKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0889, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_HOMUNCULUS_MENU, 0x088b, 5, clif->pHomMenu);
// packet(UNKNOWN, 0x088d, 4, clif->pDull);
packet(CMSG_MOVE_TO_STORAGE, 0x0918, 8, clif->pMoveToKafra);
packet(CMSG_MAP_SERVER_CONNECT, 0x0925, 19, clif->pWantToConnection);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x092a, -1, clif->pItemListWindowSelected);
packet(CMSG_BOOKING_REGISTER_REQ, 0x092c, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0930, 5, clif->pChangeDir);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0939, 6, clif->pDropItem);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x093b, 26, clif->pFriendsListAdd);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
if (packetVersion >= 20160330)
{
packet(CMSG_MAIL2_SEND_MAIL, 0x0a6e, -1, clif->pRodexSendMail);
}
// 20160420
if (packetVersion == 20160420)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x022d, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_PING, 0x02c4, 6, clif->pTickSend);
packet(CMSG_PARTY_INVITE2, 0x035f, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0819, 5, clif->pHomMenu);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_ITEM_PICKUP, 0x0864, 6, clif->pTakeItem);
// packet(UNKNOWN, 0x0870, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0872, 5, clif->pChangeDir);
packet(CMSG_MOVE_TO_STORAGE, 0x0874, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0884, 6, clif->pDropItem);
packet(CMSG_MAP_SERVER_CONNECT, 0x0888, 19, clif->pWantToConnection);
packet(CMSG_MOVE_FROM_STORAGE, 0x088b, 8, clif->pMoveFromKafra);
packet(CMSG_STORAGE_PASSWORD, 0x08a5, 36, clif->pStoragePassword);
packet(CMSG_BOOKING_REGISTER_REQ, 0x092f, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0935, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x094e, -1, clif->pItemListWindowSelected);
// packet(UNKNOWN, 0x095c, 8, clif->pDull);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20160511
if (packetVersion == 20160511)
{
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_CHANGE_DIR, 0x085e, 5, clif->pChangeDir);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0894, 26, clif->pFriendsListAdd);
// packet(UNKNOWN, 0x089b, 4, clif->pDull);
packet(CMSG_HOMUNCULUS_MENU, 0x0918, 5, clif->pHomMenu);
packet(CMSG_MAP_SERVER_CONNECT, 0x0920, 19, clif->pWantToConnection);
packet(CMSG_STORAGE_PASSWORD, 0x0940, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20160525
if (packetVersion == 20160525)
{
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
// packet(UNKNOWN, 0x085a, 4, clif->pDull);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x085e, 6, clif->pDropItem);
packet(CMSG_HOMUNCULUS_MENU, 0x0867, 5, clif->pHomMenu);
packet(CMSG_MAP_SERVER_CONNECT, 0x086a, 19, clif->pWantToConnection);
packet(CMSG_ITEM_PICKUP, 0x0899, 6, clif->pTakeItem);
packet(CMSG_PLAYER_CHANGE_DIR, 0x089c, 5, clif->pChangeDir);
packet(CMSG_STORAGE_PASSWORD, 0x091d, 36, clif->pStoragePassword);
packet(CMSG_BOOKING_REGISTER_REQ, 0x092c, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0937, -1, clif->pItemListWindowSelected);
packet(CMSG_PARTY_INVITE2, 0x0945, 26, clif->pPartyInvite2);
packet(CMSG_MOVE_TO_STORAGE, 0x094a, 8, clif->pMoveToKafra);
// packet(UNKNOWN, 0x094e, 8, clif->pDull);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0951, 26, clif->pFriendsListAdd);
packet(CMSG_MOVE_FROM_STORAGE, 0x0956, 8, clif->pMoveFromKafra);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20160608
if (packetVersion == 20160608)
{
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x022d, -1, clif->pItemListWindowSelected);
packet(CMSG_BOOKING_REGISTER_REQ, 0x02c4, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PARTY_INVITE2, 0x035f, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0436, 5, clif->pWalkToXY);
packet(CMSG_MAP_SERVER_CONNECT, 0x0437, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_PLAYER_CHANGE_DIR, 0x07ec, 5, clif->pChangeDir);
packet(CMSG_MAP_PING, 0x0802, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
// packet(UNKNOWN, 0x085c, 8, clif->pDull);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0885, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_BUYINGSTORE_SELL, 0x0889, -1, clif->pReqTradeBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0899, 6, clif->pTakeItem);
packet(CMSG_HOMUNCULUS_MENU, 0x089b, 5, clif->pHomMenu);
packet(CMSG_MOVE_FROM_STORAGE, 0x08a6, 8, clif->pMoveFromKafra);
// packet(UNKNOWN, 0x093b, 4, clif->pDull);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x094d, 6, clif->pDropItem);
packet(CMSG_STORAGE_PASSWORD, 0x0958, 36, clif->pStoragePassword);
packet(CMSG_MOVE_TO_STORAGE, 0x095b, 8, clif->pMoveToKafra);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0969, 26, clif->pFriendsListAdd);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20160615
if (packetVersion == 20160615)
{
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0281, 26, clif->pFriendsListAdd);
packet(CMSG_MAP_SERVER_CONNECT, 0x0363, 19, clif->pWantToConnection);
packet(CMSG_STORAGE_PASSWORD, 0x0364, 36, clif->pStoragePassword);
packet(CMSG_HOMUNCULUS_MENU, 0x0369, 5, clif->pHomMenu);
packet(CMSG_NAME_REQUEST, 0x083c, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0866, 5, clif->pWalkToXY);
// packet(UNKNOWN, 0x0870, 4, clif->pDull);
packet(CMSG_SOLVE_CHAR_NAME, 0x087d, 6, clif->pSolveCharName);
packet(CMSG_ITEM_PICKUP, 0x087e, 6, clif->pTakeItem);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x087f, 90, clif->pUseSkillToPosMoreInfo);
// packet(UNKNOWN, 0x0884, 8, clif->pDull);
packet(CMSG_BUYINGSTORE_SELL, 0x0887, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x0888, 10, clif->pUseSkillToId);
packet(CMSG_MAP_PING, 0x088a, 6, clif->pTickSend);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x088d, -1, clif->pItemListWindowSelected);
packet(CMSG_SKILL_USE_POSITION, 0x0891, 10, clif->pUseSkillToPos);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0898, 6, clif->pDropItem);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x092f, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PARTY_INVITE2, 0x093e, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0947, 2, clif->pReqCloseBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0948, 7, clif->pActionRequest);
packet(CMSG_BUYINGSTORE_OPEN, 0x094a, 6, clif->pReqClickBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x094b, -1, clif->pSearchStoreInfo);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0954, 5, clif->pChangeDir);
packet(CMSG_MOVE_TO_STORAGE, 0x0957, 8, clif->pMoveToKafra);
packet(CMSG_MOVE_FROM_STORAGE, 0x0958, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x095c, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_BUYINGSTORE_CREATE, 0x095e, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SEARCHSTORE_CLICK, 0x0961, 12, clif->pSearchStoreInfoListItemClick);
}
// 20160630
if (packetVersion == 20160630)
{
packet(CMSG_SEARCHSTORE_CLICK, 0x0202, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_PLAYER_CHANGE_DEST, 0x022d, 5, clif->pWalkToXY);
// packet(UNKNOWN, 0x035f, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_OPEN, 0x0363, 6, clif->pReqClickBuyingStore);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0368, -1, clif->pItemListWindowSelected);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x085c, 90, clif->pUseSkillToPosMoreInfo);
// packet(UNKNOWN, 0x085e, 8, clif->pDull);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0860, -1, clif->pSearchStoreInfo);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0861, 6, clif->pDropItem);
packet(CMSG_SOLVE_CHAR_NAME, 0x0863, 6, clif->pSolveCharName);
packet(CMSG_STORAGE_PASSWORD, 0x0867, 36, clif->pStoragePassword);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x086b, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_MAP_SERVER_CONNECT, 0x0881, 19, clif->pWantToConnection);
packet(CMSG_HOMUNCULUS_MENU, 0x0885, 5, clif->pHomMenu);
packet(CMSG_NAME_REQUEST, 0x088e, 6, clif->pGetCharNameRequest);
packet(CMSG_MAP_PING, 0x0893, 6, clif->pTickSend);
packet(CMSG_BOOKING_REGISTER_REQ, 0x091e, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MOVE_FROM_STORAGE, 0x0922, 8, clif->pMoveFromKafra);
packet(CMSG_SKILL_USE_BEING, 0x0925, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x0926, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x093e, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0946, -1, clif->pReqOpenBuyingStore);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0948, 5, clif->pChangeDir);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x094a, 26, clif->pFriendsListAdd);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0957, 2, clif->pReqCloseBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x095a, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x0968, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x0969, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x096a, 8, clif->pMoveToKafra);
}
// 20160706
if (packetVersion == 20160706)
{
packet(CMSG_SOLVE_CHAR_NAME, 0x0362, 6, clif->pSolveCharName);
packet(CMSG_BUYINGSTORE_OPEN, 0x0436, 6, clif->pReqClickBuyingStore);
packet(CMSG_PARTY_INVITE2, 0x085f, 26, clif->pPartyInvite2);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0860, 7, clif->pActionRequest);
packet(CMSG_BUYINGSTORE_SELL, 0x0869, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x086b, -1, clif->pReqOpenBuyingStore);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0884, 26, clif->pFriendsListAdd);
// packet(UNKNOWN, 0x0886, 4, clif->pDull);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0889, -1, clif->pSearchStoreInfo);
packet(CMSG_HOMUNCULUS_MENU, 0x0892, 5, clif->pHomMenu);
packet(CMSG_SKILL_USE_BEING, 0x0899, 10, clif->pUseSkillToId);
packet(CMSG_BOOKING_REGISTER_REQ, 0x08a4, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MAP_SERVER_CONNECT, 0x08a5, 19, clif->pWantToConnection);
packet(CMSG_MAP_PING, 0x08a8, 6, clif->pTickSend);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0918, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x091b, -1, clif->pItemListWindowSelected);
packet(CMSG_SKILL_USE_POSITION, 0x0924, 10, clif->pUseSkillToPos);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0926, 5, clif->pChangeDir);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0927, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_MOVE_FROM_STORAGE, 0x0929, 8, clif->pMoveFromKafra);
packet(CMSG_PLAYER_CHANGE_DEST, 0x092d, 5, clif->pWalkToXY);
packet(CMSG_MOVE_TO_STORAGE, 0x0939, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x093d, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0944, 8, clif->pDull);
packet(CMSG_NAME_REQUEST, 0x0945, 6, clif->pGetCharNameRequest);
packet(CMSG_STORAGE_PASSWORD, 0x094c, 36, clif->pStoragePassword);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0952, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_CLICK, 0x0957, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_ITEM_PICKUP, 0x0958, 6, clif->pTakeItem);
}
// 20160713
if (packetVersion == 20160713)
{
packet(CMSG_STORAGE_PASSWORD, 0x022d, 36, clif->pStoragePassword);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0363, 5, clif->pChangeDir);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0364, -1, clif->pItemListWindowSelected);
packet(CMSG_ITEM_PICKUP, 0x0838, 6, clif->pTakeItem);
packet(CMSG_BUYINGSTORE_OPEN, 0x0860, 6, clif->pReqClickBuyingStore);
packet(CMSG_BUYINGSTORE_SELL, 0x0865, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0869, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0875, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SKILL_USE_POSITION, 0x0877, 10, clif->pUseSkillToPos);
packet(CMSG_MAP_PING, 0x087b, 6, clif->pTickSend);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0883, -1, clif->pSearchStoreInfo);
packet(CMSG_BOOKING_REGISTER_REQ, 0x088d, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SEARCHSTORE_CLICK, 0x0892, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_PARTY_INVITE2, 0x089a, 26, clif->pPartyInvite2);
// packet(UNKNOWN, 0x089f, 4, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x08a2, 8, clif->pMoveFromKafra);
packet(CMSG_MAP_SERVER_CONNECT, 0x08a4, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DEST, 0x091c, 5, clif->pWalkToXY);
packet(CMSG_SOLVE_CHAR_NAME, 0x091d, 6, clif->pSolveCharName);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0921, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_HOMUNCULUS_MENU, 0x0922, 5, clif->pHomMenu);
packet(CMSG_NAME_REQUEST, 0x092c, 6, clif->pGetCharNameRequest);
packet(CMSG_SKILL_USE_BEING, 0x0931, 10, clif->pUseSkillToId);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0939, 26, clif->pFriendsListAdd);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0944, 2, clif->pReqCloseBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0945, 7, clif->pActionRequest);
packet(CMSG_MOVE_TO_STORAGE, 0x0947, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0957, 6, clif->pDropItem);
// packet(UNKNOWN, 0x095b, 8, clif->pDull);
}
// 20160720
if (packetVersion == 20160720)
{
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0362, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SKILL_USE_BEING, 0x0363, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0365, 7, clif->pActionRequest);
packet(CMSG_MAP_SERVER_CONNECT, 0x07e4, 19, clif->pWantToConnection);
packet(CMSG_BUYINGSTORE_SELL, 0x0819, -1, clif->pReqTradeBuyingStore);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0838, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x085b, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x086a, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_BUYINGSTORE_OPEN, 0x086d, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x087f, 6, clif->pDropItem);
packet(CMSG_SKILL_USE_POSITION, 0x0883, 10, clif->pUseSkillToPos);
packet(CMSG_NAME_REQUEST, 0x0887, 6, clif->pGetCharNameRequest);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0897, -1, clif->pSearchStoreInfo);
packet(CMSG_STORAGE_PASSWORD, 0x089a, 36, clif->pStoragePassword);
packet(CMSG_HOMUNCULUS_MENU, 0x089c, 5, clif->pHomMenu);
packet(CMSG_MOVE_FROM_STORAGE, 0x089e, 8, clif->pMoveFromKafra);
packet(CMSG_SEARCHSTORE_CLICK, 0x08a0, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x08aa, -1, clif->pItemListWindowSelected);
// packet(UNKNOWN, 0x0917, 4, clif->pDull);
packet(CMSG_ITEM_PICKUP, 0x091c, 6, clif->pTakeItem);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x092a, 26, clif->pFriendsListAdd);
packet(CMSG_PLAYER_CHANGE_DIR, 0x093b, 5, clif->pChangeDir);
packet(CMSG_BUYINGSTORE_CREATE, 0x093e, -1, clif->pReqOpenBuyingStore);
packet(CMSG_MAP_PING, 0x0946, 6, clif->pTickSend);
packet(CMSG_SOLVE_CHAR_NAME, 0x094d, 6, clif->pSolveCharName);
// packet(UNKNOWN, 0x0953, 8, clif->pDull);
packet(CMSG_BOOKING_REGISTER_REQ, 0x095b, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MOVE_TO_STORAGE, 0x0960, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0969, 26, clif->pPartyInvite2);
}
// 20160727
if (packetVersion == 20160727)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
// packet(UNKNOWN, 0x023b, 8, clif->pDull);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0362, -1, clif->pSearchStoreInfo);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0363, 26, clif->pFriendsListAdd);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0436, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_MAP_PING, 0x0438, 6, clif->pTickSend);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x07ec, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0866, 4, clif->pDull);
packet(CMSG_PARTY_INVITE2, 0x0868, 26, clif->pPartyInvite2);
packet(CMSG_SEARCHSTORE_CLICK, 0x0869, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_BUYINGSTORE_OPEN, 0x0874, 6, clif->pReqClickBuyingStore);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0877, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0883, 7, clif->pActionRequest);
packet(CMSG_MAP_SERVER_CONNECT, 0x0887, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_BEING, 0x088e, 10, clif->pUseSkillToId);
packet(CMSG_BUYINGSTORE_SELL, 0x0891, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SKILL_USE_POSITION, 0x089f, 10, clif->pUseSkillToPos);
packet(CMSG_STORAGE_PASSWORD, 0x08a2, 36, clif->pStoragePassword);
packet(CMSG_SOLVE_CHAR_NAME, 0x08a4, 6, clif->pSolveCharName);
packet(CMSG_ITEM_PICKUP, 0x08a7, 6, clif->pTakeItem);
packet(CMSG_PLAYER_CHANGE_DEST, 0x092e, 5, clif->pWalkToXY);
packet(CMSG_HOMUNCULUS_MENU, 0x0936, 5, clif->pHomMenu);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0941, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_NAME_REQUEST, 0x0946, 6, clif->pGetCharNameRequest);
packet(CMSG_MOVE_FROM_STORAGE, 0x0949, 8, clif->pMoveFromKafra);
packet(CMSG_MOVE_TO_STORAGE, 0x0951, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_CREATE, 0x095f, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0966, 2, clif->pReqCloseBuyingStore);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0969, -1, clif->pItemListWindowSelected);
}
// 20160831
if (packetVersion == 20160831)
{
packet(CMSG_SKILL_USE_POSITION_MORE, 0x022d, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0366, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_OPEN, 0x07ec, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0835, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0865, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_CLOSE, 0x086d, 2, clif->pReqCloseBuyingStore);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0870, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PARTY_INVITE2, 0x0874, 26, clif->pPartyInvite2);
// packet(UNKNOWN, 0x0876, 8, clif->pDull);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0878, 7, clif->pActionRequest);
packet(CMSG_NAME_REQUEST, 0x087c, 6, clif->pGetCharNameRequest);
packet(CMSG_BUYINGSTORE_SELL, 0x08a8, -1, clif->pReqTradeBuyingStore);
packet(CMSG_MAP_PING, 0x08a9, 6, clif->pTickSend);
packet(CMSG_STORAGE_PASSWORD, 0x0917, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x091b, 4, clif->pDull);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x092c, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x092e, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0938, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_HOMUNCULUS_MENU, 0x093a, 5, clif->pHomMenu);
packet(CMSG_SOLVE_CHAR_NAME, 0x0946, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_DIR, 0x094a, 5, clif->pChangeDir);
packet(CMSG_MOVE_TO_STORAGE, 0x094f, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_CREATE, 0x0950, -1, clif->pReqOpenBuyingStore);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0954, -1, clif->pItemListWindowSelected);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0957, -1, clif->pSearchStoreInfo);
packet(CMSG_MOVE_FROM_STORAGE, 0x095e, 8, clif->pMoveFromKafra);
packet(CMSG_ITEM_PICKUP, 0x0960, 6, clif->pTakeItem);
packet(CMSG_SKILL_USE_POSITION, 0x0964, 10, clif->pUseSkillToPos);
packet(CMSG_SKILL_USE_BEING, 0x0967, 10, clif->pUseSkillToId);
}
// 20160907
if (packetVersion == 20160907)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x091c, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20160921
if (packetVersion == 20160921)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x094a, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20161012
if (packetVersion == 20161012)
{
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x023b, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0364, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x0365, 6, clif->pTickSend);
packet(CMSG_PARTY_INVITE2, 0x0369, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_CREATE, 0x07ec, -1, clif->pReqOpenBuyingStore);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0819, 26, clif->pFriendsListAdd);
// packet(UNKNOWN, 0x085b, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_CLOSE, 0x085e, 2, clif->pReqCloseBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0863, 7, clif->pActionRequest);
packet(CMSG_ITEM_PICKUP, 0x0868, 6, clif->pTakeItem);
packet(CMSG_MAP_SERVER_CONNECT, 0x086d, 19, clif->pWantToConnection);
packet(CMSG_SEARCHSTORE_CLICK, 0x0872, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0875, -1, clif->pSearchStoreInfo);
packet(CMSG_SKILL_USE_POSITION, 0x0880, 10, clif->pUseSkillToPos);
packet(CMSG_MOVE_TO_STORAGE, 0x0893, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_DIR, 0x08a0, 5, clif->pChangeDir);
packet(CMSG_SOLVE_CHAR_NAME, 0x092d, 6, clif->pSolveCharName);
packet(CMSG_NAME_REQUEST, 0x0936, 6, clif->pGetCharNameRequest);
packet(CMSG_BUYINGSTORE_OPEN, 0x0937, 6, clif->pReqClickBuyingStore);
packet(CMSG_BUYINGSTORE_SELL, 0x0939, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0943, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MOVE_FROM_STORAGE, 0x0944, 8, clif->pMoveFromKafra);
// packet(UNKNOWN, 0x094f, 8, clif->pDull);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0951, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_HOMUNCULUS_MENU, 0x095c, 5, clif->pHomMenu);
packet(CMSG_SKILL_USE_BEING, 0x0962, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0966, 5, clif->pWalkToXY);
packet(CMSG_STORAGE_PASSWORD, 0x0967, 36, clif->pStoragePassword);
}
// 20161026
if (packetVersion == 20161026)
{
packet(CMSG_STORAGE_PASSWORD, 0x0363, 36, clif->pStoragePassword);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0438, 5, clif->pWalkToXY);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0802, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MOVE_TO_STORAGE, 0x085a, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_ACT, 0x085f, 7, clif->pActionRequest);
packet(CMSG_BUYINGSTORE_SELL, 0x0861, -1, clif->pReqTradeBuyingStore);
packet(CMSG_MAP_PING, 0x0862, 6, clif->pTickSend);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x086a, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x086c, 12, clif->pSearchStoreInfoListItemClick);
// packet(UNKNOWN, 0x086e, 8, clif->pDull);
packet(CMSG_SEARCHSTORE_SEARCH, 0x087a, -1, clif->pSearchStoreInfo);
// packet(UNKNOWN, 0x087c, 4, clif->pDull);
packet(CMSG_SKILL_USE_POSITION, 0x087f, 10, clif->pUseSkillToPos);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0886, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_OPEN, 0x0891, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x0894, 10, clif->pUseSkillToId);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0898, 26, clif->pFriendsListAdd);
packet(CMSG_MAP_SERVER_CONNECT, 0x091a, 19, clif->pWantToConnection);
packet(CMSG_ITEM_PICKUP, 0x091b, 6, clif->pTakeItem);
packet(CMSG_SOLVE_CHAR_NAME, 0x0926, 6, clif->pSolveCharName);
packet(CMSG_BUYINGSTORE_CREATE, 0x092c, -1, clif->pReqOpenBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x092e, 5, clif->pHomMenu);
packet(CMSG_BUYINGSTORE_CLOSE, 0x092f, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x0930, 6, clif->pGetCharNameRequest);
packet(CMSG_MOVE_FROM_STORAGE, 0x094b, 8, clif->pMoveFromKafra);
packet(CMSG_PARTY_INVITE2, 0x0953, 26, clif->pPartyInvite2);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x095c, -1, clif->pItemListWindowSelected);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x095e, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0962, 5, clif->pChangeDir);
}
// 20161109
if (packetVersion == 20161109)
{
packet(CMSG_BOOKING_REGISTER_REQ, 0x02c4, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0361, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_MOVE_FROM_STORAGE, 0x0362, 8, clif->pMoveFromKafra);
packet(CMSG_MAP_PING, 0x0365, 6, clif->pTickSend);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0366, -1, clif->pSearchStoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0835, 6, clif->pSolveCharName);
packet(CMSG_BUYINGSTORE_CLOSE, 0x085d, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x085e, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0865, 5, clif->pWalkToXY);
packet(CMSG_PLAYER_CHANGE_ACT, 0x086a, 7, clif->pActionRequest);
packet(CMSG_SKILL_USE_POSITION, 0x086d, 10, clif->pUseSkillToPos);
packet(CMSG_MAP_SERVER_CONNECT, 0x0870, 19, clif->pWantToConnection);
packet(CMSG_BUYINGSTORE_OPEN, 0x0876, 6, clif->pReqClickBuyingStore);
// packet(UNKNOWN, 0x087a, 8, clif->pDull);
packet(CMSG_MOVE_TO_STORAGE, 0x0881, 8, clif->pMoveToKafra);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x088e, -1, clif->pItemListWindowSelected);
packet(CMSG_SEARCHSTORE_CLICK, 0x0891, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_ITEM_PICKUP, 0x0898, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x089a, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_CREATE, 0x089d, -1, clif->pReqOpenBuyingStore);
// packet(UNKNOWN, 0x089f, 4, clif->pDull);
packet(CMSG_HOMUNCULUS_MENU, 0x08a7, 5, clif->pHomMenu);
packet(CMSG_BUYINGSTORE_SELL, 0x08ad, -1, clif->pReqTradeBuyingStore);
packet(CMSG_PARTY_INVITE2, 0x0927, 26, clif->pPartyInvite2);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0937, 26, clif->pFriendsListAdd);
packet(CMSG_STORAGE_PASSWORD, 0x093c, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x093f, 6, clif->pGetCharNameRequest);
packet(CMSG_SKILL_USE_BEING, 0x0954, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0956, 5, clif->pChangeDir);
}
// 20161207
if (packetVersion == 20161207)
{
packet(CMSG_HOMUNCULUS_MENU, 0x023b, 5, clif->pHomMenu);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0361, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0867, 26, clif->pFriendsListAdd);
// packet(UNKNOWN, 0x0868, 8, clif->pDull);
packet(CMSG_MOVE_TO_STORAGE, 0x0875, 8, clif->pMoveToKafra);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x087e, -1, clif->pItemListWindowSelected);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0886, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DIR, 0x08a1, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x08a2, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x08ad, 6, clif->pDropItem);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0918, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MOVE_FROM_STORAGE, 0x091d, 8, clif->pMoveFromKafra);
// packet(UNKNOWN, 0x0943, 4, clif->pDull);
packet(CMSG_STORAGE_PASSWORD, 0x095d, 36, clif->pStoragePassword);
packet(CMSG_PARTY_INVITE2, 0x0965, 26, clif->pPartyInvite2);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20161214
if (packetVersion == 20161214)
{
packet(CMSG_BUYINGSTORE_OPEN, 0x022d, 6, clif->pReqClickBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0281, -1, clif->pSearchStoreInfo);
packet(CMSG_MOVE_FROM_STORAGE, 0x02c4, 8, clif->pMoveFromKafra);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_HOMUNCULUS_MENU, 0x0360, 5, clif->pHomMenu);
packet(CMSG_MOVE_TO_STORAGE, 0x0364, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_MAP_SERVER_CONNECT, 0x0369, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0436, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
// packet(UNKNOWN, 0x0819, 4, clif->pDull);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x085a, -1, clif->pItemListWindowSelected);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0862, 26, clif->pFriendsListAdd);
packet(CMSG_PARTY_INVITE2, 0x086d, 26, clif->pPartyInvite2);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0887, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0895, 8, clif->pDull);
packet(CMSG_STORAGE_PASSWORD, 0x0899, 36, clif->pStoragePassword);
packet(CMSG_BOOKING_REGISTER_REQ, 0x08a6, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_ITEM_PICKUP, 0x092e, 6, clif->pTakeItem);
packet(CMSG_PLAYER_CHANGE_DIR, 0x093d, 5, clif->pChangeDir);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20161221
if (packetVersion == 20161221)
{
packet(CMSG_ITEM_PICKUP, 0x035f, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
packet(CMSG_SOLVE_CHAR_NAME, 0x0366, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0438, 5, clif->pWalkToXY);
packet(CMSG_MOVE_TO_STORAGE, 0x0817, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x085b, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0866, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_CLICK, 0x0876, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_NAME_REQUEST, 0x0881, 6, clif->pGetCharNameRequest);
// packet(UNKNOWN, 0x0884, 8, clif->pDull);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0885, -1, clif->pItemListWindowSelected);
packet(CMSG_BUYINGSTORE_SELL, 0x088c, -1, clif->pReqTradeBuyingStore);
packet(CMSG_STORAGE_PASSWORD, 0x0890, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x0899, 4, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x089a, 8, clif->pMoveFromKafra);
packet(CMSG_PLAYER_CHANGE_ACT, 0x089b, 7, clif->pActionRequest);
packet(CMSG_MAP_PING, 0x08aa, 6, clif->pTickSend);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x091e, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PARTY_INVITE2, 0x0926, 26, clif->pPartyInvite2);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0928, 26, clif->pFriendsListAdd);
packet(CMSG_BUYINGSTORE_CLOSE, 0x092c, 2, clif->pReqCloseBuyingStore);
packet(CMSG_BOOKING_REGISTER_REQ, 0x092e, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_HOMUNCULUS_MENU, 0x0930, 5, clif->pHomMenu);
packet(CMSG_SKILL_USE_BEING, 0x0943, 10, clif->pUseSkillToId);
packet(CMSG_SKILL_USE_POSITION, 0x0946, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_CREATE, 0x094b, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_OPEN, 0x095a, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0964, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0965, 5, clif->pChangeDir);
}
// 20170125
if (packetVersion == 20170125)
{
packet(CMSG_PLAYER_CHANGE_ACT, 0x0438, 7, clif->pActionRequest);
packet(CMSG_MAP_SERVER_CONNECT, 0x0811, 19, clif->pWantToConnection);
packet(CMSG_PARTY_INVITE2, 0x086e, 26, clif->pPartyInvite2);
packet(CMSG_HOMUNCULUS_MENU, 0x0876, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0877, 6, clif->pDropItem);
packet(CMSG_SKILL_USE_BEING, 0x0879, 10, clif->pUseSkillToId);
packet(CMSG_ITEM_PICKUP, 0x087b, 6, clif->pTakeItem);
packet(CMSG_BUYINGSTORE_SELL, 0x087d, -1, clif->pReqTradeBuyingStore);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0881, 5, clif->pChangeDir);
// packet(UNKNOWN, 0x0884, 8, clif->pDull);
packet(CMSG_STORAGE_PASSWORD, 0x0893, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x0894, 4, clif->pDull);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0895, -1, clif->pItemListWindowSelected);
packet(CMSG_SOLVE_CHAR_NAME, 0x0898, 6, clif->pSolveCharName);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x089b, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_BUYINGSTORE_CREATE, 0x08a5, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_OPEN, 0x091b, 6, clif->pReqClickBuyingStore);
packet(CMSG_MOVE_TO_STORAGE, 0x091c, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_CLOSE, 0x091d, 2, clif->pReqCloseBuyingStore);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0920, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x0929, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_POSITION, 0x092b, 10, clif->pUseSkillToPos);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0930, 5, clif->pWalkToXY);
packet(CMSG_SEARCHSTORE_SEARCH, 0x093c, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_PING, 0x0943, 6, clif->pTickSend);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0944, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MOVE_FROM_STORAGE, 0x095c, 8, clif->pMoveFromKafra);
packet(CMSG_NAME_REQUEST, 0x0965, 6, clif->pGetCharNameRequest);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0968, 2, clif->pSearchStoreInfoNextPage);
}
// 20170208
if (packetVersion == 20170208)
{
// packet(UNKNOWN, 0x02c4, 4, clif->pDull);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0367, -1, clif->pItemListWindowSelected);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_PARTY_INVITE2, 0x085c, 26, clif->pPartyInvite2);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0860, 5, clif->pChangeDir);
// packet(UNKNOWN, 0x087a, 8, clif->pDull);
packet(CMSG_MAP_SERVER_CONNECT, 0x088c, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0892, 26, clif->pFriendsListAdd);
packet(CMSG_BOOKING_REGISTER_REQ, 0x08a1, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MOVE_TO_STORAGE, 0x08ac, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0921, 6, clif->pDropItem);
packet(CMSG_ITEM_PICKUP, 0x0923, 6, clif->pTakeItem);
packet(CMSG_HOMUNCULUS_MENU, 0x092d, 5, clif->pHomMenu);
packet(CMSG_MOVE_FROM_STORAGE, 0x0932, 8, clif->pMoveFromKafra);
packet(CMSG_STORAGE_PASSWORD, 0x0937, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20170228
if (packetVersion == 20170228)
{
packet(CMSG_PLAYER_INVENTORY_DROP, 0x022d, 6, clif->pDropItem);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0360, 7, clif->pActionRequest);
packet(CMSG_HOMUNCULUS_MENU, 0x0362, 5, clif->pHomMenu);
packet(CMSG_SEARCHSTORE_CLICK, 0x0819, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x085e, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0863, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_SERVER_CONNECT, 0x086b, 19, clif->pWantToConnection);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0873, -1, clif->pItemListWindowSelected);
packet(CMSG_BUYINGSTORE_CREATE, 0x0874, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0876, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0883, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0884, 5, clif->pWalkToXY);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0889, 5, clif->pChangeDir);
packet(CMSG_NAME_REQUEST, 0x0893, 6, clif->pGetCharNameRequest);
packet(CMSG_MOVE_TO_STORAGE, 0x089e, 8, clif->pMoveToKafra);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x08a0, 26, clif->pFriendsListAdd);
packet(CMSG_STORAGE_PASSWORD, 0x08a2, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x08a6, 8, clif->pDull);
packet(CMSG_BUYINGSTORE_OPEN, 0x08a7, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x091f, 10, clif->pUseSkillToId);
packet(CMSG_ITEM_PICKUP, 0x092a, 6, clif->pTakeItem);
packet(CMSG_BUYINGSTORE_SELL, 0x092e, -1, clif->pReqTradeBuyingStore);
packet(CMSG_MAP_PING, 0x0937, 6, clif->pTickSend);
// packet(UNKNOWN, 0x093e, 4, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0944, 8, clif->pMoveFromKafra);
packet(CMSG_SOLVE_CHAR_NAME, 0x0947, 6, clif->pSolveCharName);
packet(CMSG_PARTY_INVITE2, 0x0948, 26, clif->pPartyInvite2);
packet(CMSG_SKILL_USE_POSITION, 0x0952, 10, clif->pUseSkillToPos);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0955, 18, clif->pPartyBookingRegisterReq);
}
// 20170308
if (packetVersion == 20170308)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x087d, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20170315
if (packetVersion == 20170315)
{
packet(CMSG_SKILL_USE_POSITION, 0x02c4, 10, clif->pUseSkillToPos);
packet(CMSG_SEARCHSTORE_SEARCH, 0x035f, -1, clif->pSearchStoreInfo);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0360, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0366, 6, clif->pTakeItem);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0367, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_BUYINGSTORE_SELL, 0x0436, -1, clif->pReqTradeBuyingStore);
packet(CMSG_MAP_PING, 0x07ec, 6, clif->pTickSend);
// packet(UNKNOWN, 0x085c, 4, clif->pDull);
packet(CMSG_HOMUNCULUS_MENU, 0x0863, 5, clif->pHomMenu);
packet(CMSG_MOVE_FROM_STORAGE, 0x086a, 8, clif->pMoveFromKafra);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0872, 26, clif->pFriendsListAdd);
packet(CMSG_PARTY_INVITE2, 0x087b, 26, clif->pPartyInvite2);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0884, 7, clif->pActionRequest);
packet(CMSG_BOOKING_REGISTER_REQ, 0x088b, 18, clif->pPartyBookingRegisterReq);
// packet(UNKNOWN, 0x088d, 8, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x088f, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_BEING, 0x0892, 10, clif->pUseSkillToId);
packet(CMSG_BUYINGSTORE_CLOSE, 0x089c, 2, clif->pReqCloseBuyingStore);
packet(CMSG_MOVE_TO_STORAGE, 0x08aa, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x091a, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_CREATE, 0x091b, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SEARCHSTORE_CLICK, 0x091d, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SOLVE_CHAR_NAME, 0x0920, 6, clif->pSolveCharName);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0922, -1, clif->pItemListWindowSelected);
packet(CMSG_NAME_REQUEST, 0x0944, 6, clif->pGetCharNameRequest);
packet(CMSG_BUYINGSTORE_OPEN, 0x094a, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x094e, 19, clif->pWantToConnection);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0950, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_STORAGE_PASSWORD, 0x0952, 36, clif->pStoragePassword);
}
// 20170322
if (packetVersion == 20170322)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x022d, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x023b, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0362, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0363, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0364, 8, clif->pMoveFromKafra);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0436, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_ITEM_PICKUP, 0x07e4, 6, clif->pTakeItem);
packet(CMSG_MOVE_TO_STORAGE, 0x07ec, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0802, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x091a, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20170329
if (packetVersion == 20170329)
{
packet(CMSG_PARTY_INVITE2, 0x0281, 26, clif->pPartyInvite2);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x0362, 5, clif->pHomMenu);
packet(CMSG_MOVE_TO_STORAGE, 0x0363, 8, clif->pMoveToKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0369, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0835, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x085d, 36, clif->pStoragePassword);
packet(CMSG_BOOKING_REGISTER_REQ, 0x087a, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0888, -1, clif->pSearchStoreInfo);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x08a8, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0917, 8, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0926, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0929, 6, clif->pTakeItem);
packet(CMSG_MAP_SERVER_CONNECT, 0x092e, 19, clif->pWantToConnection);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0937, -1, clif->pItemListWindowSelected);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0939, 26, clif->pFriendsListAdd);
packet(CMSG_MOVE_FROM_STORAGE, 0x0949, 8, clif->pMoveFromKafra);
// packet(UNKNOWN, 0x095f, 4, clif->pDull);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20170405
if (packetVersion == 20170405)
{
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x022d, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0281, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0362, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0363, 4, clif->pDull);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0366, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0368, 6, clif->pSolveCharName);
packet(CMSG_ITEM_PICKUP, 0x0369, 6, clif->pTakeItem);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_POSITION, 0x0438, 10, clif->pUseSkillToPos);
packet(CMSG_BUYINGSTORE_SELL, 0x0811, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0815, -1, clif->pReqOpenBuyingStore);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0817, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0819, -1, clif->pSearchStoreInfo);
packet(CMSG_HOMUNCULUS_MENU, 0x0835, 5, clif->pHomMenu);
packet(CMSG_SEARCHSTORE_CLICK, 0x0838, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_MOVE_TO_STORAGE, 0x085f, 8, clif->pMoveToKafra);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0860, -1, clif->pItemListWindowSelected);
packet(CMSG_PARTY_INVITE2, 0x0864, 26, clif->pPartyInvite2);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0865, 5, clif->pChangeDir);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x086f, 26, clif->pFriendsListAdd);
packet(CMSG_MOVE_FROM_STORAGE, 0x0893, 8, clif->pMoveFromKafra);
packet(CMSG_MAP_SERVER_CONNECT, 0x08a5, 19, clif->pWantToConnection);
packet(CMSG_STORAGE_PASSWORD, 0x094c, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x094f, 8, clif->pDull);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0964, 6, clif->pDropItem);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20170517
if (packetVersion == 20170517)
{
// packet(UNKNOWN, 0x0364, 8, clif->pDull);
packet(CMSG_BUYINGSTORE_CREATE, 0x0367, -1, clif->pReqOpenBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0437, 7, clif->pActionRequest);
packet(CMSG_BOOKING_REGISTER_REQ, 0x0802, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_BEING, 0x0815, 10, clif->pUseSkillToId);
packet(CMSG_SKILL_USE_POSITION, 0x0817, 10, clif->pUseSkillToPos);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0868, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0875, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SOLVE_CHAR_NAME, 0x087b, 6, clif->pSolveCharName);
packet(CMSG_SEARCHSTORE_SEARCH, 0x087d, -1, clif->pSearchStoreInfo);
packet(CMSG_MOVE_FROM_STORAGE, 0x088c, 8, clif->pMoveFromKafra);
packet(CMSG_PLAYER_CHANGE_DIR, 0x088d, 5, clif->pChangeDir);
packet(CMSG_NAME_REQUEST, 0x0894, 6, clif->pGetCharNameRequest);
packet(CMSG_SEARCHSTORE_CLICK, 0x0896, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_PARTY_INVITE2, 0x0899, 26, clif->pPartyInvite2);
// packet(UNKNOWN, 0x089e, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_CLOSE, 0x089f, 2, clif->pReqCloseBuyingStore);
packet(CMSG_MAP_PING, 0x08a2, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DEST, 0x08a8, 5, clif->pWalkToXY);
packet(CMSG_MOVE_TO_STORAGE, 0x08aa, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_SELL, 0x091b, -1, clif->pReqTradeBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0923, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x093b, 6, clif->pDropItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0945, -1, clif->pItemListWindowSelected);
packet(CMSG_BUYINGSTORE_OPEN, 0x0946, 6, clif->pReqClickBuyingStore);
packet(CMSG_STORAGE_PASSWORD, 0x0947, 36, clif->pStoragePassword);
packet(CMSG_HOMUNCULUS_MENU, 0x0958, 5, clif->pHomMenu);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0960, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_PICKUP, 0x0964, 6, clif->pTakeItem);
}
#endif
|