summaryrefslogtreecommitdiff
path: root/src/common/packets/packets2008_len_re.h
blob: 37ee848eb1a26f3e218f218ef385d728ad26589f (plain) (blame)
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
/**
 * This file is part of Hercules.
 * http://herc.ws - http://github.com/HerculesWS/Hercules
 *
 * Copyright (C) 2019  Hercules Dev Team
 * Copyright (C) 2019  Andrei Karas (4144)
 *
 * Hercules 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 3 of the License, or
 * (at your option) 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/>.
 */

#ifndef COMMON_PACKETS2008_LEN_RE_H
#define COMMON_PACKETS2008_LEN_RE_H

/* This file is autogenerated, please do not commit manual changes */

// Packet: 0x0064
packetLen(0x0064, 55)  // CA_LOGIN

// Packet: 0x0065
packetLen(0x0065, 17)  // CH_ENTER

// Packet: 0x0066
packetLen(0x0066, 3)  // CH_SELECT_CHAR

// Packet: 0x0067
packetLen(0x0067, 37)  // CH_MAKE_CHAR

// Packet: 0x0068
packetLen(0x0068, 46)  // CH_DELETE_CHAR

// Packet: 0x0069
packetLen(0x0069, -1)  // AC_ACCEPT_LOGIN

// Packet: 0x006a
packetLen(0x006a, 23)  // AC_REFUSE_LOGIN

// Packet: 0x006b
packetLen(0x006b, -1)  // HC_ACCEPT_ENTER

// Packet: 0x006c
packetLen(0x006c, 3)  // HC_REFUSE_ENTER

// Packet: 0x006d
#if PACKETVER >= 20081217
packetLen(0x006d, 114)  // HC_ACCEPT_MAKECHAR
#elif PACKETVER >= 20080827
packetLen(0x006d, 110)  // HC_ACCEPT_MAKECHAR
#endif

// Packet: 0x006e
packetLen(0x006e, 3)  // HC_REFUSE_MAKECHAR

// Packet: 0x006f
packetLen(0x006f, 2)  // HC_ACCEPT_DELETECHAR

// Packet: 0x0070
packetLen(0x0070, 3)  // HC_REFUSE_DELETECHAR

// Packet: 0x0071
packetLen(0x0071, 28)  // HC_NOTIFY_ZONESVR

// Packet: 0x0072
packetLen(0x0072, 22)  // CZ_ENTER

// Packet: 0x0073
packetLen(0x0073, 11)  // ZC_ACCEPT_ENTER

// Packet: 0x0074
packetLen(0x0074, 3)  // ZC_REFUSE_ENTER

// Packet: 0x0075
packetLen(0x0075, -1)  // ZC_NOTIFY_INITCHAR

// Packet: 0x0076
packetLen(0x0076, 9)  // ZC_NOTIFY_UPDATECHAR

// Packet: 0x0077
packetLen(0x0077, 5)  // ZC_NOTIFY_UPDATEPLAYER

// Packet: 0x0078
packetLen(0x0078, 55)  // ZC_NOTIFY_STANDENTRY

// Packet: 0x0079
packetLen(0x0079, 53)  // ZC_NOTIFY_NEWENTRY

// Packet: 0x007a
packetLen(0x007a, 58)  // ZC_NOTIFY_ACTENTRY

// Packet: 0x007b
packetLen(0x007b, 60)  // ZC_NOTIFY_MOVEENTRY

// Packet: 0x007c
packetLen(0x007c, 44)  // ZC_NOTIFY_STANDENTRY_NPC

// Packet: 0x007d
packetLen(0x007d, 2)  // CZ_NOTIFY_ACTORINIT

// Packet: 0x007e
packetLen(0x007e, 105)  // CZ_REQUEST_TIME

// Packet: 0x007f
packetLen(0x007f, 6)  // ZC_NOTIFY_TIME

// Packet: 0x0080
packetLen(0x0080, 7)  // ZC_NOTIFY_VANISH

// Packet: 0x0081
packetLen(0x0081, 3)  // SC_NOTIFY_BAN

// Packet: 0x0082
packetLen(0x0082, 2)  // CZ_REQUEST_QUIT

// Packet: 0x0083
packetLen(0x0083, 2)  // ZC_ACCEPT_QUIT

// Packet: 0x0084
packetLen(0x0084, 2)  // ZC_REFUSE_QUIT

// Packet: 0x0085
packetLen(0x0085, 10)  // CZ_REQUEST_MOVE

// Packet: 0x0086
packetLen(0x0086, 16)  // ZC_NOTIFY_MOVE

// Packet: 0x0087
packetLen(0x0087, 12)  // ZC_NOTIFY_PLAYERMOVE

// Packet: 0x0088
packetLen(0x0088, 10)  // ZC_STOPMOVE

// Packet: 0x0089
packetLen(0x0089, 11)  // CZ_REQUEST_ACT

// Packet: 0x008a
packetLen(0x008a, 29)  // ZC_NOTIFY_ACT

// Packet: 0x008b
packetLen(0x008b, 23)  // ZC_NOTIFY_ACT_POSITION

// Packet: 0x008c
packetLen(0x008c, 14)

// Packet: 0x008d
packetLen(0x008d, -1)  // ZC_NOTIFY_CHAT

// Packet: 0x008e
packetLen(0x008e, -1)  // ZC_NOTIFY_PLAYERCHAT

// Packet: 0x0090
packetLen(0x0090, 7)  // CZ_CONTACTNPC

// Packet: 0x0091
packetLen(0x0091, 22)  // ZC_NPCACK_MAPMOVE

// Packet: 0x0092
packetLen(0x0092, 28)  // ZC_NPCACK_SERVERMOVE

// Packet: 0x0093
packetLen(0x0093, 2)  // ZC_NPCACK_ENABLE

// Packet: 0x0094
packetLen(0x0094, 19)  // CZ_REQNAME

// Packet: 0x0095
packetLen(0x0095, 30)  // ZC_ACK_REQNAME

// Packet: 0x0096
packetLen(0x0096, -1)  // CZ_WHISPER

// Packet: 0x0097
packetLen(0x0097, -1)  // ZC_WHISPER

// Packet: 0x0098
packetLen(0x0098, 3)  // ZC_ACK_WHISPER

// Packet: 0x0099
packetLen(0x0099, -1)  // CZ_BROADCAST

// Packet: 0x009a
packetLen(0x009a, -1)  // ZC_BROADCAST

// Packet: 0x009b
packetLen(0x009b, 34)  // CZ_CHANGE_DIRECTION

// Packet: 0x009c
packetLen(0x009c, 9)  // ZC_CHANGE_DIRECTION

// Packet: 0x009d
packetLen(0x009d, 17)  // ZC_ITEM_ENTRY

// Packet: 0x009e
packetLen(0x009e, 17)  // ZC_ITEM_FALL_ENTRY

// Packet: 0x009f
packetLen(0x009f, 20)  // CZ_ITEM_PICKUP

// Packet: 0x00a0
packetLen(0x00a0, 23)  // ZC_ITEM_PICKUP_ACK

// Packet: 0x00a1
packetLen(0x00a1, 6)  // ZC_ITEM_DISAPPEAR

// Packet: 0x00a2
packetLen(0x00a2, 14)  // CZ_ITEM_THROW

// Packet: 0x00a3
packetLen(0x00a3, -1)  // ZC_NORMAL_ITEMLIST

// Packet: 0x00a4
packetLen(0x00a4, -1)  // ZC_EQUIPMENT_ITEMLIST

// Packet: 0x00a5
packetLen(0x00a5, -1)  // ZC_STORE_NORMAL_ITEMLIST

// Packet: 0x00a6
packetLen(0x00a6, -1)  // ZC_STORE_EQUIPMENT_ITEMLIST

// Packet: 0x00a7
packetLen(0x00a7, 9)

// Packet: 0x00a8
packetLen(0x00a8, 7)  // ZC_USE_ITEM_ACK

// Packet: 0x00a9
packetLen(0x00a9, 6)  // CZ_REQ_WEAR_EQUIP

// Packet: 0x00aa
packetLen(0x00aa, 7)  // ZC_REQ_WEAR_EQUIP_ACK

// Packet: 0x00ab
packetLen(0x00ab, 4)  // CZ_REQ_TAKEOFF_EQUIP

// Packet: 0x00ac
packetLen(0x00ac, 7)  // ZC_REQ_TAKEOFF_EQUIP_ACK

// Packet: 0x00ae
packetLen(0x00ae, -1)  // ZC_REQ_ITEM_EXPLANATION_ACK

// Packet: 0x00af
packetLen(0x00af, 6)  // ZC_ITEM_THROW_ACK

// Packet: 0x00b0
packetLen(0x00b0, 8)  // ZC_PAR_CHANGE

// Packet: 0x00b1
packetLen(0x00b1, 8)  // ZC_LONGPAR_CHANGE

// Packet: 0x00b2
packetLen(0x00b2, 3)  // CZ_RESTART

// Packet: 0x00b3
packetLen(0x00b3, 3)  // ZC_RESTART_ACK

// Packet: 0x00b4
packetLen(0x00b4, -1)  // ZC_SAY_DIALOG

// Packet: 0x00b5
packetLen(0x00b5, 6)  // ZC_WAIT_DIALOG

// Packet: 0x00b6
packetLen(0x00b6, 6)  // ZC_CLOSE_DIALOG

// Packet: 0x00b7
packetLen(0x00b7, -1)  // ZC_MENU_LIST

// Packet: 0x00b8
packetLen(0x00b8, 7)  // CZ_CHOOSE_MENU

// Packet: 0x00b9
packetLen(0x00b9, 6)  // CZ_REQ_NEXT_SCRIPT

// Packet: 0x00ba
packetLen(0x00ba, 2)  // CZ_REQ_STATUS

// Packet: 0x00bb
packetLen(0x00bb, 5)  // CZ_STATUS_CHANGE

// Packet: 0x00bc
packetLen(0x00bc, 6)  // ZC_STATUS_CHANGE_ACK

// Packet: 0x00bd
packetLen(0x00bd, 44)  // ZC_STATUS

// Packet: 0x00be
packetLen(0x00be, 5)  // ZC_STATUS_CHANGE

// Packet: 0x00bf
packetLen(0x00bf, 3)  // CZ_REQ_EMOTION

// Packet: 0x00c0
packetLen(0x00c0, 7)  // ZC_EMOTION

// Packet: 0x00c1
packetLen(0x00c1, 2)  // CZ_REQ_USER_COUNT

// Packet: 0x00c2
packetLen(0x00c2, 6)  // ZC_USER_COUNT

// Packet: 0x00c3
packetLen(0x00c3, 8)  // ZC_SPRITE_CHANGE

// Packet: 0x00c4
packetLen(0x00c4, 6)  // ZC_SELECT_DEALTYPE

// Packet: 0x00c5
packetLen(0x00c5, 7)  // CZ_ACK_SELECT_DEALTYPE

// Packet: 0x00c6
packetLen(0x00c6, -1)  // ZC_PC_PURCHASE_ITEMLIST

// Packet: 0x00c7
packetLen(0x00c7, -1)  // ZC_PC_SELL_ITEMLIST

// Packet: 0x00c8
packetLen(0x00c8, -1)  // CZ_PC_PURCHASE_ITEMLIST

// Packet: 0x00c9
packetLen(0x00c9, -1)  // CZ_PC_SELL_ITEMLIST

// Packet: 0x00ca
packetLen(0x00ca, 3)  // ZC_PC_PURCHASE_RESULT

// Packet: 0x00cb
packetLen(0x00cb, 3)  // ZC_PC_SELL_RESULT

// Packet: 0x00cc
packetLen(0x00cc, 6)  // CZ_DISCONNECT_CHARACTER

// Packet: 0x00cd
packetLen(0x00cd, 3)  // ZC_ACK_DISCONNECT_CHARACTER

// Packet: 0x00ce
packetLen(0x00ce, 2)  // CZ_DISCONNECT_ALL_CHARACTER

// Packet: 0x00cf
packetLen(0x00cf, 27)  // CZ_SETTING_WHISPER_PC

// Packet: 0x00d0
packetLen(0x00d0, 3)  // CZ_SETTING_WHISPER_STATE

// Packet: 0x00d1
packetLen(0x00d1, 4)  // ZC_SETTING_WHISPER_PC

// Packet: 0x00d2
packetLen(0x00d2, 4)  // ZC_SETTING_WHISPER_STATE

// Packet: 0x00d3
packetLen(0x00d3, 2)  // CZ_REQ_WHISPER_LIST

// Packet: 0x00d4
packetLen(0x00d4, -1)  // ZC_WHISPER_LIST

// Packet: 0x00d5
packetLen(0x00d5, -1)  // CZ_CREATE_CHATROOM

// Packet: 0x00d6
packetLen(0x00d6, 3)  // ZC_ACK_CREATE_CHATROOM

// Packet: 0x00d7
packetLen(0x00d7, -1)  // ZC_ROOM_NEWENTRY

// Packet: 0x00d8
packetLen(0x00d8, 6)  // ZC_DESTROY_ROOM

// Packet: 0x00d9
packetLen(0x00d9, 14)  // CZ_REQ_ENTER_ROOM

// Packet: 0x00da
packetLen(0x00da, 3)  // ZC_REFUSE_ENTER_ROOM

// Packet: 0x00db
packetLen(0x00db, -1)  // ZC_ENTER_ROOM

// Packet: 0x00dc
packetLen(0x00dc, 28)  // ZC_MEMBER_NEWENTRY

// Packet: 0x00dd
packetLen(0x00dd, 29)  // ZC_MEMBER_EXIT

// Packet: 0x00de
packetLen(0x00de, -1)  // CZ_CHANGE_CHATROOM

// Packet: 0x00df
packetLen(0x00df, -1)  // ZC_CHANGE_CHATROOM

// Packet: 0x00e0
packetLen(0x00e0, 30)  // CZ_REQ_ROLE_CHANGE

// Packet: 0x00e1
packetLen(0x00e1, 30)  // ZC_ROLE_CHANGE

// Packet: 0x00e2
packetLen(0x00e2, 26)  // CZ_REQ_EXPEL_MEMBER

// Packet: 0x00e3
packetLen(0x00e3, 2)  // CZ_EXIT_ROOM

// Packet: 0x00e4
packetLen(0x00e4, 6)  // CZ_REQ_EXCHANGE_ITEM

// Packet: 0x00e5
packetLen(0x00e5, 26)  // ZC_REQ_EXCHANGE_ITEM

// Packet: 0x00e6
packetLen(0x00e6, 3)  // CZ_ACK_EXCHANGE_ITEM

// Packet: 0x00e7
packetLen(0x00e7, 3)  // ZC_ACK_EXCHANGE_ITEM

// Packet: 0x00e8
packetLen(0x00e8, 8)  // CZ_ADD_EXCHANGE_ITEM

// Packet: 0x00e9
packetLen(0x00e9, 19)  // ZC_ADD_EXCHANGE_ITEM

// Packet: 0x00ea
packetLen(0x00ea, 5)  // ZC_ACK_ADD_EXCHANGE_ITEM

// Packet: 0x00eb
packetLen(0x00eb, 2)  // CZ_CONCLUDE_EXCHANGE_ITEM

// Packet: 0x00ec
packetLen(0x00ec, 3)  // ZC_CONCLUDE_EXCHANGE_ITEM

// Packet: 0x00ed
packetLen(0x00ed, 2)  // CZ_CANCEL_EXCHANGE_ITEM

// Packet: 0x00ee
packetLen(0x00ee, 2)  // ZC_CANCEL_EXCHANGE_ITEM

// Packet: 0x00ef
packetLen(0x00ef, 2)  // CZ_EXEC_EXCHANGE_ITEM

// Packet: 0x00f0
packetLen(0x00f0, 3)  // ZC_EXEC_EXCHANGE_ITEM

// Packet: 0x00f1
packetLen(0x00f1, 2)  // ZC_EXCHANGEITEM_UNDO

// Packet: 0x00f2
packetLen(0x00f2, 6)  // ZC_NOTIFY_STOREITEM_COUNTINFO

// Packet: 0x00f3
packetLen(0x00f3, -1)  // CZ_REQUEST_CHAT

// Packet: 0x00f4
packetLen(0x00f4, 21)  // ZC_ADD_ITEM_TO_STORE

// Packet: 0x00f5
packetLen(0x00f5, 11)  // CZ_MOVE_ITEM_FROM_STORE_TO_BODY

// Packet: 0x00f6
packetLen(0x00f6, 8)  // ZC_DELETE_ITEM_FROM_STORE

// Packet: 0x00f7
packetLen(0x00f7, 17)  // CZ_REQUEST_TIME

// Packet: 0x00f8
packetLen(0x00f8, 2)  // ZC_CLOSE_STORE

// Packet: 0x00f9
packetLen(0x00f9, 26)  // CZ_MAKE_GROUP

// Packet: 0x00fa
packetLen(0x00fa, 3)  // ZC_ACK_MAKE_GROUP

// Packet: 0x00fb
packetLen(0x00fb, -1)  // ZC_GROUP_LIST

// Packet: 0x00fc
packetLen(0x00fc, 6)  // CZ_REQ_JOIN_GROUP

// Packet: 0x00fd
packetLen(0x00fd, 27)  // ZC_ACK_REQ_JOIN_GROUP

// Packet: 0x00fe
packetLen(0x00fe, 30)  // ZC_REQ_JOIN_GROUP

// Packet: 0x00ff
packetLen(0x00ff, 10)  // CZ_JOIN_GROUP

// Packet: 0x0100
packetLen(0x0100, 2)  // CZ_REQ_LEAVE_GROUP

// Packet: 0x0101
packetLen(0x0101, 6)  // ZC_GROUPINFO_CHANGE

// Packet: 0x0102
packetLen(0x0102, 6)  // CZ_CHANGE_GROUPEXPOPTION

// Packet: 0x0103
packetLen(0x0103, 30)  // CZ_REQ_EXPEL_GROUP_MEMBER

// Packet: 0x0104
packetLen(0x0104, 79)  // ZC_ADD_MEMBER_TO_GROUP

// Packet: 0x0105
packetLen(0x0105, 31)  // ZC_DELETE_MEMBER_FROM_GROUP

// Packet: 0x0106
packetLen(0x0106, 10)  // ZC_NOTIFY_HP_TO_GROUPM

// Packet: 0x0107
packetLen(0x0107, 10)  // ZC_NOTIFY_POSITION_TO_GROUPM

// Packet: 0x0108
packetLen(0x0108, -1)  // CZ_REQUEST_CHAT_PARTY

// Packet: 0x0109
packetLen(0x0109, -1)  // ZC_NOTIFY_CHAT_PARTY

// Packet: 0x010a
packetLen(0x010a, 4)  // ZC_MVP_GETTING_ITEM

// Packet: 0x010b
packetLen(0x010b, 6)  // ZC_MVP_GETTING_SPECIAL_EXP

// Packet: 0x010c
packetLen(0x010c, 6)  // ZC_MVP

// Packet: 0x010d
packetLen(0x010d, 2)  // ZC_THROW_MVPITEM

// Packet: 0x010e
packetLen(0x010e, 11)  // ZC_SKILLINFO_UPDATE

// Packet: 0x010f
packetLen(0x010f, -1)  // ZC_SKILLINFO_LIST

// Packet: 0x0110
packetLen(0x0110, 10)  // ZC_ACK_TOUSESKILL

// Packet: 0x0111
packetLen(0x0111, 39)  // ZC_ADD_SKILL

// Packet: 0x0112
packetLen(0x0112, 4)  // CZ_UPGRADE_SKILLLEVEL

// Packet: 0x0113
packetLen(0x0113, 25)  // CZ_USE_SKILL

// Packet: 0x0114
packetLen(0x0114, 31)  // ZC_NOTIFY_SKILL

// Packet: 0x0115
packetLen(0x0115, 35)  // ZC_NOTIFY_SKILL_POSITION

// Packet: 0x0116
packetLen(0x0116, 17)  // CZ_USE_SKILL_TOGROUND

// Packet: 0x0117
packetLen(0x0117, 18)  // ZC_NOTIFY_GROUNDSKILL

// Packet: 0x0118
packetLen(0x0118, 2)  // CZ_CANCEL_LOCKON

// Packet: 0x0119
packetLen(0x0119, 13)  // ZC_STATE_CHANGE

// Packet: 0x011a
packetLen(0x011a, 15)  // ZC_USE_SKILL

// Packet: 0x011b
packetLen(0x011b, 20)  // CZ_SELECT_WARPPOINT

// Packet: 0x011c
packetLen(0x011c, 68)  // ZC_WARPLIST

// Packet: 0x011d
packetLen(0x011d, 2)  // CZ_REMEMBER_WARPPOINT

// Packet: 0x011e
packetLen(0x011e, 3)  // ZC_ACK_REMEMBER_WARPPOINT

// Packet: 0x011f
packetLen(0x011f, 16)  // ZC_SKILL_ENTRY

// Packet: 0x0120
packetLen(0x0120, 6)  // ZC_SKILL_DISAPPEAR

// Packet: 0x0121
packetLen(0x0121, 14)  // ZC_NOTIFY_CARTITEM_COUNTINFO

// Packet: 0x0122
packetLen(0x0122, -1)  // ZC_CART_EQUIPMENT_ITEMLIST

// Packet: 0x0123
packetLen(0x0123, -1)  // ZC_CART_NORMAL_ITEMLIST

// Packet: 0x0124
packetLen(0x0124, 21)  // ZC_ADD_ITEM_TO_CART

// Packet: 0x0125
packetLen(0x0125, 8)  // ZC_DELETE_ITEM_FROM_CART

// Packet: 0x0126
packetLen(0x0126, 8)  // CZ_MOVE_ITEM_FROM_BODY_TO_CART

// Packet: 0x0127
packetLen(0x0127, 8)  // CZ_MOVE_ITEM_FROM_CART_TO_BODY

// Packet: 0x0128
packetLen(0x0128, 8)  // CZ_MOVE_ITEM_FROM_STORE_TO_CART

// Packet: 0x0129
packetLen(0x0129, 8)  // CZ_MOVE_ITEM_FROM_CART_TO_STORE

// Packet: 0x012a
packetLen(0x012a, 2)  // CZ_REQ_CARTOFF

// Packet: 0x012b
packetLen(0x012b, 2)  // ZC_CARTOFF

// Packet: 0x012c
packetLen(0x012c, 3)  // ZC_ACK_ADDITEM_TO_CART

// Packet: 0x012d
packetLen(0x012d, 4)  // ZC_OPENSTORE

// Packet: 0x012e
packetLen(0x012e, 2)  // CZ_REQ_CLOSESTORE

// Packet: 0x012f
packetLen(0x012f, -1)  // CZ_REQ_OPENSTORE

// Packet: 0x0130
packetLen(0x0130, 6)  // CZ_REQ_BUY_FROMMC

// Packet: 0x0131
packetLen(0x0131, 86)  // ZC_STORE_ENTRY

// Packet: 0x0132
packetLen(0x0132, 6)  // ZC_DISAPPEAR_ENTRY

// Packet: 0x0133
packetLen(0x0133, -1)  // ZC_PC_PURCHASE_ITEMLIST_FROMMC

// Packet: 0x0134
packetLen(0x0134, -1)  // CZ_PC_PURCHASE_ITEMLIST_FROMMC

// Packet: 0x0135
packetLen(0x0135, 7)  // ZC_PC_PURCHASE_RESULT_FROMMC

// Packet: 0x0136
packetLen(0x0136, -1)  // ZC_PC_PURCHASE_MYITEMLIST

// Packet: 0x0137
packetLen(0x0137, 6)  // ZC_DELETEITEM_FROM_MCSTORE

// Packet: 0x0138
packetLen(0x0138, 3)  // CZ_PKMODE_CHANGE

// Packet: 0x0139
packetLen(0x0139, 16)  // ZC_ATTACK_FAILURE_FOR_DISTANCE

// Packet: 0x013a
packetLen(0x013a, 4)  // ZC_ATTACK_RANGE

// Packet: 0x013b
packetLen(0x013b, 4)  // ZC_ACTION_FAILURE

// Packet: 0x013c
packetLen(0x013c, 4)  // ZC_EQUIP_ARROW

// Packet: 0x013d
packetLen(0x013d, 6)  // ZC_RECOVERY

// Packet: 0x013e
packetLen(0x013e, 24)  // ZC_USESKILL_ACK

// Packet: 0x013f
packetLen(0x013f, 26)  // CZ_ITEM_CREATE

// Packet: 0x0140
packetLen(0x0140, 22)  // CZ_MOVETO_MAP

// Packet: 0x0141
packetLen(0x0141, 14)  // ZC_COUPLESTATUS

// Packet: 0x0142
packetLen(0x0142, 6)  // ZC_OPEN_EDITDLG

// Packet: 0x0143
packetLen(0x0143, 10)  // CZ_INPUT_EDITDLG

// Packet: 0x0144
packetLen(0x0144, 23)  // ZC_COMPASS

// Packet: 0x0145
packetLen(0x0145, 19)  // ZC_SHOW_IMAGE

// Packet: 0x0146
packetLen(0x0146, 6)  // CZ_CLOSE_DIALOG

// Packet: 0x0147
packetLen(0x0147, 39)  // ZC_AUTORUN_SKILL

// Packet: 0x0148
packetLen(0x0148, 8)  // ZC_RESURRECTION

// Packet: 0x0149
packetLen(0x0149, 9)  // CZ_REQ_GIVE_MANNER_POINT

// Packet: 0x014a
packetLen(0x014a, 6)  // ZC_ACK_GIVE_MANNER_POINT

// Packet: 0x014b
packetLen(0x014b, 27)  // ZC_NOTIFY_MANNER_POINT_GIVEN

// Packet: 0x014c
packetLen(0x014c, -1)  // ZC_MYGUILD_BASIC_INFO

// Packet: 0x014d
packetLen(0x014d, 2)  // CZ_REQ_GUILD_MENUINTERFACE

// Packet: 0x014e
packetLen(0x014e, 6)  // ZC_ACK_GUILD_MENUINTERFACE

// Packet: 0x014f
packetLen(0x014f, 6)  // CZ_REQ_GUILD_MENU

// Packet: 0x0150
packetLen(0x0150, 110)  // ZC_GUILD_INFO

// Packet: 0x0151
packetLen(0x0151, 6)  // CZ_REQ_GUILD_EMBLEM_IMG

// Packet: 0x0152
packetLen(0x0152, -1)  // ZC_GUILD_EMBLEM_IMG

// Packet: 0x0153
packetLen(0x0153, -1)  // CZ_REGISTER_GUILD_EMBLEM_IMG

// Packet: 0x0154
packetLen(0x0154, -1)  // ZC_MEMBERMGR_INFO

// Packet: 0x0155
packetLen(0x0155, -1)  // CZ_REQ_CHANGE_MEMBERPOS

// Packet: 0x0156
packetLen(0x0156, -1)  // ZC_ACK_REQ_CHANGE_MEMBERS

// Packet: 0x0157
packetLen(0x0157, 6)  // CZ_REQ_OPEN_MEMBER_INFO

// Packet: 0x0158
packetLen(0x0158, -1)  // ZC_ACK_OPEN_MEMBER_INFO

// Packet: 0x0159
packetLen(0x0159, 54)  // CZ_REQ_LEAVE_GUILD

// Packet: 0x015a
packetLen(0x015a, 66)  // ZC_ACK_LEAVE_GUILD

// Packet: 0x015b
packetLen(0x015b, 54)  // CZ_REQ_BAN_GUILD

// Packet: 0x015c
packetLen(0x015c, 90)  // ZC_ACK_BAN_GUILD

// Packet: 0x015d
packetLen(0x015d, 42)  // CZ_REQ_DISORGANIZE_GUILD

// Packet: 0x015e
packetLen(0x015e, 6)  // ZC_ACK_DISORGANIZE_GUILD_RESULT

// Packet: 0x015f
packetLen(0x015f, 42)  // ZC_ACK_DISORGANIZE_GUILD

// Packet: 0x0160
packetLen(0x0160, -1)  // ZC_POSITION_INFO

// Packet: 0x0161
packetLen(0x0161, -1)  // CZ_REG_CHANGE_GUILD_POSITIONINFO

// Packet: 0x0162
packetLen(0x0162, -1)  // ZC_GUILD_SKILLINFO

// Packet: 0x0163
packetLen(0x0163, -1)  // ZC_BAN_LIST

// Packet: 0x0164
packetLen(0x0164, -1)  // ZC_OTHER_GUILD_LIST

// Packet: 0x0165
packetLen(0x0165, 30)  // CZ_REQ_MAKE_GUILD

// Packet: 0x0166
packetLen(0x0166, -1)  // ZC_POSITION_ID_NAME_INFO

// Packet: 0x0167
packetLen(0x0167, 3)  // ZC_RESULT_MAKE_GUILD

// Packet: 0x0168
packetLen(0x0168, 14)  // CZ_REQ_JOIN_GUILD

// Packet: 0x0169
packetLen(0x0169, 3)  // ZC_ACK_REQ_JOIN_GUILD

// Packet: 0x016a
packetLen(0x016a, 30)  // ZC_REQ_JOIN_GUILD

// Packet: 0x016b
packetLen(0x016b, 10)  // CZ_JOIN_GUILD

// Packet: 0x016c
packetLen(0x016c, 43)  // ZC_UPDATE_GDID

// Packet: 0x016d
packetLen(0x016d, 14)  // ZC_UPDATE_CHARSTAT

// Packet: 0x016e
packetLen(0x016e, 186)  // CZ_GUILD_NOTICE

// Packet: 0x016f
packetLen(0x016f, 182)  // ZC_GUILD_NOTICE

// Packet: 0x0170
packetLen(0x0170, 14)  // CZ_REQ_ALLY_GUILD

// Packet: 0x0171
packetLen(0x0171, 30)  // ZC_REQ_ALLY_GUILD

// Packet: 0x0172
packetLen(0x0172, 10)  // CZ_ALLY_GUILD

// Packet: 0x0173
packetLen(0x0173, 3)  // ZC_ACK_REQ_ALLY_GUILD

// Packet: 0x0174
packetLen(0x0174, -1)  // ZC_ACK_CHANGE_GUILD_POSITIONINFO

// Packet: 0x0175
packetLen(0x0175, 6)  // CZ_REQ_GUILD_MEMBER_INFO

// Packet: 0x0176
packetLen(0x0176, 106)  // ZC_ACK_GUILD_MEMBER_INFO

// Packet: 0x0177
packetLen(0x0177, -1)  // ZC_ITEMIDENTIFY_LIST

// Packet: 0x0178
packetLen(0x0178, 4)  // CZ_REQ_ITEMIDENTIFY

// Packet: 0x0179
packetLen(0x0179, 5)  // ZC_ACK_ITEMIDENTIFY

// Packet: 0x017a
packetLen(0x017a, 4)  // CZ_REQ_ITEMCOMPOSITION_LIST

// Packet: 0x017b
packetLen(0x017b, -1)  // ZC_ITEMCOMPOSITION_LIST

// Packet: 0x017c
packetLen(0x017c, 6)  // CZ_REQ_ITEMCOMPOSITION

// Packet: 0x017d
packetLen(0x017d, 7)  // ZC_ACK_ITEMCOMPOSITION

// Packet: 0x017e
packetLen(0x017e, -1)  // CZ_GUILD_CHAT

// Packet: 0x017f
packetLen(0x017f, -1)  // ZC_GUILD_CHAT

// Packet: 0x0180
packetLen(0x0180, 6)  // CZ_REQ_HOSTILE_GUILD

// Packet: 0x0181
packetLen(0x0181, 3)  // ZC_ACK_REQ_HOSTILE_GUILD

// Packet: 0x0182
packetLen(0x0182, 106)  // ZC_MEMBER_ADD

// Packet: 0x0183
packetLen(0x0183, 10)  // CZ_REQ_DELETE_RELATED_GUILD

// Packet: 0x0184
packetLen(0x0184, 10)  // ZC_DELETE_RELATED_GUILD

// Packet: 0x0185
packetLen(0x0185, 34)  // ZC_ADD_RELATED_GUILD

// Packet: 0x0187
packetLen(0x0187, 6)  // CH_UNKNOWN_PING

// Packet: 0x0188
packetLen(0x0188, 8)  // ZC_ACK_ITEMREFINING

// Packet: 0x0189
packetLen(0x0189, 4)  // ZC_NOTIFY_MAPINFO

// Packet: 0x018a
packetLen(0x018a, 4)  // CZ_REQ_DISCONNECT

// Packet: 0x018b
packetLen(0x018b, 4)  // ZC_ACK_REQ_DISCONNECT

// Packet: 0x018c
packetLen(0x018c, 29)  // ZC_MONSTER_INFO

// Packet: 0x018d
packetLen(0x018d, -1)  // ZC_MAKABLEITEMLIST

// Packet: 0x018e
packetLen(0x018e, 10)  // CZ_REQMAKINGITEM

// Packet: 0x018f
packetLen(0x018f, 6)  // ZC_ACK_REQMAKINGITEM

// Packet: 0x0190
packetLen(0x0190, 23)  // CZ_USE_SKILL_TOGROUND_WITHTALKBOX

// Packet: 0x0191
packetLen(0x0191, 86)  // ZC_TALKBOX_CHATCONTENTS

// Packet: 0x0192
packetLen(0x0192, 24)  // ZC_UPDATE_MAPINFO

// Packet: 0x0193
packetLen(0x0193, 2)  // CZ_REQNAME_BYGID

// Packet: 0x0194
packetLen(0x0194, 30)  // ZC_ACK_REQNAME_BYGID

// Packet: 0x0195
packetLen(0x0195, 102)  // ZC_ACK_REQNAMEALL

// Packet: 0x0196
packetLen(0x0196, 9)  // ZC_MSG_STATE_CHANGE

// Packet: 0x0197
packetLen(0x0197, 4)  // CZ_RESET

// Packet: 0x0198
packetLen(0x0198, 8)  // CZ_CHANGE_MAPTYPE

// Packet: 0x0199
packetLen(0x0199, 4)  // ZC_NOTIFY_MAPPROPERTY

// Packet: 0x019a
packetLen(0x019a, 14)  // ZC_NOTIFY_RANKING

// Packet: 0x019b
packetLen(0x019b, 10)  // ZC_NOTIFY_EFFECT

// Packet: 0x019c
packetLen(0x019c, -1)  // CZ_LOCALBROADCAST

// Packet: 0x019d
packetLen(0x019d, 6)  // CZ_CHANGE_EFFECTSTATE

// Packet: 0x019e
packetLen(0x019e, 2)  // ZC_START_CAPTURE

// Packet: 0x019f
packetLen(0x019f, 6)  // CZ_TRYCAPTURE_MONSTER

// Packet: 0x01a0
packetLen(0x01a0, 3)  // ZC_TRYCAPTURE_MONSTER

// Packet: 0x01a1
packetLen(0x01a1, 3)  // CZ_COMMAND_PET

// Packet: 0x01a2
#if PACKETVER >= 20081126
packetLen(0x01a2, 37)  // ZC_PROPERTY_PET
#elif PACKETVER >= 20080827
packetLen(0x01a2, 35)  // ZC_PROPERTY_PET
#endif

// Packet: 0x01a3
packetLen(0x01a3, 5)  // ZC_FEED_PET

// Packet: 0x01a4
packetLen(0x01a4, 11)  // ZC_CHANGESTATE_PET

// Packet: 0x01a5
packetLen(0x01a5, 26)  // CZ_RENAME_PET

// Packet: 0x01a6
packetLen(0x01a6, -1)  // ZC_PETEGG_LIST

// Packet: 0x01a7
packetLen(0x01a7, 4)  // CZ_SELECT_PETEGG

// Packet: 0x01a8
packetLen(0x01a8, 4)  // CZ_PETEGG_INFO

// Packet: 0x01a9
packetLen(0x01a9, 6)  // CZ_PET_ACT

// Packet: 0x01aa
packetLen(0x01aa, 10)  // ZC_PET_ACT

// Packet: 0x01ab
packetLen(0x01ab, 12)  // ZC_PAR_CHANGE_USER

// Packet: 0x01ac
packetLen(0x01ac, 6)  // ZC_SKILL_UPDATE

// Packet: 0x01ad
packetLen(0x01ad, -1)  // ZC_MAKINGARROW_LIST

// Packet: 0x01ae
packetLen(0x01ae, 4)  // CZ_REQ_MAKINGARROW

// Packet: 0x01af
packetLen(0x01af, 4)  // CZ_REQ_CHANGECART

// Packet: 0x01b0
packetLen(0x01b0, 11)  // ZC_NPCSPRITE_CHANGE

// Packet: 0x01b1
packetLen(0x01b1, 7)  // ZC_SHOWDIGIT

// Packet: 0x01b2
packetLen(0x01b2, -1)  // CZ_REQ_OPENSTORE2

// Packet: 0x01b3
packetLen(0x01b3, 67)  // ZC_SHOW_IMAGE2

// Packet: 0x01b4
packetLen(0x01b4, 12)  // ZC_CHANGE_GUILD

// Packet: 0x01b5
packetLen(0x01b5, 18)  // SC_BILLING_INFO

// Packet: 0x01b6
packetLen(0x01b6, 114)  // ZC_GUILD_INFO2

// Packet: 0x01b7
packetLen(0x01b7, 6)  // CZ_GUILD_ZENY

// Packet: 0x01b8
packetLen(0x01b8, 3)  // ZC_GUILD_ZENY_ACK

// Packet: 0x01b9
packetLen(0x01b9, 6)  // ZC_DISPEL

// Packet: 0x01ba
packetLen(0x01ba, 26)  // CZ_REMOVE_AID

// Packet: 0x01bb
packetLen(0x01bb, 26)  // CZ_SHIFT

// Packet: 0x01bc
packetLen(0x01bc, 26)  // CZ_RECALL

// Packet: 0x01bd
packetLen(0x01bd, 26)  // CZ_RECALL_GID

// Packet: 0x01be
packetLen(0x01be, 2)  // AC_ASK_PNGAMEROOM

// Packet: 0x01bf
packetLen(0x01bf, 3)  // CA_REPLY_PNGAMEROOM

// Packet: 0x01c0
packetLen(0x01c0, 2)  // CZ_REQ_REMAINTIME

// Packet: 0x01c1
packetLen(0x01c1, 14)  // ZC_REPLY_REMAINTIME

// Packet: 0x01c2
packetLen(0x01c2, 10)  // ZC_INFO_REMAINTIME

// Packet: 0x01c3
packetLen(0x01c3, -1)  // ZC_BROADCAST2

// Packet: 0x01c4
packetLen(0x01c4, 22)  // ZC_ADD_ITEM_TO_STORE2

// Packet: 0x01c5
packetLen(0x01c5, 22)  // ZC_ADD_ITEM_TO_CART2

// Packet: 0x01c6
packetLen(0x01c6, 4)  // CS_REQ_ENCRYPTION

// Packet: 0x01c7
packetLen(0x01c7, 2)  // SC_ACK_ENCRYPTION

// Packet: 0x01c8
packetLen(0x01c8, 13)  // ZC_USE_ITEM_ACK2

// Packet: 0x01c9
packetLen(0x01c9, 97)  // ZC_SKILL_ENTRY2

// Packet: 0x01ca
packetLen(0x01ca, 3)  // CZ_REQMAKINGHOMUN

// Packet: 0x01cb
packetLen(0x01cb, 9)  // CZ_MONSTER_TALK

// Packet: 0x01cc
packetLen(0x01cc, 9)  // ZC_MONSTER_TALK

// Packet: 0x01cd
packetLen(0x01cd, 30)  // ZC_AUTOSPELLLIST

// Packet: 0x01ce
packetLen(0x01ce, 6)  // CZ_SELECTAUTOSPELL

// Packet: 0x01cf
packetLen(0x01cf, 28)  // ZC_DEVOTIONLIST

// Packet: 0x01d0
packetLen(0x01d0, 8)  // ZC_SPIRITS

// Packet: 0x01d1
packetLen(0x01d1, 14)  // ZC_BLADESTOP

// Packet: 0x01d2
packetLen(0x01d2, 10)  // ZC_COMBODELAY

// Packet: 0x01d3
packetLen(0x01d3, 35)  // ZC_SOUND

// Packet: 0x01d4
packetLen(0x01d4, 6)  // ZC_OPEN_EDITDLGSTR

// Packet: 0x01d5
packetLen(0x01d5, -1)  // CZ_INPUT_EDITDLGSTR

// Packet: 0x01d6
packetLen(0x01d6, 4)  // ZC_NOTIFY_MAPPROPERTY2

// Packet: 0x01d7
packetLen(0x01d7, 11)  // ZC_SPRITE_CHANGE2

// Packet: 0x01d8
packetLen(0x01d8, 54)  // ZC_NOTIFY_STANDENTRY2

// Packet: 0x01d9
packetLen(0x01d9, 53)  // ZC_NOTIFY_NEWENTRY2

// Packet: 0x01da
packetLen(0x01da, 60)  // ZC_NOTIFY_MOVEENTRY2

// Packet: 0x01db
packetLen(0x01db, 2)  // CA_REQ_HASH

// Packet: 0x01dc
packetLen(0x01dc, -1)  // AC_ACK_HASH

// Packet: 0x01dd
packetLen(0x01dd, 47)  // CA_LOGIN2

// Packet: 0x01de
packetLen(0x01de, 33)  // ZC_NOTIFY_SKILL2

// Packet: 0x01df
packetLen(0x01df, 6)  // CZ_REQ_ACCOUNTNAME

// Packet: 0x01e0
packetLen(0x01e0, 30)  // ZC_ACK_ACCOUNTNAME

// Packet: 0x01e1
packetLen(0x01e1, 8)  // ZC_SPIRITS2

// Packet: 0x01e2
packetLen(0x01e2, 34)  // ZC_REQ_COUPLE

// Packet: 0x01e3
packetLen(0x01e3, 14)  // CZ_JOIN_COUPLE

// Packet: 0x01e4
packetLen(0x01e4, 2)  // ZC_START_COUPLE

// Packet: 0x01e5
packetLen(0x01e5, 6)  // CZ_REQ_JOIN_COUPLE

// Packet: 0x01e6
packetLen(0x01e6, 26)  // ZC_COUPLENAME

// Packet: 0x01e7
packetLen(0x01e7, 2)  // CZ_DORIDORI

// Packet: 0x01e8
packetLen(0x01e8, 28)  // CZ_MAKE_GROUP2

// Packet: 0x01e9
packetLen(0x01e9, 81)  // ZC_ADD_MEMBER_TO_GROUP2

// Packet: 0x01ea
packetLen(0x01ea, 6)  // ZC_CONGRATULATION

// Packet: 0x01eb
packetLen(0x01eb, 10)  // ZC_NOTIFY_POSITION_TO_GUILDM

// Packet: 0x01ec
packetLen(0x01ec, 26)  // ZC_GUILD_MEMBER_MAP_CHANGE

// Packet: 0x01ed
packetLen(0x01ed, 2)  // CZ_CHOPOKGI

// Packet: 0x01ee
packetLen(0x01ee, -1)  // ZC_NORMAL_ITEMLIST2

// Packet: 0x01ef
packetLen(0x01ef, -1)  // ZC_CART_NORMAL_ITEMLIST2

// Packet: 0x01f0
packetLen(0x01f0, -1)  // ZC_STORE_NORMAL_ITEMLIST2

// Packet: 0x01f1
packetLen(0x01f1, -1)  // AC_NOTIFY_ERROR

// Packet: 0x01f2
packetLen(0x01f2, 20)  // ZC_UPDATE_CHARSTAT2

// Packet: 0x01f3
packetLen(0x01f3, 10)  // ZC_NOTIFY_EFFECT2

// Packet: 0x01f4
packetLen(0x01f4, 32)  // ZC_REQ_EXCHANGE_ITEM2

// Packet: 0x01f5
packetLen(0x01f5, 9)  // ZC_ACK_EXCHANGE_ITEM2

// Packet: 0x01f6
packetLen(0x01f6, 34)  // ZC_REQ_BABY

// Packet: 0x01f7
packetLen(0x01f7, 14)  // CZ_JOIN_BABY

// Packet: 0x01f8
packetLen(0x01f8, 2)  // ZC_START_BABY

// Packet: 0x01f9
packetLen(0x01f9, 6)  // CZ_REQ_JOIN_BABY

// Packet: 0x01fa
packetLen(0x01fa, 48)  // CA_LOGIN3

// Packet: 0x01fb
packetLen(0x01fb, 56)  // CH_DELETE_CHAR2

// Packet: 0x01fc
packetLen(0x01fc, -1)  // ZC_REPAIRITEMLIST

// Packet: 0x01fd
packetLen(0x01fd, 15)  // CZ_REQ_ITEMREPAIR

// Packet: 0x01fe
packetLen(0x01fe, 5)  // ZC_ACK_ITEMREPAIR

// Packet: 0x01ff
packetLen(0x01ff, 10)  // ZC_HIGHJUMP

// Packet: 0x0200
packetLen(0x0200, 26)  // CA_CONNECT_INFO_CHANGED

// Packet: 0x0201
packetLen(0x0201, -1)  // ZC_FRIENDS_LIST

// Packet: 0x0202
packetLen(0x0202, 26)  // CZ_ADD_FRIENDS

// Packet: 0x0203
packetLen(0x0203, 10)  // CZ_DELETE_FRIENDS

// Packet: 0x0204
packetLen(0x0204, 18)  // CA_EXE_HASHCHECK

// Packet: 0x0205
packetLen(0x0205, 26)  // ZC_DIVORCE

// Packet: 0x0206
packetLen(0x0206, 11)  // ZC_FRIENDS_STATE

// Packet: 0x0207
packetLen(0x0207, 34)  // ZC_REQ_ADD_FRIENDS

// Packet: 0x0208
packetLen(0x0208, 14)  // CZ_ACK_REQ_ADD_FRIENDS

// Packet: 0x0209
packetLen(0x0209, 36)  // ZC_ADD_FRIENDS_LIST

// Packet: 0x020a
packetLen(0x020a, 10)  // ZC_DELETE_FRIENDS

// Packet: 0x020d
packetLen(0x020d, -1)  // HC_BLOCK_CHARACTER

// Packet: 0x020e
packetLen(0x020e, 32)  // ZC_STARSKILL

// Packet: 0x020f
packetLen(0x020f, 10)  // CZ_REQ_PVPPOINT

// Packet: 0x0210
packetLen(0x0210, 22)  // ZC_ACK_PVPPOINT

// Packet: 0x0212
packetLen(0x0212, 26)  // CZ_REQ_GIVE_MANNER_BYNAME

// Packet: 0x0213
packetLen(0x0213, 26)  // CZ_REQ_STATUS_GM

// Packet: 0x0214
packetLen(0x0214, 42)  // ZC_ACK_STATUS_GM

// Packet: 0x0215
packetLen(0x0215, 6)  // ZC_SKILLMSG

// Packet: 0x0216
packetLen(0x0216, 6)  // ZC_BABYMSG

// Packet: 0x0217
packetLen(0x0217, 2)  // CZ_BLACKSMITH_RANK

// Packet: 0x0218
packetLen(0x0218, 2)  // CZ_ALCHEMIST_RANK

// Packet: 0x0219
packetLen(0x0219, 282)  // ZC_BLACKSMITH_RANK

// Packet: 0x021a
packetLen(0x021a, 282)  // ZC_ALCHEMIST_RANK

// Packet: 0x021b
packetLen(0x021b, 10)  // ZC_BLACKSMITH_POINT

// Packet: 0x021c
packetLen(0x021c, 10)  // ZC_ALCHEMIST_POINT

// Packet: 0x021d
packetLen(0x021d, 6)  // CZ_LESSEFFECT

// Packet: 0x021e
packetLen(0x021e, 6)  // ZC_LESSEFFECT

// Packet: 0x021f
packetLen(0x021f, 66)  // ZC_NOTIFY_PKINFO

// Packet: 0x0220
packetLen(0x0220, 10)  // ZC_NOTIFY_CRAZYKILLER

// Packet: 0x0221
packetLen(0x0221, -1)  // ZC_NOTIFY_WEAPONITEMLIST

// Packet: 0x0222
packetLen(0x0222, 6)  // CZ_REQ_WEAPONREFINE

// Packet: 0x0223
packetLen(0x0223, 8)  // ZC_ACK_WEAPONREFINE

// Packet: 0x0224
packetLen(0x0224, 10)  // ZC_TAEKWON_POINT

// Packet: 0x0225
packetLen(0x0225, 2)  // CZ_TAEKWON_RANK

// Packet: 0x0226
packetLen(0x0226, 282)  // ZC_TAEKWON_RANK

// Packet: 0x0227
packetLen(0x0227, 18)  // ZC_GAME_GUARD

// Packet: 0x0228
packetLen(0x0228, 18)  // CZ_ACK_GAME_GUARD

// Packet: 0x0229
packetLen(0x0229, 15)  // ZC_STATE_CHANGE3

// Packet: 0x022a
packetLen(0x022a, 58)  // ZC_NOTIFY_STANDENTRY3

// Packet: 0x022b
packetLen(0x022b, 57)  // ZC_NOTIFY_NEWENTRY3

// Packet: 0x022c
packetLen(0x022c, 65)  // ZC_NOTIFY_MOVEENTRY3

// Packet: 0x022d
packetLen(0x022d, 5)  // CZ_COMMAND_MER

// Packet: 0x022e
packetLen(0x022e, 71)  // ZC_PROPERTY_HOMUN

// Packet: 0x022f
packetLen(0x022f, 5)  // ZC_FEED_MER

// Packet: 0x0230
packetLen(0x0230, 12)  // ZC_CHANGESTATE_MER

// Packet: 0x0231
packetLen(0x0231, 26)  // CZ_RENAME_MER

// Packet: 0x0232
packetLen(0x0232, 9)  // CZ_REQUEST_MOVENPC

// Packet: 0x0233
packetLen(0x0233, 11)  // CZ_REQUEST_ACTNPC

// Packet: 0x0234
packetLen(0x0234, 6)  // CZ_REQUEST_MOVETOOWNER

// Packet: 0x0235
packetLen(0x0235, -1)  // ZC_HOSKILLINFO_LIST

// Packet: 0x0236
packetLen(0x0236, 10)  // ZC_KILLER_POINT

// Packet: 0x0237
packetLen(0x0237, 2)  // CZ_KILLER_RANK

// Packet: 0x0238
packetLen(0x0238, 282)  // ZC_KILLER_RANK

// Packet: 0x0239
packetLen(0x0239, 11)  // ZC_HOSKILLINFO_UPDATE

// Packet: 0x023a
packetLen(0x023a, 4)  // ZC_REQ_STORE_PASSWORD

// Packet: 0x023b
packetLen(0x023b, 36)  // CZ_ACK_STORE_PASSWORD

// Packet: 0x023c
packetLen(0x023c, 6)  // ZC_RESULT_STORE_PASSWORD

// Packet: 0x023d
packetLen(0x023d, 6)  // AC_EVENT_RESULT

// Packet: 0x023e
packetLen(0x023e, 8)  // HC_REQUEST_CHARACTER_PASSWORD

// Packet: 0x023f
packetLen(0x023f, 2)  // CZ_MAIL_GET_LIST

// Packet: 0x0240
packetLen(0x0240, -1)  // ZC_MAIL_REQ_GET_LIST

// Packet: 0x0241
packetLen(0x0241, 6)  // CZ_MAIL_OPEN

// Packet: 0x0242
packetLen(0x0242, -1)  // ZC_MAIL_REQ_OPEN

// Packet: 0x0243
packetLen(0x0243, 6)  // CZ_MAIL_DELETE

// Packet: 0x0244
packetLen(0x0244, 6)  // CZ_MAIL_GET_ITEM

// Packet: 0x0245
packetLen(0x0245, 3)  // ZC_MAIL_REQ_GET_ITEM

// Packet: 0x0246
packetLen(0x0246, 4)  // CZ_MAIL_RESET_ITEM

// Packet: 0x0247
packetLen(0x0247, 8)  // CZ_MAIL_ADD_ITEM

// Packet: 0x0248
packetLen(0x0248, -1)  // CZ_MAIL_SEND

// Packet: 0x0249
packetLen(0x0249, 3)  // ZC_MAIL_REQ_SEND

// Packet: 0x024a
packetLen(0x024a, 70)  // ZC_MAIL_RECEIVE

// Packet: 0x024b
packetLen(0x024b, 4)  // CZ_AUCTION_CREATE

// Packet: 0x024c
packetLen(0x024c, 8)  // CZ_AUCTION_ADD_ITEM

// Packet: 0x024d
packetLen(0x024d, 12)  // CZ_AUCTION_ADD

// Packet: 0x024e
packetLen(0x024e, 6)  // CZ_AUCTION_ADD_CANCEL

// Packet: 0x024f
packetLen(0x024f, 10)  // CZ_AUCTION_BUY

// Packet: 0x0250
packetLen(0x0250, 3)  // ZC_AUCTION_RESULT

// Packet: 0x0251
packetLen(0x0251, 34)  // CZ_AUCTION_ITEM_SEARCH

// Packet: 0x0252
packetLen(0x0252, -1)  // ZC_AUCTION_ITEM_REQ_SEARCH

// Packet: 0x0253
packetLen(0x0253, 3)  // ZC_STARPLACE

// Packet: 0x0254
packetLen(0x0254, 3)  // CZ_AGREE_STARPLACE

// Packet: 0x0255
packetLen(0x0255, 5)  // ZC_ACK_MAIL_ADD_ITEM

// Packet: 0x0256
packetLen(0x0256, 5)  // ZC_ACK_AUCTION_ADD_ITEM

// Packet: 0x0257
packetLen(0x0257, 8)  // ZC_ACK_MAIL_DELETE

// Packet: 0x0258
packetLen(0x0258, 2)  // CA_REQ_GAME_GUARD_CHECK

// Packet: 0x0259
packetLen(0x0259, 3)  // AC_ACK_GAME_GUARD

// Packet: 0x025a
packetLen(0x025a, -1)  // ZC_MAKINGITEM_LIST

// Packet: 0x025b
packetLen(0x025b, 6)  // CZ_REQ_MAKINGITEM

// Packet: 0x025c
packetLen(0x025c, 4)  // CZ_AUCTION_REQ_MY_INFO

// Packet: 0x025d
packetLen(0x025d, 6)  // CZ_AUCTION_REQ_MY_SELL_STOP

// Packet: 0x025e
packetLen(0x025e, 4)  // ZC_AUCTION_ACK_MY_SELL_STOP

// Packet: 0x025f
packetLen(0x025f, 6)  // ZC_AUCTION_WINDOWS

// Packet: 0x0260
packetLen(0x0260, 6)  // ZC_MAIL_WINDOWS

// Packet: 0x0261
packetLen(0x0261, 11)  // AC_REQ_LOGIN_OLDEKEY

// Packet: 0x0262
packetLen(0x0262, 11)  // AC_REQ_LOGIN_NEWEKEY

// Packet: 0x0263
packetLen(0x0263, 11)  // AC_REQ_LOGIN_CARDPASS

// Packet: 0x0264
packetLen(0x0264, 20)  // CA_ACK_LOGIN_OLDEKEY

// Packet: 0x0265
packetLen(0x0265, 20)  // CA_ACK_LOGIN_NEWEKEY

// Packet: 0x0266
packetLen(0x0266, 30)  // CA_ACK_LOGIN_CARDPASS

// Packet: 0x0267
packetLen(0x0267, 4)  // AC_ACK_EKEY_FAIL_NOTEXIST

// Packet: 0x0268
packetLen(0x0268, 4)  // AC_ACK_EKEY_FAIL_NOTUSESEKEY

// Packet: 0x0269
packetLen(0x0269, 4)  // AC_ACK_EKEY_FAIL_NOTUSEDEKEY

// Packet: 0x026a
packetLen(0x026a, 4)  // AC_ACK_EKEY_FAIL_AUTHREFUSE

// Packet: 0x026b
packetLen(0x026b, 4)  // AC_ACK_EKEY_FAIL_INPUTEKEY

// Packet: 0x026c
packetLen(0x026c, 4)  // AC_ACK_EKEY_FAIL_NOTICE

// Packet: 0x026d
packetLen(0x026d, 4)  // AC_ACK_EKEY_FAIL_NEEDCARDPASS

// Packet: 0x026f
packetLen(0x026f, 2)  // AC_ACK_FIRST_LOGIN

// Packet: 0x0270
packetLen(0x0270, 2)  // AC_REQ_LOGIN_ACCOUNT_INFO

// Packet: 0x0271
packetLen(0x0271, 40)  // CA_ACK_LOGIN_ACCOUNT_INFO

// Packet: 0x0272
packetLen(0x0272, 44)  // AC_ACK_PT_ID_INFO

// Packet: 0x0273
packetLen(0x0273, 30)  // CZ_REQ_MAIL_RETURN

// Packet: 0x0274
packetLen(0x0274, 8)  // ZC_ACK_MAIL_RETURN

// Packet: 0x0277
packetLen(0x0277, 84)  // CA_LOGIN_PCBANG

// Packet: 0x0278
packetLen(0x0278, 2)  // ZC_NOTIFY_PCBANG

// Packet: 0x0279
packetLen(0x0279, 2)  // CZ_HUNTINGLIST

// Packet: 0x027a
packetLen(0x027a, -1)  // ZC_HUNTINGLIST

// Packet: 0x027b
packetLen(0x027b, 14)  // ZC_PCBANG_EFFECT

// Packet: 0x027c
packetLen(0x027c, 60)  // CA_LOGIN4

// Packet: 0x027d
packetLen(0x027d, 62)  // ZC_PROPERTY_MERCE

// Packet: 0x027e
packetLen(0x027e, -1)  // ZC_SHANDA_PROTECT

// Packet: 0x027f
packetLen(0x027f, 8)  // CA_CLIENT_TYPE

// Packet: 0x0280
packetLen(0x0280, 12)  // ZC_GANGSI_POINT

// Packet: 0x0281
packetLen(0x0281, 4)  // CZ_GANGSI_RANK

// Packet: 0x0282
packetLen(0x0282, 284)  // ZC_GANGSI_RANK

// Packet: 0x0283
packetLen(0x0283, 6)  // ZC_AID

// Packet: 0x0284
packetLen(0x0284, 14)  // ZC_NOTIFY_EFFECT3

// Packet: 0x0285
packetLen(0x0285, 6)  // ZC_DEATH_QUESTION

// Packet: 0x0286
packetLen(0x0286, 4)  // CZ_DEATH_QUESTION

// Packet: 0x0287
packetLen(0x0287, -1)  // ZC_PC_CASH_POINT_ITEMLIST

// Packet: 0x0288
packetLen(0x0288, 10)  // CZ_PC_BUY_CASH_POINT_ITEM

// Packet: 0x0289
packetLen(0x0289, 12)  // ZC_PC_CASH_POINT_UPDATE

// Packet: 0x028a
packetLen(0x028a, 18)  // ZC_NPC_SHOWEFST_UPDATE

// Packet: 0x028b
packetLen(0x028b, -1)  // HC_CHARNOTBEENSELECTED

// Packet: 0x028c
packetLen(0x028c, 46)  // CH_SELECT_CHAR_GOINGTOBEUSED

// Packet: 0x028d
packetLen(0x028d, 34)  // CH_REQ_IS_VALID_CHARNAME

// Packet: 0x028e
packetLen(0x028e, 4)  // HC_ACK_IS_VALID_CHARNAME

// Packet: 0x028f
packetLen(0x028f, 6)  // CH_REQ_CHANGE_CHARNAME

// Packet: 0x0290
packetLen(0x0290, 4)  // HC_ACK_CHANGE_CHARNAME

// Packet: 0x0291
packetLen(0x0291, 4)  // ZC_MSG

// Packet: 0x0292
packetLen(0x0292, 2)  // CZ_STANDING_RESURRECTION

// Packet: 0x0293
packetLen(0x0293, 70)  // ZC_BOSS_INFO

// Packet: 0x0294
packetLen(0x0294, 10)  // ZC_READ_BOOK

// Packet: 0x0295
packetLen(0x0295, -1)  // ZC_EQUIPMENT_ITEMLIST2

// Packet: 0x0296
packetLen(0x0296, -1)  // ZC_STORE_EQUIPMENT_ITEMLIST2

// Packet: 0x0297
packetLen(0x0297, -1)  // ZC_CART_EQUIPMENT_ITEMLIST2

// Packet: 0x0298
packetLen(0x0298, 8)  // ZC_CASH_TIME_COUNTER

// Packet: 0x0299
packetLen(0x0299, 6)  // ZC_CASH_ITEM_DELETE

// Packet: 0x029a
packetLen(0x029a, 27)  // ZC_ITEM_PICKUP_ACK2

// Packet: 0x029b
packetLen(0x029b, 80)  // ZC_MER_INIT

// Packet: 0x029c
packetLen(0x029c, 66)  // ZC_MER_PROPERTY

// Packet: 0x029d
packetLen(0x029d, -1)  // ZC_MER_SKILLINFO_LIST

// Packet: 0x029e
packetLen(0x029e, 11)  // ZC_MER_SKILLINFO_UPDATE

// Packet: 0x029f
packetLen(0x029f, 3)  // CZ_MER_COMMAND

// Packet: 0x02a2
packetLen(0x02a2, 8)  // ZC_MER_PAR_CHANGE

// Packet: 0x02a5
packetLen(0x02a5, 8)  // CZ_KSY_EVENT

// Packet: 0x02aa
packetLen(0x02aa, 4)  // ZC_REQ_CASH_PASSWORD

// Packet: 0x02ab
packetLen(0x02ab, 36)  // CZ_ACK_CASH_PASSWORD

// Packet: 0x02ac
packetLen(0x02ac, 6)  // ZC_RESULT_CASH_PASSWORD

// Packet: 0x02ad
packetLen(0x02ad, 8)  // AC_REQUEST_SECOND_PASSWORD

// Packet: 0x02b0
packetLen(0x02b0, 85)  // CA_LOGIN_HAN

// Packet: 0x02b1
packetLen(0x02b1, -1)  // ZC_ALL_QUEST_LIST

// Packet: 0x02b2
packetLen(0x02b2, -1)  // ZC_ALL_QUEST_MISSION

// Packet: 0x02b3
packetLen(0x02b3, 107)  // ZC_ADD_QUEST

// Packet: 0x02b4
packetLen(0x02b4, 6)  // ZC_DEL_QUEST

// Packet: 0x02b5
packetLen(0x02b5, -1)  // ZC_UPDATE_MISSION_HUNT

// Packet: 0x02b6
packetLen(0x02b6, 7)  // CZ_ACTIVE_QUEST

// Packet: 0x02b7
packetLen(0x02b7, 7)  // ZC_ACTIVE_QUEST

// Packet: 0x02b8
packetLen(0x02b8, 22)  // ZC_ITEM_PICKUP_PARTY

// Packet: 0x02b9
packetLen(0x02b9, 191)  // ZC_SHORTCUT_KEY_LIST

// Packet: 0x02ba
packetLen(0x02ba, 11)  // CZ_SHORTCUT_KEY_CHANGE

// Packet: 0x02bb
packetLen(0x02bb, 8)  // ZC_EQUIPITEM_DAMAGED

// Packet: 0x02bc
packetLen(0x02bc, 6)  // ZC_NOTIFY_PCBANG_PLAYING_TIME

// Packet: 0x02c1
packetLen(0x02c1, -1)  // ZC_NPC_CHAT

// Packet: 0x02c2
packetLen(0x02c2, -1)  // ZC_FORMATSTRING_MSG

// Packet: 0x02c4
packetLen(0x02c4, 26)  // CZ_PARTY_JOIN_REQ

// Packet: 0x02c5
packetLen(0x02c5, 30)  // ZC_PARTY_JOIN_REQ_ACK

// Packet: 0x02c6
packetLen(0x02c6, 30)  // ZC_PARTY_JOIN_REQ

// Packet: 0x02c7
packetLen(0x02c7, 7)  // CZ_PARTY_JOIN_REQ_ACK

// Packet: 0x02c8
packetLen(0x02c8, 3)  // CZ_PARTY_CONFIG

// Packet: 0x02c9
packetLen(0x02c9, 3)  // ZC_PARTY_CONFIG

// Packet: 0x02ca
packetLen(0x02ca, 3)  // HC_REFUSE_SELECTCHAR

// Packet: 0x02cb
packetLen(0x02cb, 65)  // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO

// Packet: 0x02cc
packetLen(0x02cc, 4)  // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY

// Packet: 0x02cd
packetLen(0x02cd, 71)  // ZC_MEMORIALDUNGEON_INFO

// Packet: 0x02ce
packetLen(0x02ce, 10)  // ZC_MEMORIALDUNGEON_NOTIFY

// Packet: 0x02cf
packetLen(0x02cf, 6)  // CZ_MEMORIALDUNGEON_COMMAND

// Packet: 0x02d0
packetLen(0x02d0, -1)  // ZC_EQUIPMENT_ITEMLIST3

// Packet: 0x02d1
packetLen(0x02d1, -1)  // ZC_STORE_EQUIPMENT_ITEMLIST3

// Packet: 0x02d2
packetLen(0x02d2, -1)  // ZC_CART_EQUIPMENT_ITEMLIST3

// Packet: 0x02d3
packetLen(0x02d3, 4)  // ZC_NOTIFY_BIND_ON_EQUIP

// Packet: 0x02d4
packetLen(0x02d4, 29)  // ZC_ITEM_PICKUP_ACK3

// Packet: 0x02d5
packetLen(0x02d5, 2)  // ZC_ISVR_DISCONNECT

// Packet: 0x02d6
packetLen(0x02d6, 6)  // CZ_EQUIPWIN_MICROSCOPE

// Packet: 0x02d7
packetLen(0x02d7, -1)  // ZC_EQUIPWIN_MICROSCOPE

// Packet: 0x02d8
packetLen(0x02d8, 10)  // CZ_CONFIG

// Packet: 0x02d9
packetLen(0x02d9, 10)  // ZC_CONFIG

// Packet: 0x02da
packetLen(0x02da, 3)  // ZC_CONFIG_NOTIFY

// Packet: 0x02db
packetLen(0x02db, -1)  // CZ_BATTLEFIELD_CHAT

// Packet: 0x02dc
packetLen(0x02dc, -1)  // ZC_BATTLEFIELD_CHAT

// Packet: 0x02dd
packetLen(0x02dd, 32)  // ZC_BATTLEFIELD_NOTIFY_CAMPINFO

// Packet: 0x02de
packetLen(0x02de, 6)  // ZC_BATTLEFIELD_NOTIFY_POINT

// Packet: 0x02df
packetLen(0x02df, 36)  // ZC_BATTLEFIELD_NOTIFY_POSITION

// Packet: 0x02e0
packetLen(0x02e0, 34)  // ZC_BATTLEFIELD_NOTIFY_HP

// Packet: 0x02e1
packetLen(0x02e1, 33)  // ZC_NOTIFY_ACT2

// Packet: 0x02e2
packetLen(0x02e2, 20)  // CZ_USE_ITEM_NEW_JAPEN

// Packet: 0x02e3
packetLen(0x02e3, 22)  // CZ_USE_SKILL_NEW_JAPEN

// Packet: 0x02e4
packetLen(0x02e4, 11)  // CZ_ITEM_PICKUP_NEW_JAPEN

// Packet: 0x02e5
packetLen(0x02e5, 9)  // CZ_REQUEST_MOVE_NEW_JAPEN

// Packet: 0x02e6
packetLen(0x02e6, 6)  // CZ_BOT_CHECK

// Packet: 0x02e7
packetLen(0x02e7, -1)  // ZC_MAPPROPERTY

// Packet: 0x02e8
packetLen(0x02e8, -1)  // ZC_NORMAL_ITEMLIST3

// Packet: 0x02e9
packetLen(0x02e9, -1)  // ZC_CART_NORMAL_ITEMLIST3

// Packet: 0x02ea
packetLen(0x02ea, -1)  // ZC_STORE_NORMAL_ITEMLIST3

// Packet: 0x02eb
packetLen(0x02eb, 13)  // ZC_ACCEPT_ENTER2

// Packet: 0x02ec
packetLen(0x02ec, 67)  // ZC_NOTIFY_MOVEENTRY4

// Packet: 0x02ed
packetLen(0x02ed, 59)  // ZC_NOTIFY_NEWENTRY4

// Packet: 0x02ee
packetLen(0x02ee, 60)  // ZC_NOTIFY_STANDENTRY4

// Packet: 0x02ef
packetLen(0x02ef, 8)  // ZC_NOTIFY_FONT

// Packet: 0x02f0
packetLen(0x02f0, 10)  // ZC_PROGRESS

// Packet: 0x02f1
packetLen(0x02f1, 2)  // CZ_PROGRESS

// Packet: 0x02f2
packetLen(0x02f2, 2)  // ZC_PROGRESS_CANCEL

// Packet: 0x02f3
packetLen(0x02f3, -1)  // CZ_IRMAIL_SEND

// Packet: 0x02f4
packetLen(0x02f4, -1)  // ZC_IRMAIL_SEND_RES

// Packet: 0x02f5
packetLen(0x02f5, -1)  // ZC_IRMAIL_NOTIFY

// Packet: 0x02f6
packetLen(0x02f6, -1)  // CZ_IRMAIL_LIST

// Packet: 0x02f7
packetLen(0x02f7, -1)

// Packet: 0x02f8
packetLen(0x02f8, -1)

// Packet: 0x02f9
packetLen(0x02f9, -1)

// Packet: 0x02fa
packetLen(0x02fa, -1)

// Packet: 0x02fb
packetLen(0x02fb, -1)

// Packet: 0x02fc
packetLen(0x02fc, -1)

// Packet: 0x02fd
packetLen(0x02fd, -1)

// Packet: 0x02fe
packetLen(0x02fe, -1)

// Packet: 0x02ff
packetLen(0x02ff, -1)

// Packet: 0x0300
packetLen(0x0300, -1)

// Packet: 0x0301
packetLen(0x0301, -1)

// Packet: 0x0302
packetLen(0x0302, -1)

// Packet: 0x0303
packetLen(0x0303, -1)

// Packet: 0x0304
packetLen(0x0304, -1)

// Packet: 0x0305
packetLen(0x0305, -1)

// Packet: 0x0306
packetLen(0x0306, -1)

// Packet: 0x0307
packetLen(0x0307, -1)

// Packet: 0x0308
packetLen(0x0308, -1)

// Packet: 0x0309
packetLen(0x0309, -1)

// Packet: 0x030a
packetLen(0x030a, -1)

// Packet: 0x030b
packetLen(0x030b, -1)

// Packet: 0x030c
packetLen(0x030c, -1)

// Packet: 0x030d
packetLen(0x030d, -1)

// Packet: 0x030e
packetLen(0x030e, -1)

// Packet: 0x030f
packetLen(0x030f, -1)

// Packet: 0x0310
packetLen(0x0310, -1)

// Packet: 0x0311
packetLen(0x0311, -1)

// Packet: 0x0312
packetLen(0x0312, -1)

// Packet: 0x0313
packetLen(0x0313, -1)

// Packet: 0x0314
packetLen(0x0314, -1)

// Packet: 0x0315
packetLen(0x0315, -1)

// Packet: 0x0316
packetLen(0x0316, -1)

// Packet: 0x0317
packetLen(0x0317, -1)

// Packet: 0x0318
packetLen(0x0318, -1)

// Packet: 0x0319
packetLen(0x0319, -1)

// Packet: 0x031a
packetLen(0x031a, -1)

// Packet: 0x031b
packetLen(0x031b, -1)

// Packet: 0x031c
packetLen(0x031c, -1)

// Packet: 0x031d
packetLen(0x031d, -1)

// Packet: 0x031e
packetLen(0x031e, -1)

// Packet: 0x031f
packetLen(0x031f, -1)

// Packet: 0x0320
packetLen(0x0320, -1)

// Packet: 0x0321
packetLen(0x0321, -1)

// Packet: 0x0322
packetLen(0x0322, -1)

// Packet: 0x0323
packetLen(0x0323, -1)

// Packet: 0x0324
packetLen(0x0324, -1)

// Packet: 0x0325
packetLen(0x0325, -1)

// Packet: 0x0326
packetLen(0x0326, -1)

// Packet: 0x0327
packetLen(0x0327, -1)

// Packet: 0x0328
packetLen(0x0328, -1)

// Packet: 0x0329
packetLen(0x0329, -1)

// Packet: 0x032a
packetLen(0x032a, -1)

// Packet: 0x032b
packetLen(0x032b, -1)

// Packet: 0x032c
packetLen(0x032c, -1)

// Packet: 0x032d
packetLen(0x032d, -1)

// Packet: 0x032e
packetLen(0x032e, -1)

// Packet: 0x032f
packetLen(0x032f, -1)

// Packet: 0x0330
packetLen(0x0330, -1)

// Packet: 0x0331
packetLen(0x0331, -1)

// Packet: 0x0332
packetLen(0x0332, -1)

// Packet: 0x0333
packetLen(0x0333, -1)

// Packet: 0x0334
packetLen(0x0334, -1)

// Packet: 0x0335
packetLen(0x0335, -1)

// Packet: 0x0336
packetLen(0x0336, -1)

// Packet: 0x0337
packetLen(0x0337, -1)

// Packet: 0x0338
packetLen(0x0338, -1)

// Packet: 0x0339
packetLen(0x0339, -1)

// Packet: 0x033a
packetLen(0x033a, -1)

// Packet: 0x033b
packetLen(0x033b, -1)

// Packet: 0x033c
packetLen(0x033c, -1)

// Packet: 0x033d
packetLen(0x033d, -1)

// Packet: 0x033e
packetLen(0x033e, -1)

// Packet: 0x033f
packetLen(0x033f, -1)

// Packet: 0x0340
packetLen(0x0340, -1)

// Packet: 0x0341
packetLen(0x0341, -1)

// Packet: 0x0342
packetLen(0x0342, -1)

// Packet: 0x0343
packetLen(0x0343, -1)

// Packet: 0x0344
packetLen(0x0344, -1)

// Packet: 0x0345
packetLen(0x0345, -1)

// Packet: 0x0346
packetLen(0x0346, -1)

// Packet: 0x0347
packetLen(0x0347, -1)

// Packet: 0x0348
packetLen(0x0348, -1)

// Packet: 0x0349
packetLen(0x0349, -1)

// Packet: 0x034a
packetLen(0x034a, -1)

// Packet: 0x034b
packetLen(0x034b, -1)

// Packet: 0x034c
packetLen(0x034c, -1)

// Packet: 0x034d
packetLen(0x034d, -1)

// Packet: 0x034e
packetLen(0x034e, -1)

// Packet: 0x034f
packetLen(0x034f, -1)

// Packet: 0x0350
packetLen(0x0350, -1)

// Packet: 0x0351
packetLen(0x0351, -1)

// Packet: 0x0352
packetLen(0x0352, -1)

// Packet: 0x0353
packetLen(0x0353, -1)

// Packet: 0x0354
packetLen(0x0354, -1)

// Packet: 0x0355
packetLen(0x0355, -1)

// Packet: 0x0356
packetLen(0x0356, -1)

// Packet: 0x0357
packetLen(0x0357, -1)

// Packet: 0x0358
packetLen(0x0358, -1)

// Packet: 0x0359
packetLen(0x0359, -1)

// Packet: 0x035a
packetLen(0x035a, -1)

// Packet: 0x035b
packetLen(0x035b, -1)

// Packet: 0x035c
packetLen(0x035c, 2)  // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST

// Packet: 0x035d
packetLen(0x035d, -1)  // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST

// Packet: 0x035e
packetLen(0x035e, 2)  // CZ_CLOSE_WINDOW

// Packet: 0x035f
packetLen(0x035f, -1)  // CZ_REQUEST_MOVE2

// Packet: 0x0360
packetLen(0x0360, -1)  // CZ_REQUEST_TIME2

// Packet: 0x0361
packetLen(0x0361, -1)  // CZ_CHANGE_DIRECTION2

// Packet: 0x0362
packetLen(0x0362, -1)  // CZ_ITEM_PICKUP2

// Packet: 0x0363
packetLen(0x0363, -1)  // CZ_ITEM_THROW2

// Packet: 0x0364
packetLen(0x0364, -1)  // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2

// Packet: 0x0365
packetLen(0x0365, -1)  // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2

// Packet: 0x0366
packetLen(0x0366, -1)  // CZ_USE_SKILL_TOGROUND2

// Packet: 0x0367
packetLen(0x0367, -1)  // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2

// Packet: 0x0368
packetLen(0x0368, -1)  // CZ_REQNAME2

// Packet: 0x0369
packetLen(0x0369, -1)  // CZ_REQNAME_BYGID2

// Packet: 0x036a
packetLen(0x036a, -1)

// Packet: 0x036b
packetLen(0x036b, -1)

// Packet: 0x036c
packetLen(0x036c, -1)

// Packet: 0x036d
packetLen(0x036d, -1)

// Packet: 0x036e
packetLen(0x036e, -1)

// Packet: 0x036f
packetLen(0x036f, -1)

// Packet: 0x0370
packetLen(0x0370, -1)

// Packet: 0x0371
packetLen(0x0371, -1)

// Packet: 0x0372
packetLen(0x0372, -1)

// Packet: 0x0373
packetLen(0x0373, -1)

// Packet: 0x0374
packetLen(0x0374, -1)

// Packet: 0x0375
packetLen(0x0375, -1)

// Packet: 0x0376
packetLen(0x0376, -1)

// Packet: 0x0377
packetLen(0x0377, -1)

// Packet: 0x0378
packetLen(0x0378, -1)

// Packet: 0x0379
packetLen(0x0379, -1)

// Packet: 0x037a
packetLen(0x037a, -1)

// Packet: 0x037b
packetLen(0x037b, -1)

// Packet: 0x037c
packetLen(0x037c, -1)

// Packet: 0x037d
packetLen(0x037d, -1)

// Packet: 0x037e
packetLen(0x037e, -1)

// Packet: 0x037f
packetLen(0x037f, -1)

// Packet: 0x0380
packetLen(0x0380, -1)

// Packet: 0x0381
packetLen(0x0381, -1)

// Packet: 0x0382
packetLen(0x0382, -1)

// Packet: 0x0383
packetLen(0x0383, -1)

// Packet: 0x0384
packetLen(0x0384, -1)

// Packet: 0x0385
packetLen(0x0385, -1)

// Packet: 0x0386
packetLen(0x0386, -1)

// Packet: 0x0387
packetLen(0x0387, -1)

// Packet: 0x0388
packetLen(0x0388, -1)

// Packet: 0x0389
packetLen(0x0389, -1)

// Packet: 0x038a
packetLen(0x038a, -1)

// Packet: 0x038b
packetLen(0x038b, -1)

// Packet: 0x038c
packetLen(0x038c, -1)

// Packet: 0x038d
packetLen(0x038d, -1)

// Packet: 0x038e
packetLen(0x038e, -1)

// Packet: 0x038f
packetLen(0x038f, -1)

// Packet: 0x0390
packetLen(0x0390, -1)

// Packet: 0x0391
packetLen(0x0391, -1)

// Packet: 0x0392
packetLen(0x0392, -1)

// Packet: 0x0393
packetLen(0x0393, -1)

// Packet: 0x0394
packetLen(0x0394, -1)

// Packet: 0x0395
packetLen(0x0395, -1)

// Packet: 0x0396
packetLen(0x0396, -1)

// Packet: 0x0397
packetLen(0x0397, -1)

// Packet: 0x0398
packetLen(0x0398, -1)

// Packet: 0x0399
packetLen(0x0399, -1)

// Packet: 0x039a
packetLen(0x039a, -1)

// Packet: 0x039b
packetLen(0x039b, -1)

// Packet: 0x039c
packetLen(0x039c, -1)

// Packet: 0x039d
packetLen(0x039d, -1)

// Packet: 0x039e
packetLen(0x039e, -1)

// Packet: 0x039f
packetLen(0x039f, -1)

// Packet: 0x03a0
packetLen(0x03a0, -1)

// Packet: 0x03a1
packetLen(0x03a1, -1)

// Packet: 0x03a2
packetLen(0x03a2, -1)

// Packet: 0x03a3
packetLen(0x03a3, -1)

// Packet: 0x03a4
packetLen(0x03a4, -1)

// Packet: 0x03a5
packetLen(0x03a5, -1)

// Packet: 0x03a6
packetLen(0x03a6, -1)

// Packet: 0x03a7
packetLen(0x03a7, -1)

// Packet: 0x03a8
packetLen(0x03a8, -1)

// Packet: 0x03a9
packetLen(0x03a9, -1)

// Packet: 0x03aa
packetLen(0x03aa, -1)

// Packet: 0x03ab
packetLen(0x03ab, -1)

// Packet: 0x03ac
packetLen(0x03ac, -1)

// Packet: 0x03ad
packetLen(0x03ad, -1)

// Packet: 0x03ae
packetLen(0x03ae, -1)

// Packet: 0x03af
packetLen(0x03af, -1)

// Packet: 0x03b0
packetLen(0x03b0, -1)

// Packet: 0x03b1
packetLen(0x03b1, -1)

// Packet: 0x03b2
packetLen(0x03b2, -1)

// Packet: 0x03b3
packetLen(0x03b3, -1)

// Packet: 0x03b4
packetLen(0x03b4, -1)

// Packet: 0x03b5
packetLen(0x03b5, -1)

// Packet: 0x03b6
packetLen(0x03b6, -1)

// Packet: 0x03b7
packetLen(0x03b7, -1)

// Packet: 0x03b8
packetLen(0x03b8, -1)

// Packet: 0x03b9
packetLen(0x03b9, -1)

// Packet: 0x03ba
packetLen(0x03ba, -1)

// Packet: 0x03bb
packetLen(0x03bb, -1)

// Packet: 0x03bc
packetLen(0x03bc, -1)

// Packet: 0x03bd
packetLen(0x03bd, -1)

// Packet: 0x03be
packetLen(0x03be, -1)

// Packet: 0x03bf
packetLen(0x03bf, -1)

// Packet: 0x03c0
packetLen(0x03c0, -1)

// Packet: 0x03c1
packetLen(0x03c1, -1)

// Packet: 0x03c2
packetLen(0x03c2, -1)

// Packet: 0x03c3
packetLen(0x03c3, -1)

// Packet: 0x03c4
packetLen(0x03c4, -1)

// Packet: 0x03c5
packetLen(0x03c5, -1)

// Packet: 0x03c6
packetLen(0x03c6, -1)

// Packet: 0x03c7
packetLen(0x03c7, -1)

// Packet: 0x03c8
packetLen(0x03c8, -1)

// Packet: 0x03c9
packetLen(0x03c9, -1)

// Packet: 0x03ca
packetLen(0x03ca, -1)

// Packet: 0x03cb
packetLen(0x03cb, -1)

// Packet: 0x03cc
packetLen(0x03cc, -1)

// Packet: 0x03cd
packetLen(0x03cd, -1)

// Packet: 0x03ce
packetLen(0x03ce, -1)

// Packet: 0x03cf
packetLen(0x03cf, -1)

// Packet: 0x03d0
packetLen(0x03d0, -1)

// Packet: 0x03d1
packetLen(0x03d1, -1)

// Packet: 0x03d2
packetLen(0x03d2, -1)

// Packet: 0x03d3
packetLen(0x03d3, -1)

// Packet: 0x03d4
packetLen(0x03d4, -1)

// Packet: 0x03d5
packetLen(0x03d5, -1)

// Packet: 0x03d6
packetLen(0x03d6, -1)

// Packet: 0x03d7
packetLen(0x03d7, -1)

// Packet: 0x03d8
packetLen(0x03d8, -1)

// Packet: 0x03d9
packetLen(0x03d9, -1)

// Packet: 0x03da
packetLen(0x03da, -1)

// Packet: 0x03db
packetLen(0x03db, -1)

// Packet: 0x03dc
packetLen(0x03dc, -1)

// Packet: 0x03dd
packetLen(0x03dd, 18)  // AHC_GAME_GUARD

// Packet: 0x03de
packetLen(0x03de, 18)  // CAH_ACK_GAME_GUARD

// Packet: 0x03e2
packetLen(0x03e2, -1)

// Packet: 0x03e3
packetLen(0x03e3, -1)

// Packet: 0x03e4
packetLen(0x03e4, -1)

// Packet: 0x03e5
packetLen(0x03e5, -1)

// Packet: 0x03e6
packetLen(0x03e6, -1)

// Packet: 0x03e7
packetLen(0x03e7, -1)

// Packet: 0x03e8
packetLen(0x03e8, -1)

// Packet: 0x03e9
packetLen(0x03e9, -1)

// Packet: 0x03ea
packetLen(0x03ea, -1)

// Packet: 0x03eb
packetLen(0x03eb, -1)

// Packet: 0x03ec
packetLen(0x03ec, -1)

// Packet: 0x03ed
packetLen(0x03ed, -1)

// Packet: 0x03ee
packetLen(0x03ee, -1)

// Packet: 0x03ef
packetLen(0x03ef, -1)

// Packet: 0x03f0
packetLen(0x03f0, -1)

// Packet: 0x03f1
packetLen(0x03f1, -1)

// Packet: 0x03f2
packetLen(0x03f2, -1)

// Packet: 0x03f3
packetLen(0x03f3, -1)

// Packet: 0x03f4
packetLen(0x03f4, -1)

// Packet: 0x03f5
packetLen(0x03f5, -1)

// Packet: 0x03f6
packetLen(0x03f6, -1)

// Packet: 0x03f7
packetLen(0x03f7, -1)

// Packet: 0x03f8
packetLen(0x03f8, -1)

// Packet: 0x03f9
packetLen(0x03f9, -1)

// Packet: 0x03fa
packetLen(0x03fa, -1)

// Packet: 0x03fb
packetLen(0x03fb, -1)

// Packet: 0x03fc
packetLen(0x03fc, -1)

// Packet: 0x03fd
packetLen(0x03fd, -1)

// Packet: 0x03fe
packetLen(0x03fe, -1)

// Packet: 0x03ff
packetLen(0x03ff, -1)

// Packet: 0x0400
packetLen(0x0400, -1)

// Packet: 0x0401
packetLen(0x0401, -1)

// Packet: 0x0402
packetLen(0x0402, -1)

// Packet: 0x0403
packetLen(0x0403, -1)

// Packet: 0x0404
packetLen(0x0404, -1)

// Packet: 0x0405
packetLen(0x0405, -1)

// Packet: 0x0406
packetLen(0x0406, -1)

// Packet: 0x0407
packetLen(0x0407, -1)

// Packet: 0x0408
packetLen(0x0408, -1)

// Packet: 0x0409
packetLen(0x0409, -1)

// Packet: 0x040a
packetLen(0x040a, -1)

// Packet: 0x040b
packetLen(0x040b, -1)

// Packet: 0x040c
packetLen(0x040c, -1)

// Packet: 0x040d
packetLen(0x040d, -1)

// Packet: 0x040e
packetLen(0x040e, -1)

// Packet: 0x040f
packetLen(0x040f, -1)

// Packet: 0x0410
packetLen(0x0410, -1)

// Packet: 0x0411
packetLen(0x0411, -1)

// Packet: 0x0412
packetLen(0x0412, -1)

// Packet: 0x0413
packetLen(0x0413, -1)

// Packet: 0x0414
packetLen(0x0414, -1)

// Packet: 0x0415
packetLen(0x0415, -1)

// Packet: 0x0416
packetLen(0x0416, -1)

// Packet: 0x0417
packetLen(0x0417, -1)

// Packet: 0x0418
packetLen(0x0418, -1)

// Packet: 0x0419
packetLen(0x0419, -1)

// Packet: 0x041a
packetLen(0x041a, -1)

// Packet: 0x041b
packetLen(0x041b, -1)

// Packet: 0x041c
packetLen(0x041c, -1)

// Packet: 0x041d
packetLen(0x041d, -1)

// Packet: 0x041e
packetLen(0x041e, -1)

// Packet: 0x041f
packetLen(0x041f, -1)

// Packet: 0x0420
packetLen(0x0420, -1)

// Packet: 0x0421
packetLen(0x0421, -1)

// Packet: 0x0422
packetLen(0x0422, -1)

// Packet: 0x0423
packetLen(0x0423, -1)

// Packet: 0x0424
packetLen(0x0424, -1)

// Packet: 0x0425
packetLen(0x0425, -1)

// Packet: 0x0426
packetLen(0x0426, -1)

// Packet: 0x0427
packetLen(0x0427, -1)

// Packet: 0x0428
packetLen(0x0428, -1)

// Packet: 0x0429
packetLen(0x0429, -1)

// Packet: 0x042a
packetLen(0x042a, -1)

// Packet: 0x042b
packetLen(0x042b, -1)

// Packet: 0x042c
packetLen(0x042c, -1)

// Packet: 0x042d
packetLen(0x042d, -1)

// Packet: 0x042e
packetLen(0x042e, -1)

// Packet: 0x042f
packetLen(0x042f, -1)

// Packet: 0x0430
packetLen(0x0430, -1)

// Packet: 0x0431
packetLen(0x0431, -1)

// Packet: 0x0432
packetLen(0x0432, -1)

// Packet: 0x0433
packetLen(0x0433, -1)

// Packet: 0x0434
packetLen(0x0434, -1)

// Packet: 0x0435
packetLen(0x0435, -1)

// Packet: 0x0436
#if PACKETVER >= 20080910
packetLen(0x0436, 19)  // CZ_ENTER2
#endif

// Packet: 0x0437
#if PACKETVER >= 20080910
packetLen(0x0437, 7)  // CZ_REQUEST_ACT2
#endif

// Packet: 0x0438
#if PACKETVER >= 20080910
packetLen(0x0438, 10)  // CZ_USE_SKILL2
#endif

// Packet: 0x0439
#if PACKETVER >= 20080910
packetLen(0x0439, 8)  // CZ_USE_ITEM2
#endif

// Packet: 0x043d
#if PACKETVER >= 20081111
packetLen(0x043d, 8)  // ZC_SKILL_POSTDELAY
#endif

// Packet: 0x043e
#if PACKETVER >= 20081111
packetLen(0x043e, -1)  // ZC_SKILL_POSTDELAY_LIST
#endif

// Packet: 0x043f
#if PACKETVER >= 20081111
packetLen(0x043f, 8)  // ZC_MSG_STATE_CHANGE2
#endif

// Packet: 0x0440
#if PACKETVER >= 20081126
packetLen(0x0440, 10)  // ZC_MILLENNIUMSHIELD
#endif

// Packet: 0x0441
#if PACKETVER >= 20081126
packetLen(0x0441, 4)  // ZC_SKILLINFO_DELETE
#endif

// Packet: 0x0442
#if PACKETVER >= 20081217
packetLen(0x0442, 8)  // ZC_SKILL_SELECT_REQUEST
#endif

// Packet: 0x0443
#if PACKETVER >= 20081217
packetLen(0x0443, 8)  // CZ_SKILL_SELECT_RESPONSE
#endif


#endif /* COMMON_PACKETS2008_LEN_RE_H */