This repository has been archived by the owner on Jan 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutput.txt
10908 lines (10585 loc) · 734 KB
/
output.txt
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
/*
* The ManaPlus Client
* Copyright (C) 2004-2009 The Mana World Development Team
* Copyright (C) 2009-2010 The Mana Developers
* Copyright (C) 2011-2018 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_SHUFFLE_MAIN_VOID
if (packets_main)
{
// 20120710
if (packetVersion == 20120710)
{
packet(CMSG_SOLVE_CHAR_NAME, 0x0202, 6, clif->pSolveCharName);
packet(CMSG_SKILL_USE_POSITION, 0x02c4, 10, clif->pUseSkillToPos);
// packet(UNKNOWN, 0x0362, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0365, 26, clif->pFriendsListAdd);
packet(CMSG_MOVE_TO_STORAGE, 0x0367, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0436, 7, clif->pActionRequest);
packet(CMSG_MAP_PING, 0x07e4, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0811, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x085b, 10, clif->pUseSkillToId);
packet(CMSG_NAME_REQUEST, 0x0877, 6, clif->pGetCharNameRequest);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0878, -1, clif->pSearchStoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x087f, 5, clif->pWalkToXY);
packet(CMSG_PLAYER_CHANGE_DIR, 0x088d, 5, clif->pChangeDir);
packet(CMSG_STORAGE_PASSWORD, 0x0893, 36, clif->pStoragePassword);
packet(CMSG_BUYINGSTORE_CREATE, 0x0897, -1, clif->pReqOpenBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0899, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x08a3, 6, clif->pDropItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x08a6, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_SERVER_CONNECT, 0x08a8, 19, clif->pWantToConnection);
packet(CMSG_MOVE_FROM_STORAGE, 0x08aa, 8, clif->pMoveFromKafra);
packet(CMSG_SEARCHSTORE_CLICK, 0x092d, 12, clif->pSearchStoreInfoListItemClick);
// packet(UNKNOWN, 0x0936, 8, clif->pDull);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0948, 2, clif->pReqCloseBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x094b, 5, clif->pHomMenu);
packet(CMSG_PARTY_INVITE2, 0x094e, 26, clif->pPartyInvite2);
// packet(UNKNOWN, 0x0953, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_SELL, 0x0956, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0958, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0960, 90, clif->pUseSkillToPosMoreInfo);
}
// 20120712
if (packetVersion == 20120712)
{
packet(CMSG_SOLVE_CHAR_NAME, 0x0202, 6, clif->pSolveCharName);
packet(CMSG_SKILL_USE_POSITION, 0x02c4, 10, clif->pUseSkillToPos);
// packet(UNKNOWN, 0x0362, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0365, 26, clif->pFriendsListAdd);
packet(CMSG_MOVE_TO_STORAGE, 0x0367, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0436, 7, clif->pActionRequest);
packet(CMSG_MAP_PING, 0x07e4, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0811, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x085b, 10, clif->pUseSkillToId);
packet(CMSG_NAME_REQUEST, 0x0877, 6, clif->pGetCharNameRequest);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0878, -1, clif->pSearchStoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x087f, 5, clif->pWalkToXY);
packet(CMSG_PLAYER_CHANGE_DIR, 0x088d, 5, clif->pChangeDir);
packet(CMSG_STORAGE_PASSWORD, 0x0893, 36, clif->pStoragePassword);
packet(CMSG_BUYINGSTORE_CREATE, 0x0897, -1, clif->pReqOpenBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0899, 6, clif->pTakeItem);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x08a3, 6, clif->pDropItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x08a6, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_SERVER_CONNECT, 0x08a8, 19, clif->pWantToConnection);
packet(CMSG_MOVE_FROM_STORAGE, 0x08aa, 8, clif->pMoveFromKafra);
packet(CMSG_SEARCHSTORE_CLICK, 0x092d, 12, clif->pSearchStoreInfoListItemClick);
// packet(UNKNOWN, 0x0936, 8, clif->pDull);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0948, 2, clif->pReqCloseBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x094b, 5, clif->pHomMenu);
packet(CMSG_PARTY_INVITE2, 0x094e, 26, clif->pPartyInvite2);
// packet(UNKNOWN, 0x0953, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_SELL, 0x0956, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0958, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0960, 90, clif->pUseSkillToPosMoreInfo);
}
// 20120716
if (packetVersion == 20120716)
{
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(UNKNOWN, 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, 0x089f, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20120724
if (packetVersion == 20120724)
{
// packet(UNKNOWN, 0x035f, 8, clif->pDull);
packet(CMSG_BUYINGSTORE_OPEN, 0x0364, 6, clif->pReqClickBuyingStore);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0815, -1, clif->pItemListWindowSelected);
packet(CMSG_PARTY_INVITE2, 0x0835, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0865, 2, clif->pReqCloseBuyingStore);
// packet(UNKNOWN, 0x0866, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_SELL, 0x0872, -1, clif->pReqTradeBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0877, -1, clif->pReqOpenBuyingStore);
// packet(UNKNOWN, 0x087c, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0887, 5, clif->pChangeDir);
packet(CMSG_HOMUNCULUS_MENU, 0x0888, 5, clif->pHomMenu);
packet(CMSG_SKILL_USE_BEING, 0x088e, 10, clif->pUseSkillToId);
packet(CMSG_NAME_REQUEST, 0x08a1, 6, clif->pGetCharNameRequest);
packet(CMSG_MAP_SERVER_CONNECT, 0x08a9, 19, clif->pWantToConnection);
packet(CMSG_ITEM_PICKUP, 0x08ab, 6, clif->pTakeItem);
packet(CMSG_PLAYER_CHANGE_DEST, 0x091c, 5, clif->pWalkToXY);
packet(CMSG_MAP_PING, 0x091f, 6, clif->pTickSend);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0928, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_CLICK, 0x0929, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x092b, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0935, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SKILL_USE_POSITION, 0x0938, 10, clif->pUseSkillToPos);
packet(CMSG_MOVE_TO_STORAGE, 0x093c, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0945, 7, clif->pActionRequest);
packet(CMSG_STORAGE_PASSWORD, 0x0957, 36, clif->pStoragePassword);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0959, 26, clif->pFriendsListAdd);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0963, 6, clif->pDropItem);
packet(CMSG_SOLVE_CHAR_NAME, 0x0965, 6, clif->pSolveCharName);
packet(CMSG_MOVE_FROM_STORAGE, 0x0966, 8, clif->pMoveFromKafra);
}
// 20120801
if (packetVersion == 20120801)
{
packet(CMSG_BUYINGSTORE_CREATE, 0x0360, -1, clif->pReqOpenBuyingStore);
// packet(UNKNOWN, 0x0438, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SOLVE_CHAR_NAME, 0x085d, 6, clif->pSolveCharName);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x086a, -1, clif->pItemListWindowSelected);
packet(CMSG_NAME_REQUEST, 0x086b, 6, clif->pGetCharNameRequest);
packet(CMSG_BUYINGSTORE_CLOSE, 0x086f, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x0873, 10, clif->pUseSkillToId);
packet(CMSG_ITEM_PICKUP, 0x0875, 6, clif->pTakeItem);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x087b, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_HOMUNCULUS_MENU, 0x088b, 5, clif->pHomMenu);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0890, 7, clif->pActionRequest);
packet(CMSG_MAP_SERVER_CONNECT, 0x0895, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x089c, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x089d, 6, clif->pDropItem);
packet(CMSG_PLAYER_CHANGE_DEST, 0x089f, 5, clif->pWalkToXY);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x08a2, 26, clif->pFriendsListAdd);
packet(CMSG_PLAYER_CHANGE_DIR, 0x08aa, 5, clif->pChangeDir);
packet(CMSG_MOVE_FROM_STORAGE, 0x08ab, 8, clif->pMoveFromKafra);
packet(CMSG_STORAGE_PASSWORD, 0x0917, 36, clif->pStoragePassword);
packet(CMSG_BUYINGSTORE_SELL, 0x091d, -1, clif->pReqTradeBuyingStore);
// packet(UNKNOWN, 0x092a, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_OPEN, 0x092e, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_PING, 0x0930, 6, clif->pTickSend);
packet(CMSG_SKILL_USE_POSITION, 0x0934, 10, clif->pUseSkillToPos);
packet(CMSG_PARTY_INVITE2, 0x093c, 26, clif->pPartyInvite2);
packet(CMSG_MOVE_TO_STORAGE, 0x0941, 8, clif->pMoveToKafra);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0946, -1, clif->pSearchStoreInfo);
// packet(UNKNOWN, 0x094e, 8, clif->pDull);
packet(CMSG_SEARCHSTORE_CLICK, 0x0964, 12, clif->pSearchStoreInfoListItemClick);
}
// 20120808
if (packetVersion == 20120808)
{
packet(CMSG_SEARCHSTORE_CLICK, 0x0202, 12, clif->pSearchStoreInfoListItemClick);
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(UNKNOWN, 0x0365, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MAP_SERVER_CONNECT, 0x0366, 19, clif->pWantToConnection);
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_MORE, 0x0438, 90, clif->pUseSkillToPosMoreInfo);
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_FRIENDS_ADD_PLAYER, 0x0838, 26, clif->pFriendsListAdd);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_STORAGE_PASSWORD, 0x085f, 36, clif->pStoragePassword);
packet(CMSG_PLAYER_CHANGE_DIR, 0x088f, 5, clif->pChangeDir);
packet(CMSG_HOMUNCULUS_MENU, 0x093d, 5, clif->pHomMenu);
packet(CMSG_SKILL_USE_POSITION, 0x0940, 10, clif->pUseSkillToPos);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20120814
if (packetVersion == 20120814)
{
packet(CMSG_HOMUNCULUS_MENU, 0x0281, 5, clif->pHomMenu);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0361, -1, clif->pItemListWindowSelected);
packet(CMSG_SOLVE_CHAR_NAME, 0x0365, 6, clif->pSolveCharName);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0366, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_MAP_PING, 0x0438, 6, clif->pTickSend);
packet(CMSG_SEARCHSTORE_CLICK, 0x07ec, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0815, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0838, 2, clif->pReqCloseBuyingStore);
packet(CMSG_MOVE_TO_STORAGE, 0x085e, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0861, 6, clif->pReqClickBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0862, 6, clif->pTakeItem);
packet(CMSG_MOVE_FROM_STORAGE, 0x0865, 8, clif->pMoveFromKafra);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0868, 7, clif->pActionRequest);
packet(CMSG_STORAGE_PASSWORD, 0x086f, 36, clif->pStoragePassword);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0875, 5, clif->pWalkToXY);
packet(CMSG_PARTY_INVITE2, 0x087f, 26, clif->pPartyInvite2);
// packet(UNKNOWN, 0x0882, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x088b, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_SEARCH, 0x088d, -1, clif->pSearchStoreInfo);
packet(CMSG_BUYINGSTORE_CREATE, 0x0895, -1, clif->pReqOpenBuyingStore);
// packet(UNKNOWN, 0x08a8, 4, clif->pDull);
packet(CMSG_MAP_SERVER_CONNECT, 0x091f, 19, clif->pWantToConnection);
packet(CMSG_NAME_REQUEST, 0x0920, 6, clif->pGetCharNameRequest);
// packet(UNKNOWN, 0x0929, 8, clif->pDull);
packet(CMSG_SKILL_USE_POSITION, 0x0932, 10, clif->pUseSkillToPos);
packet(CMSG_SKILL_USE_BEING, 0x0934, 10, clif->pUseSkillToId);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0941, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_BUYINGSTORE_SELL, 0x0967, -1, clif->pReqTradeBuyingStore);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0969, 5, clif->pChangeDir);
}
// 20120822
if (packetVersion == 20120822)
{
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0365, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_PICKUP, 0x0437, 6, clif->pTakeItem);
packet(CMSG_PLAYER_CHANGE_DEST, 0x085a, 5, clif->pWalkToXY);
packet(CMSG_BUYINGSTORE_SELL, 0x085c, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x085d, 10, clif->pUseSkillToId);
packet(CMSG_SOLVE_CHAR_NAME, 0x086b, 6, clif->pSolveCharName);
packet(CMSG_PLAYER_CHANGE_DIR, 0x086e, 5, clif->pChangeDir);
packet(CMSG_BUYINGSTORE_CREATE, 0x0872, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x087c, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_MAP_PING, 0x087d, 6, clif->pTickSend);
// packet(UNKNOWN, 0x0885, 4, clif->pDull);
packet(CMSG_MOVE_TO_STORAGE, 0x088a, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0899, 26, clif->pPartyInvite2);
packet(CMSG_MAP_SERVER_CONNECT, 0x089f, 19, clif->pWantToConnection);
// packet(UNKNOWN, 0x08a5, 8, clif->pDull);
packet(CMSG_PLAYER_CHANGE_ACT, 0x08ab, 7, clif->pActionRequest);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0917, -1, clif->pItemListWindowSelected);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0924, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_NAME_REQUEST, 0x0927, 6, clif->pGetCharNameRequest);
packet(CMSG_HOMUNCULUS_MENU, 0x0935, 5, clif->pHomMenu);
packet(CMSG_SKILL_USE_POSITION, 0x0937, 10, clif->pUseSkillToPos);
packet(CMSG_SEARCHSTORE_CLICK, 0x0940, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_FROM_STORAGE, 0x0943, 8, clif->pMoveFromKafra);
packet(CMSG_STORAGE_PASSWORD, 0x094d, 36, clif->pStoragePassword);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x094e, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0953, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0955, -1, clif->pSearchStoreInfo);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0958, 2, clif->pReqCloseBuyingStore);
packet(CMSG_BUYINGSTORE_OPEN, 0x095b, 6, clif->pReqClickBuyingStore);
}
// 20120830
if (packetVersion == 20120830)
{
packet(CMSG_SEARCHSTORE_CLICK, 0x022d, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0364, 2, clif->pSearchStoreInfoNextPage);
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_PARTY_INVITE2, 0x0436, 26, clif->pPartyInvite2);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0437, 5, clif->pWalkToXY);
packet(CMSG_STORAGE_PASSWORD, 0x0802, 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_MOVE_TO_STORAGE, 0x0835, 8, clif->pMoveToKafra);
packet(CMSG_HOMUNCULUS_MENU, 0x0838, 5, clif->pHomMenu);
packet(CMSG_SKILL_USE_BEING, 0x083c, 10, clif->pUseSkillToId);
packet(CMSG_MAP_SERVER_CONNECT, 0x0861, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0872, 26, clif->pFriendsListAdd);
packet(CMSG_SKILL_USE_POSITION, 0x0887, 10, clif->pUseSkillToPos);
// packet(UNKNOWN, 0x0888, 8, clif->pDull);
// packet(UNKNOWN, 0x0890, 4, clif->pDull);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x091d, -1, clif->pItemListWindowSelected);
packet(CMSG_MOVE_FROM_STORAGE, 0x0926, 8, clif->pMoveFromKafra);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0934, 5, clif->pChangeDir);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0945, 6, clif->pDropItem);
// packet(UNKNOWN, 0x094b, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_ITEM_PICKUP, 0x0964, 6, clif->pTakeItem);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20120905
if (packetVersion == 20120905)
{
packet(CMSG_MOVE_TO_STORAGE, 0x022d, 8, clif->pMoveToKafra);
// packet(UNKNOWN, 0x0365, 8, clif->pDull);
packet(CMSG_STORAGE_PASSWORD, 0x0817, 36, clif->pStoragePassword);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x085a, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SKILL_USE_POSITION, 0x085d, 10, clif->pUseSkillToPos);
packet(CMSG_SOLVE_CHAR_NAME, 0x086f, 6, clif->pSolveCharName);
packet(CMSG_HOMUNCULUS_MENU, 0x0876, 5, clif->pHomMenu);
packet(CMSG_BUYINGSTORE_CREATE, 0x0877, -1, clif->pReqOpenBuyingStore);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0878, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_BEING, 0x087a, 10, clif->pUseSkillToId);
packet(CMSG_MAP_PING, 0x087b, 6, clif->pTickSend);
packet(CMSG_MOVE_FROM_STORAGE, 0x087e, 8, clif->pMoveFromKafra);
packet(CMSG_MAP_SERVER_CONNECT, 0x0887, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0895, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0897, 6, clif->pTakeItem);
// packet(UNKNOWN, 0x08a0, 4, clif->pDull);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x08a6, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0917, -1, clif->pSearchStoreInfo);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0918, -1, clif->pItemListWindowSelected);
packet(CMSG_NAME_REQUEST, 0x091a, 6, clif->pGetCharNameRequest);
// packet(UNKNOWN, 0x0927, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SEARCHSTORE_CLICK, 0x093c, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_PARTY_INVITE2, 0x0944, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_SELL, 0x0945, -1, clif->pReqTradeBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0950, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0954, 2, clif->pReqCloseBuyingStore);
packet(CMSG_BUYINGSTORE_OPEN, 0x0959, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0960, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0967, 7, clif->pActionRequest);
}
// 20120911
if (packetVersion == 20120911)
{
packet(CMSG_MAP_PING, 0x0438, 6, clif->pTickSend);
packet(CMSG_MOVE_FROM_STORAGE, 0x0819, 8, clif->pMoveFromKafra);
packet(CMSG_ITEM_PICKUP, 0x0868, 6, clif->pTakeItem);
packet(CMSG_PLAYER_CHANGE_DEST, 0x086f, 5, clif->pWalkToXY);
packet(CMSG_HOMUNCULUS_MENU, 0x0876, 5, clif->pHomMenu);
packet(CMSG_PARTY_INVITE2, 0x0877, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_OPEN, 0x0879, 6, clif->pReqClickBuyingStore);
// packet(UNKNOWN, 0x087a, 8, clif->pDull);
packet(CMSG_NAME_REQUEST, 0x088a, 6, clif->pGetCharNameRequest);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x088f, 26, clif->pFriendsListAdd);
// packet(UNKNOWN, 0x08a4, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_BUYINGSTORE_CREATE, 0x08a5, -1, clif->pReqOpenBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x08a6, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x08a7, 6, clif->pDropItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x08ad, -1, clif->pItemListWindowSelected);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0930, -1, clif->pSearchStoreInfo);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0935, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_CLICK, 0x093e, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_POSITION, 0x0948, 10, clif->pUseSkillToPos);
// packet(UNKNOWN, 0x0949, 4, clif->pDull);
packet(CMSG_BUYINGSTORE_SELL, 0x094b, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0952, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SKILL_USE_BEING, 0x0958, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0959, 7, clif->pActionRequest);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0962, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_SOLVE_CHAR_NAME, 0x0963, 6, clif->pSolveCharName);
packet(CMSG_MOVE_TO_STORAGE, 0x0966, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0968, 5, clif->pChangeDir);
packet(CMSG_STORAGE_PASSWORD, 0x096a, 36, clif->pStoragePassword);
}
// 20120919
if (packetVersion == 20120919)
{
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(UNKNOWN, 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, 0x0956, 36, clif->pStoragePassword);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20120925
if (packetVersion == 20120925)
{
// packet(UNKNOWN, 0x07e4, 4, clif->pDull);
packet(CMSG_SEARCHSTORE_CLICK, 0x0815, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MAP_SERVER_CONNECT, 0x0819, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0835, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_NAME_REQUEST, 0x0838, 6, clif->pGetCharNameRequest);
packet(CMSG_HOMUNCULUS_MENU, 0x085d, 5, clif->pHomMenu);
packet(CMSG_MOVE_TO_STORAGE, 0x0869, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_CREATE, 0x0873, -1, clif->pReqOpenBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x087a, 6, clif->pDropItem);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x087e, 26, clif->pFriendsListAdd);
packet(CMSG_BUYINGSTORE_SELL, 0x0887, -1, clif->pReqTradeBuyingStore);
packet(CMSG_PARTY_INVITE2, 0x088a, 26, clif->pPartyInvite2);
packet(CMSG_SKILL_USE_BEING, 0x088d, 10, clif->pUseSkillToId);
packet(CMSG_SEARCHSTORE_SEARCH, 0x088f, -1, clif->pSearchStoreInfo);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x089d, -1, clif->pItemListWindowSelected);
packet(CMSG_PLAYER_CHANGE_ACT, 0x08a4, 7, clif->pActionRequest);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x091c, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_BUYINGSTORE_CLOSE, 0x091e, 2, clif->pReqCloseBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0923, 6, clif->pTakeItem);
packet(CMSG_BUYINGSTORE_OPEN, 0x0927, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_PING, 0x0932, 6, clif->pTickSend);
packet(CMSG_STORAGE_PASSWORD, 0x0942, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x0948, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0950, 5, clif->pWalkToXY);
// packet(UNKNOWN, 0x0956, 8, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0957, 5, clif->pChangeDir);
packet(CMSG_SOLVE_CHAR_NAME, 0x0958, 6, clif->pSolveCharName);
packet(CMSG_SKILL_USE_POSITION, 0x095e, 10, clif->pUseSkillToPos);
packet(CMSG_MOVE_FROM_STORAGE, 0x0963, 8, clif->pMoveFromKafra);
}
// 20120926
if (packetVersion == 20120926)
{
// packet(UNKNOWN, 0x07e4, 4, clif->pDull);
packet(CMSG_SEARCHSTORE_CLICK, 0x0815, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MAP_SERVER_CONNECT, 0x0819, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0835, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_NAME_REQUEST, 0x0838, 6, clif->pGetCharNameRequest);
packet(CMSG_HOMUNCULUS_MENU, 0x085d, 5, clif->pHomMenu);
packet(CMSG_MOVE_TO_STORAGE, 0x0869, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_CREATE, 0x0873, -1, clif->pReqOpenBuyingStore);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x087a, 6, clif->pDropItem);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x087e, 26, clif->pFriendsListAdd);
packet(CMSG_BUYINGSTORE_SELL, 0x0887, -1, clif->pReqTradeBuyingStore);
packet(CMSG_PARTY_INVITE2, 0x088a, 26, clif->pPartyInvite2);
packet(CMSG_SKILL_USE_BEING, 0x088d, 10, clif->pUseSkillToId);
packet(CMSG_SEARCHSTORE_SEARCH, 0x088f, -1, clif->pSearchStoreInfo);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x089d, -1, clif->pItemListWindowSelected);
packet(CMSG_PLAYER_CHANGE_ACT, 0x08a4, 7, clif->pActionRequest);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x091c, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_BUYINGSTORE_CLOSE, 0x091e, 2, clif->pReqCloseBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0923, 6, clif->pTakeItem);
packet(CMSG_BUYINGSTORE_OPEN, 0x0927, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_PING, 0x0932, 6, clif->pTickSend);
packet(CMSG_STORAGE_PASSWORD, 0x0942, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x0948, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0950, 5, clif->pWalkToXY);
// packet(UNKNOWN, 0x0956, 8, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0957, 5, clif->pChangeDir);
packet(CMSG_SOLVE_CHAR_NAME, 0x0958, 6, clif->pSolveCharName);
packet(CMSG_SKILL_USE_POSITION, 0x095e, 10, clif->pUseSkillToPos);
packet(CMSG_MOVE_FROM_STORAGE, 0x0963, 8, clif->pMoveFromKafra);
}
// 20121010
if (packetVersion == 20121010)
{
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0202, -1, clif->pItemListWindowSelected);
packet(CMSG_NAME_REQUEST, 0x0817, 6, clif->pGetCharNameRequest);
packet(CMSG_BUYINGSTORE_CLOSE, 0x085a, 2, clif->pReqCloseBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0869, 6, clif->pTakeItem);
// packet(UNKNOWN, 0x086c, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0874, 8, clif->pMoveFromKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x087d, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0883, 5, clif->pWalkToXY);
// packet(UNKNOWN, 0x0888, 4, clif->pDull);
packet(CMSG_PARTY_INVITE2, 0x088f, 26, clif->pPartyInvite2);
packet(CMSG_SKILL_USE_BEING, 0x0891, 10, clif->pUseSkillToId);
packet(CMSG_BUYINGSTORE_CREATE, 0x0896, -1, clif->pReqOpenBuyingStore);
packet(CMSG_STORAGE_PASSWORD, 0x0898, 36, clif->pStoragePassword);
packet(CMSG_PLAYER_CHANGE_ACT, 0x08a1, 7, clif->pActionRequest);
packet(CMSG_SOLVE_CHAR_NAME, 0x08a6, 6, clif->pSolveCharName);
packet(CMSG_SEARCHSTORE_SEARCH, 0x08a9, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_CLICK, 0x0925, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MAP_PING, 0x0934, 6, clif->pTickSend);
packet(CMSG_MOVE_TO_STORAGE, 0x093c, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0942, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0946, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION, 0x0947, 10, clif->pUseSkillToPos);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x094c, 6, clif->pDropItem);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0957, 5, clif->pChangeDir);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0958, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_BUYINGSTORE_SELL, 0x0959, -1, clif->pReqTradeBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x095c, 5, clif->pHomMenu);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0964, 26, clif->pFriendsListAdd);
// packet(UNKNOWN, 0x0969, 18, clif->pPartyBookingRegisterReq);
}
// 20121011
if (packetVersion == 20121011)
{
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0202, -1, clif->pItemListWindowSelected);
packet(CMSG_NAME_REQUEST, 0x0817, 6, clif->pGetCharNameRequest);
packet(CMSG_BUYINGSTORE_CLOSE, 0x085a, 2, clif->pReqCloseBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0869, 6, clif->pTakeItem);
// packet(UNKNOWN, 0x086c, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x0874, 8, clif->pMoveFromKafra);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x087d, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0883, 5, clif->pWalkToXY);
// packet(UNKNOWN, 0x0888, 4, clif->pDull);
packet(CMSG_PARTY_INVITE2, 0x088f, 26, clif->pPartyInvite2);
packet(CMSG_SKILL_USE_BEING, 0x0891, 10, clif->pUseSkillToId);
packet(CMSG_BUYINGSTORE_CREATE, 0x0896, -1, clif->pReqOpenBuyingStore);
packet(CMSG_STORAGE_PASSWORD, 0x0898, 36, clif->pStoragePassword);
packet(CMSG_PLAYER_CHANGE_ACT, 0x08a1, 7, clif->pActionRequest);
packet(CMSG_SOLVE_CHAR_NAME, 0x08a6, 6, clif->pSolveCharName);
packet(CMSG_SEARCHSTORE_SEARCH, 0x08a9, -1, clif->pSearchStoreInfo);
packet(CMSG_SEARCHSTORE_CLICK, 0x0925, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MAP_PING, 0x0934, 6, clif->pTickSend);
packet(CMSG_MOVE_TO_STORAGE, 0x093c, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0942, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x0946, 19, clif->pWantToConnection);
packet(CMSG_SKILL_USE_POSITION, 0x0947, 10, clif->pUseSkillToPos);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x094c, 6, clif->pDropItem);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0957, 5, clif->pChangeDir);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0958, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_BUYINGSTORE_SELL, 0x0959, -1, clif->pReqTradeBuyingStore);
packet(CMSG_HOMUNCULUS_MENU, 0x095c, 5, clif->pHomMenu);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0964, 26, clif->pFriendsListAdd);
// packet(UNKNOWN, 0x0969, 18, clif->pPartyBookingRegisterReq);
}
// 20121017
if (packetVersion == 20121017)
{
packet(CMSG_PARTY_INVITE2, 0x023b, 26, clif->pPartyInvite2);
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x0365, -1, clif->pReqOpenBuyingStore);
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_MOVE_FROM_STORAGE, 0x0815, 8, clif->pMoveFromKafra);
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, 0x0868, 8, clif->pDull);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x086b, 6, clif->pDropItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0887, -1, clif->pItemListWindowSelected);
// packet(UNKNOWN, 0x0888, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MOVE_TO_STORAGE, 0x0897, 8, clif->pMoveToKafra);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x089a, 26, clif->pFriendsListAdd);
packet(CMSG_PLAYER_CHANGE_DIR, 0x08a6, 5, clif->pChangeDir);
packet(CMSG_STORAGE_PASSWORD, 0x0918, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x0920, 4, clif->pDull);
packet(CMSG_HOMUNCULUS_MENU, 0x0960, 5, clif->pHomMenu);
packet(CMSG_ITEM_PICKUP, 0x0962, 6, clif->pTakeItem);
packet(CMSG_MAP_SERVER_CONNECT, 0x0965, 19, clif->pWantToConnection);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20121024
if (packetVersion == 20121024)
{
packet(CMSG_PLAYER_CHANGE_DEST, 0x0436, 5, clif->pWalkToXY);
packet(CMSG_SKILL_USE_BEING, 0x0437, 10, clif->pUseSkillToId);
packet(CMSG_SEARCHSTORE_CLICK, 0x0438, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0817, 7, clif->pActionRequest);
// packet(UNKNOWN, 0x0838, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MOVE_FROM_STORAGE, 0x085a, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_SELL, 0x0868, -1, clif->pReqTradeBuyingStore);
packet(CMSG_NAME_REQUEST, 0x0872, 6, clif->pGetCharNameRequest);
// packet(UNKNOWN, 0x0875, 4, clif->pDull);
packet(CMSG_MOVE_TO_STORAGE, 0x087a, 8, clif->pMoveToKafra);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x087b, -1, clif->pItemListWindowSelected);
packet(CMSG_SKILL_USE_POSITION, 0x087e, 10, clif->pUseSkillToPos);
packet(CMSG_STORAGE_PASSWORD, 0x0882, 36, clif->pStoragePassword);
packet(CMSG_HOMUNCULUS_MENU, 0x0888, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0889, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_OPEN, 0x088a, 6, clif->pReqClickBuyingStore);
packet(CMSG_PARTY_INVITE2, 0x089c, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_CREATE, 0x08a9, -1, clif->pReqOpenBuyingStore);
packet(CMSG_PLAYER_CHANGE_DIR, 0x08aa, 5, clif->pChangeDir);
packet(CMSG_ITEM_PICKUP, 0x0931, 6, clif->pTakeItem);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0938, 2, clif->pReqCloseBuyingStore);
// packet(UNKNOWN, 0x093a, 8, clif->pDull);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0942, -1, clif->pSearchStoreInfo);
packet(CMSG_MAP_PING, 0x0947, 6, clif->pTickSend);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0954, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0955, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x095d, 26, clif->pFriendsListAdd);
packet(CMSG_SOLVE_CHAR_NAME, 0x095e, 6, clif->pSolveCharName);
packet(CMSG_MAP_SERVER_CONNECT, 0x0965, 19, clif->pWantToConnection);
}
// 20121031
if (packetVersion == 20121031)
{
packet(CMSG_MAP_PING, 0x022d, 6, clif->pTickSend);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0281, -1, clif->pItemListWindowSelected);
packet(CMSG_HOMUNCULUS_MENU, 0x035f, 5, clif->pHomMenu);
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(UNKNOWN, 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_FRIENDS_ADD_PLAYER, 0x085a, 26, clif->pFriendsListAdd);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0871, 5, clif->pChangeDir);
packet(CMSG_MAP_SERVER_CONNECT, 0x0877, 19, clif->pWantToConnection);
packet(CMSG_STORAGE_PASSWORD, 0x0898, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x092b, 4, clif->pDull);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20121107
if (packetVersion == 20121107)
{
packet(CMSG_ITEM_PICKUP, 0x0360, 6, clif->pTakeItem);
packet(CMSG_STORAGE_PASSWORD, 0x0361, 36, clif->pStoragePassword);
packet(CMSG_BUYINGSTORE_SELL, 0x0365, -1, clif->pReqTradeBuyingStore);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x085c, -1, clif->pItemListWindowSelected);
packet(CMSG_MAP_PING, 0x0861, 6, clif->pTickSend);
packet(CMSG_MAP_SERVER_CONNECT, 0x0865, 19, clif->pWantToConnection);
packet(CMSG_HOMUNCULUS_MENU, 0x086c, 5, clif->pHomMenu);
packet(CMSG_SOLVE_CHAR_NAME, 0x086d, 6, clif->pSolveCharName);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0871, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_MOVE_TO_STORAGE, 0x0873, 8, clif->pMoveToKafra);
packet(CMSG_PARTY_INVITE2, 0x0878, 26, clif->pPartyInvite2);
packet(CMSG_PLAYER_CHANGE_DIR, 0x087f, 5, clif->pChangeDir);
packet(CMSG_BUYINGSTORE_CREATE, 0x088f, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x0890, 10, clif->pUseSkillToId);
packet(CMSG_MOVE_FROM_STORAGE, 0x0891, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x0896, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x089a, 7, clif->pActionRequest);
packet(CMSG_SEARCHSTORE_SEARCH, 0x089b, -1, clif->pSearchStoreInfo);
packet(CMSG_BUYINGSTORE_CLOSE, 0x08a2, 2, clif->pReqCloseBuyingStore);
packet(CMSG_NAME_REQUEST, 0x08ad, 6, clif->pGetCharNameRequest);
// packet(UNKNOWN, 0x0922, 8, clif->pDull);
packet(CMSG_SEARCHSTORE_CLICK, 0x0934, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SKILL_USE_POSITION, 0x093b, 10, clif->pUseSkillToPos);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0945, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x094d, 5, clif->pWalkToXY);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0960, 6, clif->pDropItem);
// packet(UNKNOWN, 0x0963, 4, clif->pDull);
// packet(UNKNOWN, 0x0966, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x096a, 26, clif->pFriendsListAdd);
}
// 20121114
if (packetVersion == 20121114)
{
packet(CMSG_STORAGE_PASSWORD, 0x0364, 36, clif->pStoragePassword);
packet(CMSG_HOMUNCULUS_MENU, 0x0365, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0437, 6, clif->pDropItem);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0815, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PARTY_INVITE2, 0x0838, 26, clif->pPartyInvite2);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0862, -1, clif->pSearchStoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x0876, 6, clif->pSolveCharName);
packet(CMSG_NAME_REQUEST, 0x0879, 6, clif->pGetCharNameRequest);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0881, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0898, 7, clif->pActionRequest);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0899, 5, clif->pWalkToXY);
packet(CMSG_MAP_PING, 0x08a9, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_CLOSE, 0x08aa, 2, clif->pReqCloseBuyingStore);
packet(CMSG_PLAYER_CHANGE_DIR, 0x08ab, 5, clif->pChangeDir);
packet(CMSG_MOVE_FROM_STORAGE, 0x091a, 8, clif->pMoveFromKafra);
// packet(UNKNOWN, 0x0930, 4, clif->pDull);
packet(CMSG_SKILL_USE_BEING, 0x0935, 10, clif->pUseSkillToId);
packet(CMSG_BUYINGSTORE_SELL, 0x0938, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SEARCHSTORE_CLICK, 0x093b, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_MOVE_TO_STORAGE, 0x093c, 8, clif->pMoveToKafra);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0941, 26, clif->pFriendsListAdd);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0944, -1, clif->pItemListWindowSelected);
// packet(UNKNOWN, 0x0949, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_SKILL_USE_POSITION, 0x094a, 10, clif->pUseSkillToPos);
packet(CMSG_MAP_SERVER_CONNECT, 0x094b, 19, clif->pWantToConnection);
packet(CMSG_BUYINGSTORE_OPEN, 0x094f, 6, clif->pReqClickBuyingStore);
packet(CMSG_BUYINGSTORE_CREATE, 0x095c, -1, clif->pReqOpenBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0965, 6, clif->pTakeItem);
// packet(UNKNOWN, 0x096a, 8, clif->pDull);
}
// 20121121
if (packetVersion == 20121121)
{
packet(CMSG_SKILL_USE_BEING, 0x0202, 10, clif->pUseSkillToId);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0362, 2, clif->pReqCloseBuyingStore);
packet(CMSG_ITEM_PICKUP, 0x0437, 6, clif->pTakeItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0863, -1, clif->pItemListWindowSelected);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x086a, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_SEARCH, 0x086c, -1, clif->pSearchStoreInfo);
packet(CMSG_SOLVE_CHAR_NAME, 0x086d, 6, clif->pSolveCharName);
packet(CMSG_MOVE_FROM_STORAGE, 0x086f, 8, clif->pMoveFromKafra);
packet(CMSG_NAME_REQUEST, 0x0872, 6, clif->pGetCharNameRequest);
packet(CMSG_MOVE_TO_STORAGE, 0x0875, 8, clif->pMoveToKafra);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x087e, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0880, 5, clif->pChangeDir);
packet(CMSG_BUYINGSTORE_CREATE, 0x0892, -1, clif->pReqOpenBuyingStore);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0899, 26, clif->pFriendsListAdd);
// packet(UNKNOWN, 0x089a, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_BUYINGSTORE_SELL, 0x08a7, -1, clif->pReqTradeBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x08aa, 7, clif->pActionRequest);
packet(CMSG_MAP_PING, 0x091a, 6, clif->pTickSend);
packet(CMSG_SKILL_USE_POSITION, 0x0921, 10, clif->pUseSkillToPos);
packet(CMSG_MAP_SERVER_CONNECT, 0x0927, 19, clif->pWantToConnection);
// packet(UNKNOWN, 0x0929, 4, clif->pDull);
packet(CMSG_SEARCHSTORE_CLICK, 0x0938, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0946, 5, clif->pWalkToXY);
// packet(UNKNOWN, 0x094d, 8, clif->pDull);
packet(CMSG_HOMUNCULUS_MENU, 0x0950, 5, clif->pHomMenu);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0952, 6, clif->pDropItem);
packet(CMSG_STORAGE_PASSWORD, 0x0954, 36, clif->pStoragePassword);
packet(CMSG_PARTY_INVITE2, 0x0957, 26, clif->pPartyInvite2);
packet(CMSG_BUYINGSTORE_OPEN, 0x0958, 6, clif->pReqClickBuyingStore);
}
// 20121128
if (packetVersion == 20121128)
{
packet(CMSG_MAP_SERVER_CONNECT, 0x0362, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0363, 26, clif->pFriendsListAdd);
packet(CMSG_PARTY_INVITE2, 0x07ec, 26, clif->pPartyInvite2);
packet(CMSG_STORAGE_PASSWORD, 0x0802, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x0861, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_MAP_PING, 0x0867, 6, clif->pTickSend);
packet(CMSG_SKILL_USE_POSITION, 0x086c, 10, clif->pUseSkillToPos);
// packet(UNKNOWN, 0x086e, 4, clif->pDull);
packet(CMSG_SKILL_USE_BEING, 0x0872, 10, clif->pUseSkillToId);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0888, 5, clif->pChangeDir);
packet(CMSG_SEARCHSTORE_SEARCH, 0x088b, -1, clif->pSearchStoreInfo);
// packet(UNKNOWN, 0x0894, 8, clif->pDull);
packet(CMSG_ITEM_PICKUP, 0x0895, 6, clif->pTakeItem);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x08a8, -1, clif->pItemListWindowSelected);
packet(CMSG_PLAYER_CHANGE_DEST, 0x08ad, 5, clif->pWalkToXY);
packet(CMSG_SOLVE_CHAR_NAME, 0x091b, 6, clif->pSolveCharName);
packet(CMSG_NAME_REQUEST, 0x091c, 6, clif->pGetCharNameRequest);
packet(CMSG_BUYINGSTORE_CREATE, 0x091e, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x091f, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0921, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_MOVE_FROM_STORAGE, 0x0922, 8, clif->pMoveFromKafra);
packet(CMSG_BUYINGSTORE_OPEN, 0x092f, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0931, 7, clif->pActionRequest);
packet(CMSG_HOMUNCULUS_MENU, 0x0945, 5, clif->pHomMenu);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0947, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SEARCHSTORE_CLICK, 0x0950, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0953, 6, clif->pDropItem);
packet(CMSG_MOVE_TO_STORAGE, 0x0954, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_SELL, 0x0960, -1, clif->pReqTradeBuyingStore);
}
// 20121205
if (packetVersion == 20121205)
{
packet(CMSG_SEARCHSTORE_SEARCH, 0x035f, -1, clif->pSearchStoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0360, 5, clif->pWalkToXY);
packet(CMSG_HOMUNCULUS_MENU, 0x0361, 5, clif->pHomMenu);
packet(CMSG_ITEM_PICKUP, 0x0815, 6, clif->pTakeItem);
packet(CMSG_MAP_PING, 0x0863, 6, clif->pTickSend);
// packet(UNKNOWN, 0x0864, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x086c, -1, clif->pItemListWindowSelected);
packet(CMSG_BUYINGSTORE_CREATE, 0x0870, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0873, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_BUYINGSTORE_SELL, 0x0875, -1, clif->pReqTradeBuyingStore);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0878, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_STORAGE_PASSWORD, 0x0888, 36, clif->pStoragePassword);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0889, 6, clif->pDropItem);
// packet(UNKNOWN, 0x088b, 4, clif->pDull);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x089a, 26, clif->pFriendsListAdd);
packet(CMSG_SEARCHSTORE_CLICK, 0x089d, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SOLVE_CHAR_NAME, 0x08ad, 6, clif->pSolveCharName);
packet(CMSG_BUYINGSTORE_CLOSE, 0x091a, 2, clif->pReqCloseBuyingStore);
packet(CMSG_MOVE_FROM_STORAGE, 0x091c, 8, clif->pMoveFromKafra);
packet(CMSG_MAP_SERVER_CONNECT, 0x0921, 19, clif->pWantToConnection);
packet(CMSG_BUYINGSTORE_OPEN, 0x093a, 6, clif->pReqClickBuyingStore);
// packet(UNKNOWN, 0x093e, 8, clif->pDull);
packet(CMSG_SKILL_USE_BEING, 0x093f, 10, clif->pUseSkillToId);
packet(CMSG_SKILL_USE_POSITION, 0x0946, 10, clif->pUseSkillToPos);
packet(CMSG_NAME_REQUEST, 0x094b, 6, clif->pGetCharNameRequest);
packet(CMSG_PLAYER_CHANGE_ACT, 0x0954, 7, clif->pActionRequest);
packet(CMSG_PARTY_INVITE2, 0x0959, 26, clif->pPartyInvite2);
packet(CMSG_MOVE_TO_STORAGE, 0x0966, 8, clif->pMoveToKafra);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0968, 5, clif->pChangeDir);
}
// 20121212
if (packetVersion == 20121212)
{
packet(CMSG_BUYINGSTORE_CREATE, 0x0362, -1, clif->pReqOpenBuyingStore);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0368, 26, clif->pFriendsListAdd);
packet(CMSG_PARTY_INVITE2, 0x0369, 26, clif->pPartyInvite2);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0436, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0438, 2, clif->pReqCloseBuyingStore);
packet(CMSG_SKILL_USE_POSITION, 0x0817, 10, clif->pUseSkillToPos);
packet(CMSG_PLAYER_CHANGE_ACT, 0x085c, 7, clif->pActionRequest);
packet(CMSG_MAP_PING, 0x0877, 6, clif->pTickSend);
packet(CMSG_SKILL_USE_BEING, 0x087d, 10, clif->pUseSkillToId);
packet(CMSG_SEARCHSTORE_CLICK, 0x087f, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_SOLVE_CHAR_NAME, 0x0893, 6, clif->pSolveCharName);
packet(CMSG_BUYINGSTORE_OPEN, 0x0895, 6, clif->pReqClickBuyingStore);
packet(CMSG_MAP_SERVER_CONNECT, 0x08a3, 19, clif->pWantToConnection);
packet(CMSG_PLAYER_CHANGE_DEST, 0x08a7, 5, clif->pWalkToXY);
packet(CMSG_STORAGE_PASSWORD, 0x08a9, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x08aa, 4, clif->pDull);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x08ac, 6, clif->pDropItem);
packet(CMSG_MOVE_FROM_STORAGE, 0x0917, 8, clif->pMoveFromKafra);
packet(CMSG_SEARCHSTORE_SEARCH, 0x091a, -1, clif->pSearchStoreInfo);
packet(CMSG_PLAYER_CHANGE_DIR, 0x0920, 5, clif->pChangeDir);
// packet(UNKNOWN, 0x0932, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_HOMUNCULUS_MENU, 0x0947, 5, clif->pHomMenu);
// packet(UNKNOWN, 0x0951, 8, clif->pDull);
packet(CMSG_ITEM_PICKUP, 0x0953, 6, clif->pTakeItem);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0957, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_MOVE_TO_STORAGE, 0x095b, 8, clif->pMoveToKafra);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0965, -1, clif->pItemListWindowSelected);
packet(CMSG_BUYINGSTORE_SELL, 0x0966, -1, clif->pReqTradeBuyingStore);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20121218
if (packetVersion == 20121218)
{
packet(CMSG_MAP_PING, 0x035f, 6, clif->pTickSend);
packet(CMSG_BUYINGSTORE_OPEN, 0x0360, 6, clif->pReqClickBuyingStore);
packet(CMSG_SKILL_USE_BEING, 0x0362, 10, clif->pUseSkillToId);
packet(CMSG_ITEM_PICKUP, 0x0363, 6, clif->pTakeItem);
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_PLAYER_INVENTORY_DROP, 0x083c, 6, clif->pDropItem);
packet(CMSG_HOMUNCULUS_MENU, 0x0867, 5, clif->pHomMenu);
// packet(UNKNOWN, 0x0872, 4, clif->pDull);
packet(CMSG_PLAYER_CHANGE_DIR, 0x087a, 5, clif->pChangeDir);
packet(CMSG_PARTY_INVITE2, 0x087b, 26, clif->pPartyInvite2);
packet(CMSG_MOVE_TO_STORAGE, 0x0886, 8, clif->pMoveToKafra);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0889, -1, clif->pItemListWindowSelected);
// packet(UNKNOWN, 0x0890, 8, clif->pDull);
packet(CMSG_MOVE_FROM_STORAGE, 0x091a, 8, clif->pMoveFromKafra);
packet(CMSG_MAP_SERVER_CONNECT, 0x091c, 19, clif->pWantToConnection);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0935, 26, clif->pFriendsListAdd);
packet(CMSG_STORAGE_PASSWORD, 0x0946, 36, clif->pStoragePassword);
// packet(UNKNOWN, 0x0957, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20121227
if (packetVersion == 20121227)
{
packet(CMSG_HOMUNCULUS_MENU, 0x0202, 5, clif->pHomMenu);
packet(CMSG_MAP_SERVER_CONNECT, 0x02c4, 19, clif->pWantToConnection);
packet(CMSG_STORAGE_PASSWORD, 0x0361, 36, clif->pStoragePassword);
packet(CMSG_ITEM_LIST_WINDOW_SELECT, 0x0368, -1, clif->pItemListWindowSelected);
packet(CMSG_PLAYER_INVENTORY_DROP, 0x0437, 6, clif->pDropItem);
packet(CMSG_BUYINGSTORE_CREATE, 0x0860, -1, clif->pReqOpenBuyingStore);
packet(CMSG_SEARCHSTORE_CLICK, 0x0870, 12, clif->pSearchStoreInfoListItemClick);
packet(CMSG_BUYINGSTORE_OPEN, 0x0872, 6, clif->pReqClickBuyingStore);
packet(CMSG_PLAYER_CHANGE_ACT, 0x087a, 7, clif->pActionRequest);
packet(CMSG_MOVE_FROM_STORAGE, 0x0886, 8, clif->pMoveFromKafra);
packet(CMSG_MAP_PING, 0x0888, 6, clif->pTickSend);
packet(CMSG_PLAYER_CHANGE_DIR, 0x088e, 5, clif->pChangeDir);
packet(CMSG_SKILL_USE_POSITION, 0x0890, 10, clif->pUseSkillToPos);
packet(CMSG_FRIENDS_ADD_PLAYER, 0x0894, 26, clif->pFriendsListAdd);
packet(CMSG_SOLVE_CHAR_NAME, 0x0896, 6, clif->pSolveCharName);
packet(CMSG_ITEM_PICKUP, 0x08a6, 6, clif->pTakeItem);
// packet(UNKNOWN, 0x08aa, 18, clif->pPartyBookingRegisterReq);
packet(CMSG_BUYINGSTORE_CLOSE, 0x0917, 2, clif->pReqCloseBuyingStore);
// packet(UNKNOWN, 0x091f, 4, clif->pDull);
packet(CMSG_SKILL_USE_POSITION_MORE, 0x0920, 90, clif->pUseSkillToPosMoreInfo);
packet(CMSG_PLAYER_CHANGE_DEST, 0x0932, 5, clif->pWalkToXY);
packet(CMSG_SEARCHSTORE_SEARCH, 0x0933, -1, clif->pSearchStoreInfo);
packet(CMSG_SKILL_USE_BEING, 0x0940, 10, clif->pUseSkillToId);
packet(CMSG_SEARCHSTORE_NEXT_PAGE, 0x0943, 2, clif->pSearchStoreInfoNextPage);
packet(CMSG_NAME_REQUEST, 0x0947, 6, clif->pGetCharNameRequest);
// packet(UNKNOWN, 0x0953, 8, clif->pDull);
packet(CMSG_MOVE_TO_STORAGE, 0x0958, 8, clif->pMoveToKafra);
packet(CMSG_BUYINGSTORE_SELL, 0x095d, -1, clif->pReqTradeBuyingStore);
packet(CMSG_PARTY_INVITE2, 0x0962, 26, clif->pPartyInvite2);
}
// 20130103
if (packetVersion == 20130103)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
// packet(UNKNOWN, 0x022d, 4, clif->pDull);
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(UNKNOWN, 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_STORAGE_PASSWORD, 0x0436, 36, clif->pStoragePassword);
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, 0x0940, 19, clif->pWantToConnection);
packet(CMSG_NAME_REQUEST, 0x096a, 6, clif->pGetCharNameRequest);
}
// 20130107
if (packetVersion == 20130107)
{
packet(CMSG_PLAYER_CHANGE_DIR, 0x0202, 5, clif->pChangeDir);
// packet(UNKNOWN, 0x022d, 4, clif->pDull);
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(UNKNOWN, 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_STORAGE_PASSWORD, 0x0436, 36, clif->pStoragePassword);
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);