hwj35
6 天以前 d8bc324b89ec54c05a642b7fdf21841ddde7f05a
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
string    string    string    int[]    string    int
key    sound    effect    type    richText    order
查找key    音效    特效    类型:控制位置和显示方式    富文本    优先级(值越高优先级越高,固定提示以及聊天频道不受此规则约束)
VipLevel    0    0    2    VIP Level Insufficient    0
PrayerWin_1    0    0    2    VIP expired, please renew    0
VipCardHint1    0    0    2    Congratulations on activating your <color=#ff6701ff>VIP Trial Card</color>, granting you free teleports, free private reminders, and various other privileges    0
VipCardHint2    0    0    2    You are already a VIP, no need to use a VIP Trial Card    0
PassEquipLimitVip    0    0    2    Player reaches <color=#fa1010>VIP%s0</color> to Activate    0
PassEquipLimitVipPast    0    0    2    Player's VIP has expired. Please activate VIP to continue.    0
PassEquipLimitMountLevel    0    0    2    Mount Total Level <color=#fa1010>%s0</color> to Activate    0
PassEquipLimitTask    0    0    2    Complete quest <color=#fa1010>%s0</color> to activate    
PassNewHole    0    0    4    You have unlocked a new Passive Skill slot. You can now equip an extra Passive Skill!    
VipTiyan_Timeout    0    0    2    VIP Trial expired. Renew to obtain better Privileges.    0
Vip_Timeout    0    0    2    VIP expired, renew to continue enjoying VIP Privileges.    0
VipCardHint3    0    0    2    <Word info=item ID=%s0/> Successfully used!    0
FuncNoOpen_BossHome    0    0    2    <color=#ff0303>Level %s0</color> Unlocks VIP Privileges BOSS Home    0
AchemyGreatSuccess    0    0    4|20    Congratulations to <color=#109d06>%s0</color> for crafting an Epic <a><Word info=item ID=%s1/>|showitem=%s1</a> in the <color=#006be3>Pill Alchemy Furnace</color>    0
BuyItemHinit    0    0    2    You consume %s0<Word info="RichTextMsgReplace" Name="MONEY" id=%s1/> to purchase %s2    0
BoxOpenCostMoney    0    0    2    <Word info=RichTextMsgReplace Name=MONEY id=%s0/> insufficient, unable to open chest    0
OpenBoxToolNoEnough    0    0    2    Insufficient %s0 to activate chest    0
GeRen_chenxin_609765    0    0    2    Your Copper Coins limit reached.    0
GeRen_chenxin_749572    0    0    2    Item on cooldown, cannot be used    0
BagFull    0    0    2    Your <color=#ff0303>inventory</color> is full, please clear your inventory    0
GeRen_chenxin_644055    0    0    2    Item Lock On    0
FuncNoOpen_WorldBoss    0    0    2    <color=#ff0303>Level %s0</color> Activate World BOSS    0
WingWash_1    0    0    2    You are not wearing any wings at the moment. Refining is only available for equipped wings.    0
WingWash_2    0    0    2    Please Select Materials to Refine first.    0
CreatSuccess    0    0    2|20    Character created!    0
NameError    0    0    2|20    Character name error, please rename    0
CreatingCharacter    0    0    2|20    Creating character, please wait...    0
CreatUnusual    0    0    2|20    Character Creation Anomaly!    0
RepeatName    0    0    2    Character name already exists!    0
LoginSuccess    0    0    2    Login successfully    0
LoginFaile    0    0    2    Login failed!    0
RegisterSuccess    0    0    2    Registration success    0
RegisterFaile    0    0    2    Registration failed!    0
GeRen_lhs_31379    0    0    2    Your class doesn't comply    0
04BBF813-7A30-47A8-927DE1ACCC4F378E    0    0    2    Sorry, target location is an obstacle point!    0
ObjectMapNonentity    0    0    2    The map is not activated!    0
GeRen_liubo_279029    0    0    2    Auto Combat unavailable in current Maps.    0
CJ_DT_LoadMost    0    0    2    Number of players has reached the limit! Please enter through another Line!    0
Carry_lhs_844170    0    0    2    Unable to teleport within instance maps    0
Carry_lhs_697674    0    0    2    You cannot teleport in your current status    0
Carry_lhs_202580    0    0    2    Sorry, you can't teleport while in battle status.    0
NearbyHint    0    0    2    Too close! Don't waste your <Word info=Item ID=954 col=0/>!    0
DropRecord    0    0    4|20    <color=#109d06FF><a>%s0|showplayer=%s1 servergroupid=%s6 level=%s7 name=%s0</a></color> battled for 300 rounds against <color=#12a199ff><Word info=NPC ID=%s3/></color> in <Word info=Map ID=%s2 lineid=%s8/>, obtaining an epic <a><Word info=item ID=%s4/>|showitem=%s4 userdata=%s5</a>    0
GeRen_admin_671654    0    0    4|20    <color=#109d06FF><a>%s0|showplayer=%s1 servergroupid=%s6 level=%s7 name=%s0</a></color> battled against <color=#12a199ff><Word info=NPC ID=%s3/></color> for 300 rounds in <Word info=Map ID=%s2/> and obtained an epic <a><Word info=item ID=%s4/>|showitem=%s4 userdata=%s5</a>    0
KirinHomeWheel    0    0    2    Wave %s0 Qilin Guardians launch attack    0
Multiple_Finish    0    0    2    Daily challenge attempts exhausted. Come back tomorrow!    0
Multiple_UpLV    0    0    2    Challenge this difficulty requires character to reach Level %s0    0
NotChallengeMultiple    0    0    2    Challenge this Difficulty Instance requires Clear <color=#ff0101FF>Level %s0</color> Instance first    0
MoppingUpLV    0    0    2    <color=#ff0303>Level %s0</color> Activate Qilin's Domain Raid Feature    0
MoppingUpPass    0    0    2    Raid this Difficulty Instance requires Clear <color=#ff0303>Level %s0 Instance</color> first    0
UnopenedFunction    0    0    2    Feature Not Available Yet    0
FuncNoOpen_Strengthen    0    0    2    Magic Artifact <color=#ff0303>Radiant Moon Spear</color> Equipment Awakening Enhancement Feature    0
FuncNoOpen_Gem    0    0    2    <color=#ff0303>Level %s0</color> Quest activates the Gemstone Embedding feature.    0
FuncNoOpen_PersonBoss    0    0    2    <color=#ff0303>Level %s0</color> Unlock VIP Exclusive Personal BOSS    0
FuncNoOpen_DailyQuest    0    0    2    <color=#ff0303>Level %s0</color> Main Quest Activate Daily    0
FuncNoOpen_Suit    0    0    2    <color=#ff0303>Level %s0</color> Activate Set Forging Feature    0
FuncNoOpen_Pray    0    0    2    <color=#ff0303>Level %s0</color> Activate Copper Coin Wish Invocation    0
FuncNoOpen_RankPanel    0    0    2    <color=#ff0303>Level %s0</color> unlocks the Rankings Feature. Check if you've made the cut!    0
FuncNoOpen_He    0    0    2    <color=#ff0303>Level %s0</color> activates the synthesis feature, <color=#ff0303>Level 180</color> activates wings synthesis    0
FuncNoOpen_DaBao    0    0    2    Magic Artifact <color=#ff0303>Ghost Fang Blade</color> Awakening Demon Sealing Altar BOSS    0
FuncNoOpen_WingsRefine    0    0    2    <color=#ff0303>Level %s0</color> Activate Wings Refinement, Enhance Wings Quality    0
FuncNoOpen_Sp    0    0    2    <color=#ff0303>Level %s0</color> Activate Skill Upgrade    0
FuncNoOpen_Wash    0    0    2    <color=#ff0303>Level %s0</color> activates the Equipment Refinement feature    0
FuncNoOpen_GuShen    0    0    2    <color=#ff0303>Level %s0</color> to activate Ancient God's Forbidden Zone, seize Set Stones    0
FuncNoOpen_AutoZhan    0    0    2    <color=#ff0303>Level %s0</color> Activate Equipment Synthesis, Three-Star Red Equipment Descend    0
FuncNoOpen_WingsHe    0    0    2    <color=#ff0303>Level %s0</color> activates Wings Synthesis, awesome wings soar through the sky    0
FuncNoOpen_FreePoint    0    0    2    <color=#ff0303>Level %s0</color> Activate Five Element Spirit Roots    0
FuncNoOpen_ChatLimit    0    0    2    <color=#ff0303>Level %s0</color> Activate Chat Dialog    0
FuncNoOpen_Friend    0    0    2    <color=#ff0303>Level %s0</color> Activate Shop    0
FuncNoOpen_Market    0    0    2    <color=#ff0303>Level %s0</color> Activate Auction    0
FuncNoOpen_RuneTower    0    0    2    <color=#ff0303>Activate Rune Tower Level %s0</color>    0
FuncNoOpen_LianDanLu    0    0    2    Complete Main Quest to Activate Pill Alchemy    0
FuncNoOpen_Rune    0    0    2    Magic Artifact <color=#ff0303>Dragon Phoenix Ring</color> Awakening Rune    0
FuncNoOpen_SignIn    0    0    2    <color=#ff0303>Level %s0</color> Activate Check-In    0
FuncNoOpen_Task    0    0    2    <color=#ff0303>Level %s0</color> Activates Daily Quest    0
FuncNoOpen_UnionMatch    0    0    2    <color=#ff0303>Level %s0</color> and join a Guild to activate Guild Tournament    0
FuncNoOpen_Mount    0    0    2    Complete Main Quest <color=#ff0303>Wind Chaser Taming</color> to Activate <color=#ff0303>Mount</color> Feature    0
FuncNoOpen_Magic    0    0    2    <color=#ff0303>Level %s0</color> Activate Divine Weapon    0
FuncNoOpen_Pet    0    0    2    Complete Main Quest <color=#ff0303>Tame Wind Chaser</color> to Activate <color=#ff0303>Pet Spirit</color> Feature    0
FuncNoOpen_MoZu    0    0    2    <color=#ff0303>Level %s0</color> Activate Demonic Tribe's Magic Artifact    0
FuncNoOpen_Realm    0    0    2    <color=#ff0303>Level %s0</color> Activate Realm    0
FuncNoOpen_Fairy    0    0    2    <color=#ff0303>Level %s0</color> Activate Guild    0
FuncNoOpen_XMZZ    0    0    2    <color=#ff0303>Level %s0</color> Opens the Immortals vs. Demons War    0
FuncNoOpen_XMYH    0    0    2    <color=#ff0303>Level %s0</color> Activate Guild Banquet    0
FuncNoOpen_SGZC    0    0    2    <color=#ff0303>Activate Ancient Battlefield at Level %s0</color>    0
FuncNoOpen_PassSkill    0    0    2    <color=#ff0303>Level %s0</color> Activate Passive Skill    0
ElderGod_SomeIn    0    0    2    Player <color=#109d06FF>%s0</color> has entered the Ancient God's Forbidden Zone    0
FuncNoOpen_EquipDevour    0    0    2    <color=#ff0303>Level %s0</color> Activate Equipment Dismantle Feature    0
FuncNoOpen_XBXZ    0    0    2    <color=#ff0303>Level %s0</color> Activate Immortal Treasure Explore Feature    0
FuncNoOpen_DJHC    0    0    2    <color=#ff0303>Level %s0</color> Activate Item Synthesis    0
FuncNoOpen_LCJX    0    0    2    <color=#ff0303>Level %s0</color> Activate Pet Spirit Awakening    0
Guardian_ContinuePay    0    0    2    Renew Success    0
Friend_OffLine    0    0    2    The other player is offline    0
Friend_OffChat    0    0    2    Cannot whisper to players on the blacklist    0
Friend_OffTeam    0    0    2    Cannot invite blacklist players    0
Friend_NoExist    0    0    2    Unfortunately, no players found    0
Friend_RemoveBlacklist    0    0    2    Remove target from blacklist first.    0
Friend_Blacklist    0    0    2    You have been added to their blacklist    0
Friend_FullList    0    0    2    Friend list full    0
Friend_OtherFullList    0    0    2    Target's friend list is full    0
Friend_ApplyFriend    0    0    2    Friend Request sent    0
Friend_YetFriend    0    0    2    The player is already your friend.    0
Friend_RejectFriend    0    0    2    The other party rejected your friend request    0
Friend_MakeFriend    0    0    2    <color=#109d06FF>%s0</color> has become your friend    0
Friend_DeleteFriend    0    0    2    You removed the friend connection with the other party    0
Friend_DeleteFriend2    0    0    2    <color=#109d06FF>%s0</color> has terminated his friendship with you    0
BlacklistFull    0    0    2    Blacklist full, unable to add more    0
AddBlackList    0    0    2    <color=#109d06FF>%s0</color> has been added to the Blacklist    0
MarketNoPutaway1    0    0    2    Bound items cannot be listed    0
MarketNoPutaway2    0    0    2    Equipment with an Embedded Gemstone cannot be listed.    0
MarketNoPutaway3    0    0    2    Set Equipment cannot be listed    0
MarketNoPutaway4    0    0    2    Item listing limit: %s0 items    0
MarketNoPutaway5    0    0    2    This item is currently being traded by other players, please wait.    0
UseSkillCDLimit    0    0    2    Skill is on CD    0
Skill1Btn_Unlock    0    0    2    Magic Artifact <color=#006be3FF>Sea-Calming Divine Needle</color> obtained upon Awakening    0
Skill2Btn_Unlock    0    0    2    Magic Artifact <color=#006be3FF>Dragon Phoenix Ring</color> Awakening Obtain    0
Skill3Btn_Unlock    0    0    2    Magic Artifact <color=#006be3FF>Moonblade Spear</color> Awakening Obtain    0
Skill4Btn_Unlock    0    0    2    Magic Artifact <color=#006be3FF>Eastern Emperor Bell</color> Awakening Obtained    0
Skill5Btn_Unlock    0    0    2    Magic Artifact <color=#006be3FF>Sun-Shooting Divine Bow</color> Awakening Obtain    0
Skill6Btn_Unlock    0    0    2    Magic Artifact <color=#006be3FF>Ghost Fang Blade</color> Awakening Obtained    0
Skill7Btn_Unlock    0    0    2    Magic Artifact <color=#006be3FF>Golden Banner</color> Awakening Obtained    0
SkillXpBtn_Unlock    0    0    2    Magic Artifact <color=#006be3FF>Golden Gourd</color> Awakening Obtained    0
SkillPanel_Unlock    0    0    2    Magic Artifact <color=#006be3FF>%s0</color> Awakening Unlocks Skill Page Swipe    0
GoldErr    0    0    2    <color=#ff0303FF>Your Immortal Jade count is insufficient!</color>    0
Protect_1    0    0    2    Guardian Success, Player will obtain Guardian Rewards upon successful Challenge completion.    0
Protect_2    0    0    2    Guardian ineffective; Exceeded Guardian Bonus Limit    0
Protect_3    0    0    2    Guardian is invalid, player has left the instance    0
Protect_4    0    0    2|20    Daily Guardian limit: <color=#109d06FF>%s0</color> times. Guardian reward limit reached. Successful Guardian actions will no longer grant Guardian Gift Packs.    0
InterruptPlayer    0    0    100    <color=#109d06FF>%s0</color> is interrupting your Meditation    0
MeditationNews    0    0    2|20    <color=#109d06FF>%s0</color> is challenging the Inner Demon through Meditation at <color=#12a199FF><Word info=Map ID=%s1/></color>. <color=#109d06><a>Go Watch|FindPlayer=1 mapId=%s1 x=%s2 y=%s3 line=%s4</a></color>    0
RealmUpSuccess    0    0    4|20    Congratulations to player <color=#109d06FF><a>%s0|showplayer=%s1</a></color> for the ascension to the <Word info=realm ID=%s2/> Realm, Combat Power greatly increased~    0
BigRealmUpSuccess    0    0    5|20    Congratulations to Player <color=#109d06FF><a>%s0|showplayer=%s1</a></color> for ascending to the <Word info=realm ID=%s2/> Realm. The Nine Heavens Mystic Maiden showers celestial blossoms to celebrate! Fellow Adventurers who have reached the <Word info=realm ID=%s3/> Realm can sense the Nine Heavens Mystic Maiden's divine aura, automatically increasing their Cultivation Points!    0
RealmSitTimeNoEnough    0    0    2    Max reduction reached. Cannot increase further.    0
MeditationFailed    0    0    3    Meditation interrupted, remaining meditation time: <color=#109d06FF>%s0</color>    0
RealmNoEnoughTreasure    0    0    2    Insufficient Count of Magic Artifacts Activated    0
WB_Limit    0    0    2    Today's World BOSS Remaining Attempts are exhausted. Visit the <color=#109d06FF>Guild Shop</color> to purchase Fatigue Pills and increase your attempts!    0
BossHome_Limit    0    0    2    Today's remaining attempts for BOSSes in BOSS Home are used up. Unable to deal damage to them anymore.    0
BossHomeBuyLimit    0    0    2    Purchase failed. Attempts limit reached.    
CanootTalk01    0    0    2    This Channel can send messages in <color=#109d06FF>%s0</color> seconds    0
CanootTalk02    0    0    2    Chat messages sent too frequently    0
CanootTalk08    0    0    2    Your chat function has been muted. The chat message failed to send.    0
CanootTalk09    0    0    2    Please do not send duplicate Chat Messages    0
CanootTalk10    0    0    2    Whisper target doesn't exist or isn't online    0
CanootTalk13    0    0    2    Chat Message input too long    0
CanootTalk14    0    0    2    Chat message cannot be empty    0
CanootTalk04    0    0    2    Chat Message contains Illegal Characters    0
NoChatTarget    0    0    2    Unable to send message, no chat recipient    0
GeRen_lwh_272921    0    0    2    Please activate this pet spirit first    0
GeRen_liubo_148706    0    0    2    Heavenly Dao rewards the diligent. The revered First on the Level Rankings <color=#109d06FF>%s0</color> has come online!    0
GeRen_liubo_232930    0    0    2    Dominating all, the unrivaled number one player <color=#109d06FF>%s0</color> has come online    0
ViewPlayer_OffLine    0    0    2    Sorry, cannot view offline player info    0
SeePlayer_Cannot    0    0    2    Unable to view own information    0
PrayerWin_2    0    0    2    Wish limit reached, please enhance VIP Level    0
MoneyPray_HowMuch    0    0    2    The Money Tree has blessed you! Obtain <color=#109d06FF>%s0<Word info=RichTextMsgReplace Name=MONEY id=%s1/></color>    0
ExpPray_HowMuch    0    0    2    The Scroll of Wisdom has manifested! You've obtained <color=#109d06FF>%s0 Cultivation Points</color>    0
SwitchEquip_Strengthen    0    0    2    Enhancement Level Auto-Inherited, Excess Retained as Proficiency    0
SwitchEquip_Strengthen2    0    0    2    Enhancement Level auto-inherited    0
Task_cannot_Perfection    0    0    2    Quest Anomaly, Rewards Error    0
UnionTask_Reward    0    0    2    Insufficient Inventory Space. The Rewards will be sent via Mail.    0
ElderBattlefieldBest    0    0    5|20    <color=#109d06FF>%s0</color> Top-scoring player in the Ancient Battlefield will be rewarded with <a><Word info=item ID=%s1/>|showitem=%s1</a>    0
Guardian_Timeout    0    0    2    <Word info=item ID=%s0/> has expired. Pick a new Guardian at the Shop.    0
SwitchEquip_SuitPanel    0    0    2    Auto-transferred all Set Stones    0
GeRen_admin_272921    0    0    4|20    <color=#109d06FF>%s0</color> defeated <color=#12a119FF><Word info=NPC ID=%s2/></color> in <color=#12a119FF><Word info=Map ID=%s1/></color>, dropping <a><Word info=item ID=%s3/>|showitem=%s3</a>    0
SwitchEquip_Wash    0    0    2    Equipment refinement attribute auto inherited    0
Wash_NoEquip1    0    0    2    Equip the gear before Refinement    0
GeRen_chenxin_628920    0    0    2    You obtain Damage Morale Boost status, damage increased by %s00%    0
GeRen_chenxin_93643    0    0    2    Morale Boost Effect has reached the limit.    0
Xjmj_CopperInspireFull    0    0    2    Copper Coin Morale Boost is at maximum effect. Use Immortal Jade Morale Boost to further enhance damage.    0
TeamNoExist    0    0    2    Team does not exist!    0
Xjmj_InspireNoEnoughFairy    0    0    2    You have insufficient Immortal Jade to perform a Morale Boost.    0
Xjmj_InspireNoEnoughGold    0    0    2    Your Copper Coins are insufficient to perform a Morale Boost.    0
Xjmj_InspireMaxLevel    0    0    2    Morale Boost Attempts have reached the limit    0
Friend_OpenAliance    0    0    2    Level 50 Activate Guild    0
Friend_OtherHaveAlliance    0    0    2    Target already has a Guild    0
Friend_NotAliance    0    0    2    Target has no Guild    0
Friend_OtherLessLv    0    0    2    Target level insufficient    0
Friend_RejectAlliance    0    0    2    Target rejected your Join Alliance request    0
Friend_JoinAlliance    0    0    2    Your application to join the Alliance has been approved    0
jiazu_xyj_31379    0    0    2    Your Alliance Leader has been offline for over 2 days, the Leader position has been automatically transferred    0
8A51A214-9410-42DA-ABD8884CE3CB81C8    0    0    2    Another Guild is already using this name. Please enter a new one!    0
jiazu_xyj_671654    0    0    2    You've exited a Guild at least once today. You can't participate in this Guild event for now.    0
GeRen_liubo_644055    0    0    2    You are no longer in the victorious Alliance and cannot claim the Alliance victory reward    0
XW_JZ_LeaguerOnline    0    0        <color=#109d06FF>%s0</color> came online    0
XW_JZ_LeaguerLeaveline    0    0        <color=#109d06FF>%s0</color> Offline    0
XW_JZ_InviteErr_Repeat    0    0    2    That player is already in a Guild!    0
XW_JZ_InviteErr_Refuse    0    0    2    Target rejected your invitation to join the Guild    0
XW_JZ_InviteErr_Popedom    0    0    2    You don't have permission to invite others to the Guild.    0
XW_JZ_InviteErr_OutLine    0    0    2    The player is offline    0
XW_JZ_InviteErr_NoName    0    0    2    You haven't entered the player name you want to invite.    0
XW_JZ_InviteErr_Lv    0    0    2    Target's level is below <color=#ff0303FF>%s0</color>, Guild invite failed    0
XW_JZ_InviteEnter    0    0    2    Invite sent, awaiting response!    0
jiazu_liubo_671654    0    0    5|20    Calling all aspiring cultivators, join us on the path to immortality! <color=#109d06FF>%s0</color> has established the <color=#ff6701FF>%s1</color> Guild! <color=#109d06FF><a>Join Alliance|ApplyFairy=%s2</a></color>    0
XW_JZ_EstablishSud    0    0    2    Congratulations! Your Guild has been successfully established!    0
XW_JZ_LeaveFamily    0    0    32    <color=#109d06FF>%s0</color> exited the Guild    0
XW_JZ_EnterFamily    0    0    32    <color=#109d06FF>%s0</color> joined the Guild    0
XW_JZ_EnterFamilyInfo    0    0    2|20    Congratulations! You've successfully joined Guild <color=#109d06FF>%s0</color>    0
XW_JZ_EstablishErr_Lv    0    0    2    Your level is below Level 50, unable to create a Guild!    0
XW_JZ_EstablishErr_Money    0    0    2    Your funds are insufficient. Guild creation failed!    0
XW_JZ_EstablishErr_Name    0    0    2    The Guild name you entered already exists. Guild creation failed!    0
XW_JZ_EstablishErr_Nonlicet    0    0    2    The Guild name you entered contains illegal characters. Failed to create Guild.    0
GeRen_liubo_980181    0    0    2    Alliance name cannot exceed %s0 Chinese characters or %s1 English letters    0
jiazu_andyshao_0    0    0    2    You haven't joined a Guild yet!    0
jiazu_hwj35_425673    0    0    2    The target Guild doesn't exist!    0
jiazu_hwj35_917284    0    0    2    The player name you entered doesn't exist. Invite failed!    0
jiazu_lhs_161795    0    0    2|20    Establishing an Immortal Alliance requires <Word info=RichTextMsgReplace Name=MONEY id=%s0/><Word info=RichTextMsgReplace Name=MONEY id=%s1/>    0
jiazu_lhs_202580    0    0    2    Guild member count has reached the limit, unable to recruit new members!    0
jiazu_lhs_861048    0    0    2    The player you invited does not exist!    0
jiazu_pan_141056    0    0    2    Sorry, the target Guild's application list is full. Failed to join.    0
jiazu_pan_243780    0    0    32    Guild Members <color=#109d06FF>%s0</color> have changed their name to <color=#109d06FF>%s1</color>    0
jiazu_pan_500807    0    0    2    Application to join Guild successful! Please wait for Guild management approval!    0
jiazu_pan_592934    0    0    2    <color=#109d06FF>%s0</color> rejected your application to join the Guild!    0
jiazu_pan_592935    0    0    2    Your level is <color=#109d06FF>%s0</color> levels too low to modify the announcement!    0
CanootTalk07    0    0    2    You haven't joined a Guild yet, failed to send chat message in the Guild Channel.    0
GeRen_hwj35_717982    0    0    2|20    Your level is insufficient. Reach Level %s0 to create a Guild.    0
GeRen_admin_425673    0    0    2    You obtained <color=#109d06FF>%s0</color> Immortal Alliance Points!    0
GeRen_chenxin_85890    0    0    2    You have already joined a Guild    0
jiazu_lhs_0    0    0    2    You haven't joined an Alliance!    0
FamilyNameChangeNoNull    0    0    2    Immortal Alliance New Name cannot be empty    0
FamilyNameChangeOnluZhu    0    0    2    Only the Alliance Leader can change the Guild Name.    0
FamilyNameChangeUsed    0    0    2    Another Guild is already using this name. Please enter a new one!    0
FamilyNameChangeNo    0    0    2    Guild name unchanged    0
FamilyNameChangeUnlegal    0    0    2    <color=#fa1010ff>Guild name contains illegal characters, please rename</color>    0
FamilyNameChangeError    0    0    2    Guild name modification anomaly    0
TreasuryDonation    0    0    32    <color=#109d06FF>%s0</color> donated <a><Word info=item id=%s1/>|showitem=%s1 userdata=%s2</a>    0
TreasuryExchange    0    0    32    <color=#109d06FF>%s0</color> used <color=#109d06FF>%s1 Warehouse Points</color> to exchange <a><Word info=item id=%s2/>|showitem=%s2 userdata=%s3</a>    0
FamilyMatchTime    0    0    5|20    Guild Tournament battle list assigned. Open the Guild Tournament interface to view details.    0
FamilyMatchBeforeStart    0    0    5|20    Guild Tournament will begin in <color=#109d06FF>%s0</color> minutes. Please prepare in advance, Fellow Immortals.    0
FamilyMatchStart    0    0    5|20    Guild Tournament has begun. Fellow Immortal, please enter the Battlefield promptly via the Guild Tournament Interface.    0
FamilyMatchFirstSessionEnd    0    0    5    This Guild Tournament match has ended. The next match will be held at <color=#109d06FF>9:30 PM</color>    0
FamilyMatchSecondSessionEnd    0    0    5    This round of the Guild Tournament has ended. <color=#ff6701FF>%s0</color> Guild has come out on top and become the King's Guild.    0
FamilyMatchRankNoOne    0    0    5|20    <color=#109d06FF>%s0</color> is the first place in points among the winning side in the Heavenly Rank Guild Tournament, obtaining an extra <Word info=item id=%s1/> reward    0
FamilyMatchOccupied    0    0    2|20    Enemy occupied a Resources Crystal. Quickly go and seize it back!    0
FamilyMatchEnimeyResources    0    0    2|20    Enemy Resource Points have reached a total of <color=#109d06FF>%s0</color>.    0
FamilyMatchOwnResources    0    0    2|20    Our Side's Resource Points have reached <color=#109d06FF>%s0</color>    0
FamilyMatchLianWinReward    0    0    5|20    <color=#ff6701FF>%s0</color> Guild Alliance Leader has assigned the Winning Streak Reward <Word info=item id=%s1/> to <color=#109d06FF>%s2</color>, Divine Weapon Descends    0
FamilyMatchBuff    0    0    2|20    A powerful BUFF has appeared on the battlefield, hurry and contest it!    0
FamilyMatchBuffOccupied    0    0    2|20    <color=#006be3FF><Word info=Skill ID=%s0/></color> BUFF has been obtained by Our Side's Guild, morale surges    0
FamilyMatchBuffOccupiedEnimy    0    0    2|20    <color=#006be3FF><Word info=Skill ID=%s0/></color> BUFF has been obtained by the enemy Guild. Strive to contest the next one, don't be discouraged!    0
PlayerWarFamilyIDIsChange    0    0    2    You left your original Guild in this round of the Tournament and cannot participate in the Guild Tournament with any Guild other than your original one.    0
FamilyWarFightingLeaveLimiit    0    0    2    You cannot exit the Guild while it is in a Tournament battle    0
FamilyWarFightingDeleteMemLimiit    0    0    2    Your Guild is currently in a Tournament battle, unable to kick out Members at this time.    0
PlayerFamilyWarIsOver    0    0    2    Your Guild has ended this Match, you cannot enter the Battlefield.    0
FBIsNotOpen    0    0    2    The instance is currently unavailable.    0
NoFamilyWarLine    0    0    2    Your Guild is not currently in a Tournament Battle, unable to enter the Battlefield.    0
FamilyWarIneffctive1    0    0    2|20    Our Team collected a Crystal Neutralization BUFF, turning an enemy Crystal into an unowned Crystal. Hurry and occupy it!    0
FamilyWarIneffctive2    0    0    2|20    The enemy has gathered a Crystal Neutralization BUFF, causing one of our team's Crystals to become an unowned Crystal. Please reclaim it immediately.    0
FamilyWarIneffctive3    0    0    2|20    Our Team collected a Crystal Neutralization BUFF, but it had no effect as the Enemy had no occupied Crystals.    0
FamilyWarIneffctive4    0    0    2|20    Enemy gathered a Crystal Neutralization BUFF, but it had no effect as our Team had no occupied Crystals    0
GeRen_liubo_976459    0    0    2    Your Guild has already occupied this resource, no need to occupy it again.    0
GeRen_liubo_660051    0    0    2|32    Your Guild Heart Technique <Word info=RichTextMsgReplace Name=HEART id=%s0/> has been increased to Level <color=#109d06ff>%s1</color>    0
UseMagicLost16    0    0    2    This skill is at maximum level    0
Party_TopThree    0    0    5|32    Guild Banquet Quiz Rankings Top Three Guilds, <color=#ff0303FF>First Place:</color><color=#ff6701ff><Word show=%s0/></color>; Second Place: <color=#ff6701FF><Word show=%s1/></color>; Third Place: <color=#ff6701FF><Word show=%s2/></color>    0
Party_TopPlayer    0    0    5|32    Congratulations to today's Banquet "Quiz Champion": <color=#109d06ff><Word show=%s0/></color>, with lightning-fast reflexes! You've obtained <color=#109d06ff>500 Guild Activity Tokens</color>, keep it up~    0
Party_Topic    0    0    31    <Word info=fairyquestion id=%s0/>    0
Party_Answer    0    0    31    <color=#109d06ff>%s0</color> is exceptionally clever, answered correctly, and obtained <a><Word info=item ID=%s1/>|showitem=%s1</a>    0
Party_Correct    0    0    31    <color=#fa1010>%s0</color> seconds have passed, question refreshed. Previous correct answer: <color=#109d06ff>%s1</color>    0
FamilyNoIntoParty    0    0    2    You're not in the Banquet, so answering questions is invalid. Please head to the Banquet for Quick Response.    0
FamilyPleaseIntoParty    0    0    32    You can only participate in Quick Response during the Banquet Instance~    0
Party_OverTime    0    0    32    Event ends in <color=#109d06ff>%s0</color> seconds    0
Party_HadCollected    0    0    2    You have obtained gathering rewards. Quickly join the quiz in the Guild Channel!    0
Party_CollectSuccess    0    0    2    Gathering Successful, obtain <color=#109d06ff>%s0</color> Guild Contribution    0
Party_NotInPartyTime    0    0    2    You can only taste the Feast during the Banquet Event.    0
XMZZ_Streak    0    0        <color=#109d06ff>%s0</color> defeated <color=#109d06ff>%s1</color>, </r>achieving a <color=#109d06ff>%s2</color> winning streak and obtaining <color=#109d06ff>%s3</color> points.    0
XMZZ_ShutDown    0    0        <color=#109d06ff>%s0</color> ended <color=#109d06ff>%s1</color>'s <color=#109d06ff>%s2</color> winning streak    0
XMZZ_LeadingStage    0    0    5    Stage %s0 of the Immortals vs. Demons War, <color=#109d06ff><Word info=RichTextMsgReplace Name=XMZZFaction id=%s1/> Faction</color> is in the lead. Keep going!    0
XMZZ_DrawStage    0    0    5    Stage %s0 of the Immortals vs. Demons War, both factions have equal points    0
XMZZ_Victory    0    0    5    In this Immortals vs. Demons War, the <Word info=RichTextMsgReplace Name=XMZZFaction id=%s0/> Faction claims victory    0
XMZZ_Draw    0    0    5    This <strong>Immortals vs. Demons War</strong> ended in a tie, with both <strong>Factions</strong> earning equal <strong>Points</strong>. Congratulations to all participants for winning the <strong>Draw Grand Prize</strong>!    0
XMZZ_FirstPlace    0    0    5    %s0 earned %s1 points in this event and won the First Place Points Rewards.    0
XMZZ_BettingOver    0    0    2    Stage %s0 bet remaining time: 1 minute    0
XMZZ_FinalBettingOver    0    0    2    Final Faction Win/Loss and 1st Stage bet remaining time: 1 minute    0
GeRen_chenxin_197707    0    0    2    Embedding Successful!    0
SwitchEquip_Gem    0    0    2    All gemstones have been auto-transferred    0
GemFullLevelError    0    0    2    Gemstone has reached Max Level, cannot Level Up further    0
GeRen_chenxin_573322    0    0    2    You have insufficient Attribute Points to equip.    0
itemuse_andyshao_671654    0    0    2    Insufficient character attributes to equip the equipment.    0
GeRen_chenxin_960792    0    0    2    Insufficient Attribute Points to equip.    0
Friend_FullTeam    0    0    2    Team Size is Full    0
Friend_OtherFullTeam    0    0    2    The target team's number of people is full.    0
Friend_HaveTeam    0    0    2    You already have a team. Please exit before applying.    0
Friend_JoinFailed    0    0    2    The other party rejected your join team request.    0
Friend_RejectTeam    0    0    2    The other party rejected your Team Up invite    0
GeRen_liubo_986912    0    0    2    This map does not allow partying up or leaving teams.    0
InviteEnterLost01    0    0    2    The player rejected your request to join the team.    0
InviteEnterLost02    0    0    2    That player is already on another team. Team invite failed!    0
GeRen_chenxin_570355    0    0    2    Our Team is Full    0
GeRen_lwh_0    0    0    2    That player is currently in an Instance with their Team. Unable to kick them out or Join their Team.    0
ApplyEnterLost02    0    0    2    The other party rejected your join team request    0
GeRen_chenxin_227479    0    0    2    Team Full    0
GeRen_chenxin_543685    0    0    2|41    <color=#109d06FF>%s0</color> joined the team    0
LeaveProcession    0    0    2|41    <color=#109d06FF>%s0</color> left the party    0
InsteadHeader    0    0    2|41    <color=#109d06FF>%s0</color> became the Team Leader    0
Team_Header_TransferLost    0    0    2|20    The player is offline    0
GeRen_chenxin_498155    0    0    2|20    You have left the team    0
PK_hwj35_21675    0    0    2|20    The player is offline    0
GeRen_hwj35_500807    0    0    2|20    The player is offline    0
CanootTalk06    0    0    2    You don't have a team yet. Failed to send chat message in the Team Channel    0
NoMatchingTeam    0    0    2    No suitable teams for matchmaking on this map!    0
NoMatchingPlayer    0    0    2    No suitable players for matchmaking on this map!    0
TeamMatchingTimeMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed due to insufficient Attempts    0
TeamMatchingTimeAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06FF>%s1</color> has insufficient Attempts    0
TeamEnterTimeMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because you have insufficient Attempts    0
TeamEnterTimeAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06FF>%s1</color>'s Attempts are insufficient    0
GeRen_chenxin_268121    0    0    2|20    Failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance, insufficient Attempts    0
TeamMatchingCDMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because your Instance entry is on cooldown    0
TeamMatchingCDAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06ff>%s1</color>'s entry to the Instance is on cooldown    0
TeamEnterCDMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because your Instance entry is on Cooldown    0
TeamEnterCDAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color>'s Instance entry is on Cooldown    0
SingleEnterCD    0    0    2|20    Failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> instance, instance entry is on cooldown    0
TeamMatchingLVMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed due to your insufficient Level    0
TeamMatchingLVAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06ff>%s1</color>'s level does not meet the requirements    0
TeamEnterLVMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance due to your insufficient Level    0
TeamEnterLVAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#ff0303ff>%s1</color>'s Level is insufficient    0
FbLV    0    0    2    Failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> instance, your level is insufficient    0
TeamMatchingJobMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because your Class Rank doesn't meet requirements    0
TeamMatchingJobAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06ff>%s1</color>'s Class Rank doesn't meet requirements    0
TeamEnterJobMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because your Class Rank is insufficient    0
TeamEnterJobAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color>'s Class Rank is insufficient    0
SingleEnterJob    0    0    2|20    Failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance, insufficient Class Rank    0
TeamMatchingTicketMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed due to insufficient Passes    0
TeamMatchingTicketAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06ff>%s1</color> has insufficient Pass    0
TeamEnterTicketMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because you have insufficient Passes    0
TeamEnterTicketAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color> has insufficient Pass    0
GeRen_chenxin_157069    0    0    2|20    Failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> instance, insufficient pass    0
TeamMatchingDeadMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because you are dead    0
TeamMatchingDeadAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06ff>%s1</color> has died    0
TeamEnterDeadMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because you are already Dead    0
TeamEnterDeadAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color> has died    0
SingleEnterDead    0    0    2|20    Failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance, you are already Dead    0
TeamMatchingBossMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because you are currently fighting a BOSS    0
TeamMatchingBossAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06ff>%s1</color> is fighting a BOSS    0
TeamEnterBossMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> instance because you are currently fighting a BOSS.    0
TeamEnterBossAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color> is currently fighting a BOSS    0
SingleEnterBoss    0    0    2|20    You failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because you are currently fighting a BOSS    0
TeamMatchingPKMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because you are currently in PK    0
TeamMatchingPKAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06ff>%s1</color> is currently in PK    0
TeamEnterPKMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because you are currently in PK    0
TeamEnterPKAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color> is currently in PK    0
TeamMatchingSITMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because you are meditating    0
TeamMatchingSITAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06ff>%s1</color> is meditating    0
TeamEnterSITMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because you are in Meditation    0
TeamEnterSITAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color> is in Meditation    0
SingleEnterPK    0    0    2|20    Failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because you are currently in PK    0
TeamMatchingGatherMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because you are currently gathering    0
TeamMatchingGatherAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06ff>%s1</color> is currently gathering    0
TeamEnterGatherMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because you are currently gathering    0
TeamEnterGatherAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color> is currently gathering.    0
SingleEnterGather    0    0    2|20    Failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance, you are currently gathering    0
TeamMatchingDungeonMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because you are currently in an Instance    0
TeamMatchingDungeonAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06ff>%s1</color> is in an Instance    0
TeamEnterDungeonMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because you are already in an Instance    0
TeamEnterDungeonAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color> is in an Instance    0
SingleEnterDungeon    0    0    2|20    Failed to enter <color=#12a199ff><Word info="Map ID=%s0"/></color> Instance, you are already in an Instance    0
TeamMatchingDefaultMe    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because you do not meet the entry Requirements    0
TeamMatchingDefaultAll    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06ff>%s1</color> doesn't meet the entry requirements    0
TeamEnterDefaultMe    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because you do not meet the entry requirements    0
TeamEnterDefaultAll    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color> does not meet the entry Requirements    0
SingleEnterDefaul    0    0    2    Failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance, you do not meet the entry requirements    0
TeamMatchingSucceed    0    0    2    Match found!    0
TeamEnterForbid    0    0    2    Cannot execute other operations while preparing for the instance!    0
TeamEnterFailed    0    0    2|20    <color=#109d06FF>%s0</color> rejected the Instance request, failed to enter Instance    0
DungeonGroupOnlyTeamLeader    0    0    2    Only the Team Leader can initiate a team to enter    0
DungeonGroupAutoOnlyLeader    0    0    2    Only the Team Leader can initiate Auto-Matchmaking while in a team    0
DungeonGroupNoSingleIn    0    0    2    You're in a team and can't enter the dungeon solo    0
TeamInviteSuccess    0    0    2    Party invite sent successfully    0
TeamAskSuccess    0    0    2    Application to join team sent successfully    0
AutoMatchingNoTarget    0    0    2    Unable to Auto-Matchmake: No Team Target Selected    0
AutoMatchingCannotChangeTarget    0    0    2    Auto-Matchmaking in progress, unable to change team target    0
AutoMatchingCannotJoinTeam    0    0    2    Team is Full, Auto-Matchmaking unavailable    0
AcceptTeamLost    0    0    2|41    The Player already has a team    0
SendWorldMessage    0    0    2|41    World Announcement sent    0
BeginAutoMatching    0    0    2|41    Start Auto-Matchmaking    0
TeamAskLost    0    0    2    Failed to send request. Your level does not match the target team's level.    0
TeamKick    0    0    2|20    You have been kicked out of the team    0
hwj_20170807_1    0    0    2|20    Successfully dismantled, gained <color=#109d06FF>%s0</color><Word info=RichTextMsgReplace Name=MONEY id=%s1/>    0
LostRes    0    0    2    You have lost <Word info=item id=%s0/></color><color=#00ADE0FF>%s1 piece    0
LostMoney    0    0    2    You have lost <color=#109d06FF><Word info=RichTextMsgReplace Name=MONEY id=%s0/>%s1</color>    0
GetMoney    0    0    11    You have obtained <color=#109d06FF><Word info=RichTextMsgReplace Name=MONEY id=%s0/>%s1</color>    0
GetSP    0    0    11    You obtained <color=#109d06FF>%s0</color> Potential Points!    0
GetActivity    0    0    11    You obtained <color=#109d06FF>%s0</color> Activity Points    0
GeRen_lhs_0    0    0    11    You have gained <color=#109d06FF>%s0</color> Cultivation Points!    0
LvErr    0    0    2    Your level is insufficient    0
GeRen_chenxin_143504    0    0    2    You don't have <Word info=item id=%s0/>    0
GeRen_chenxin_676165    0    0    2    You don't have enough <color=#ff0303FF><Word info=RichTextMsgReplace Name=Packet id=%s0/></color> Space!    0
GeRen_chenxin_279029    0    0    2    You were knocked down by <color=#12a199ff><Word info=NPC id=%s0/></color>!    0
RobotKill_1    0    0    2    You were knocked down by <color=#12a199ff><Word ancientRobotName=1 objId=%s0 npcId=%s1/></color>!    0
GoldPaperErr    0    0    2    <color=#ff0303FF>Insufficient Spirit Stones!</color>    0
ObtainRes01    0    0    2    You have obtained <Word info=item ID=%s0/>%s1!    0
SilverErr    0    0    2    Your copper coins count is insufficient!    0
NoOpen_Item    0    0    2    Item <Word info=item id=%s0/> not yet available    0
GeRen_chenxin_21675    0    0    2    You are at full HP, no need to replenish!    0
GeRen_chenxin_913598    0    0    2    Sorry, this item doesn't belong to you!    0
Z_NoFlyItem    0    0    2    Sorry, you don't have enough <Word info=Item ID=954 col=0/> to Teleport    0
GeRen_chenxin_774045    0    0    2    This item cannot be used    0
GeRen_chenxin_988937    0    0    2    Congratulations! %s0 has obtained the Attribute Bonus VIP Exclusive Privilege!    0
GeRen_chenxin_509966    0    0    2    Automatic point allocation failed due to other allocation operations.    0
GetMoney01    0    0    2|20    Sale successful, obtained <color=#109d06FF><Word info=RichTextMsgReplace Name=MONEY id=%s0/>%s1</color>    0
E1B111AE-6A1D-4823-A5016B3ADFF9FC10    0    0    2    Are you sure you want to exit the Event? (Leaving midway will forfeit your Rewards)    0
5AA6955A-9BCE-4AE2-894B3463048320EC    0    0    2    Are you sure you want to exit? (Leaving midway will be considered a failed Clear Stages)    0
Z_LackOfMoney    0    0    2    Insufficient Immortal Jade to claim double rewards    0
RideLimit_lhs_0    0    0    2    This map does not allow mounts!    0
GeRen_liubo_671654    0    0    2    Inventory expanded successfully.    0
GeRen_mx_697674    0    0    2    You cannot use the teleport feature in your current map. Teleport failed.    0
PK_liubo_827276    0    0    2    Unable to attack. There are obstacles between you and the target.    0
Market_Price_Null    0    0    2    Item Selling Price Cannot Be Empty    0
NoEnoughMoney1    0    0    2    Insufficient Immortal Jade    0
MarketCannotSell    0    0    2    This item cannot be traded    0
HaveBody    0    0    2    This spot's taken, can't sit here. Find another place!    0
NotAttackable    0    0    2|20    Cannot attack players who are in meditation    0
GeRen_lhs_272921    0    0    2    This item cannot be sold!    0
GeRen_wjr_717982    0    0    2|20    The required skill <color=#006be3FF><Word info=Skill ID=%s0/></color> must reach <color=#ff0303FF>Level %s1</color>    0
BourseBagfull    0    0    2    Inventory space insufficient, unable to purchase.    0
BoursePasswordError    0    0    2|20    Password error, unable to purchase    0
LvUp_Get_Task    0    0    2    Level Enhanced, you have new Quests available.    0
GeRen_liubo_309847    0    0    2    No equipment available for One-Click Sell    0
XW_JZ_AppointFamily    0    0    2    <color=#109d06FF>%s0</color> has been appointed as <color=#ff6701FF><Word info=RichTextMsgReplace Name=FAMILY id=%s1/></color>!    0
VipCard    0    0    2    Purchase exceeds Max VIP Days Restriction    0
LackMoney    0    0    2    Your <color=#fa1010><Word info=RichTextMsgReplace Name=MONEY id=%s0/> is insufficient</color>, unable to proceed with the Operation!    0
LackXBMoney    0    0    2    Your <color=#fa1010><Word info=RichTextMsgReplace Name=MONEY id=%s0/> is insufficient</color>, unable to exchange!    0
HookPrompt_Automatic    0    0    2    Restore AFK    0
HookPrompt_Manual    0    0    2    Pause AFK, enter Manual Mode    0
NoFighting    0    0    2    Prohibit battle in the Safe Zone    0
MapInfo1    0    0    2    Zone Map is unavailable on this map.    0
GeRen_chenxin_436832    0    0    2    Unable to change gear in current status!    0
WingWash_3    0    0    2    Wings have been perfectly refined!    0
Join_Space_Lost    0    0    2    It's not time for the Event.    0
FuncLimit_Level    0    0    2    Level insufficient, unable to activate feature    0
FuncLimit_Treasure    0    0    2    Corresponding Magic Artifact for this feature has not been collected.    0
UnLock_TreasureLimit    0    0    2    Activate <color=#fa1010>%s0</color> to view    0
FuncLimit_Realm    0    0    2    Realm Level insufficient, unable to activate feature    0
Map_Delivery    0    0    2    Map currently locked, unable to teleport! (Maps can be unlocked through Main Quest)    0
MapType_ATK1    0    0    2    Entering neutral zone, automatically switches to <color=#FF0303FF>Forced Mode</color>    0
MapType_ATK2    0    0    2    Entering the Server high-risk defense zone, auto-switch to <color=#FF0303FF>DEFENSE MODE</color>    0
GuardianHuang0    0    0    32    The Demon Clan's army has arrived at the Battlefield. Attack begins.    0
GuardianHuang1    0    0    32    <color=#12a199ff><Word info=NPC ID=%s0/></color> Attack, this monster will deal massive damage to Guards and the Human Emperor. Kill it quickly.    0
GuardianHuang2    0    0    32    BOSS<color=#12a199ff><Word info=NPC ID=%s0/></color> intends to disrupt the Human Emperor's Pill Alchemy. Return to defend immediately!    0
GuardianHuang3    0    0    32    <color=#12a199ff><Word info=NPC ID=%s0/></color> Ambush! This monster will deal explosive damage to the Human Emperor. Kill it quickly.    0
PersonalBoss_LevelLimit    0    0    2    You must reach Level <color=#ff0303ff>%s0</color> to challenge this BOSS    0
NoReceiveMessage    0    0    2    Target: Client did not receive a death packet for %s0 within 1 second after %s0's death.    0
RuneBagFull    0    0    2    Your <color=#ff0303ff>Sigil Inventory</color> is Full, please clear it promptly    0
SkillBtn_CD    0    0    2    <color=#FF0303FF>Skill is on cooldown</color>    0
PK_admin_0    0    0    2    <color=#FF0303FF>Warning: You are under attack!</color>    0
PK_lhs_318691    0    0    2|20    You were knocked down by player <color=#109d06ff>%s0</color>!    0
GeRen_chenxin_740826    0    0    2    You cannot perform this operation in your current status    0
KaiQi_Map    0    0    2    Magic Artifact <color=#006be3FF>Ghost Fang Blade</color> has not been unsealed, feature cannot be activated.    0
FB_liubo_54470    0    0    5|20    <color=#109d06FF>%s0 minutes</color> later you can enter <color=#12a199><Word info=Map ID=%s1/></color>, please prepare!    0
GeRen_chenxin_998371    0    0    2    Your <color=#ff0303ff>inventory</color> is full, please clear your inventory.    0
GeRen_chenxin_805889    0    0    0    Target is too far away; failed to loot item.    0
PassSkillSameError    0    0    2    This skill already exists in the current skill page    0
SetPassEquipPageSuccess    0    0    2    Equipped Skill Page %s0    0
PassEquipLimitLevel    0    0    2    Player reaches <color=#fa1010>Level %s0</color> to Activate    0
WingTiyan_Timeout    0    0    2    At level 180, activate wings synthesis. Level up fast~    0
Item_Effect_Max    0    0    2|20    Unable to use item, effect stack limit is %s hours!    0
OfflinePluginTime    0    0    2    Use failed, offline AFK time has reached the limit    0
PK_liubo_500807    0    0    2    Sorry, you've switched game servers too frequently. Please try again later!    0
GeRen_admin_31379    0    0    4|20    Congratulations! You've upgraded <color=#006be3FF><Word info=Skill ID=%s0/></color> to Level <color=#109d06FF>%s1</color>!    0
GeRen_liubo_471172    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for clearing <Word info=runetower id=%s1/>, unlocking the new rune <color=#109d06FF><Word info=towernewrune id=%s1/></color>. Now, head to the new Rune Tower and take on the challenge!    0
RuneTowerInfo_1    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for clearing <Word info=runetower id=%s1/>, unlocking new Rune Synthesis Type <color=#109d06FF><Word info=towernewrune id=%s1/></color>, and clearing all Rune Towers!    0
RuneTowerInfo_2    0    0    4|20    Congratulations to %s0 for obtaining <Word info=coloritem id=%s2/> Rune in <color=#109d06FF><Word info=runetowerfloor id=%s1/></color>    0
RuneTowerInfo_3    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for obtaining <Word info=coloritem id=%s2/> Rune during the Raid of <color=#109d06FF><Word info=runetower id=%s1/></color>    0
Map_AtkType    0    0    2    Current map prohibits switching Combat mode    0
DemonJar_Text1    0    0    2    BOSS has not Revived yet, cannot enter    0
DemonJar_Text2    0    0    2    Level too low, unable to challenge    0
DemonJar_Text3    0    0    2    Challenge Attempts are insufficient. Please wait for Attempts to restore or Purchase more Attempts.    0
DemonJar_Text4    0    0    2    Battlefield clearing...    0
DemonJar_Text5    0    0    2    Instance Full    0
GeRen_admin_327925    0    0    2    You have already claimed this reward.    0
GeRen_lhs_202580    0    0    2    Insufficient Inventory space, please clear some space first.    0
Family_ChangeName    0    0    5|32    Guild <color=#ff6701ff>%s0</color> renamed to <color=#ff6701ff>%s1</color>    0
GeRen_liubo_827276    0    0    2|20    Successful use of <Word info=item ID=957/>, reducing red name duration by <color=#109d06FF>%s0</color> hours!    0
PK_Leave    0    0    2    Cannot teleport while in PK status    0
Boss_Leave    0    0    2    Unable to teleport or participate in events during a BOSS battle    0
MoneyIsFull    0    0    2|20    Your <color=#ff0303FF><Word info=RichTextMsgReplace Name=MONEY id=%s0/></color> has exceeded the holding limit, unable to increase further    0
InDungeon_CantGo    0    0    2    You're already in an Instance, unable to travel    0
GeRen_admin_825676    0    0    20    Your current level's cumulative cultivation points have reached the limit. Unable to obtain cultivation points!    0
jiazu_hwj35_367906    0    0    2|32    Sorry, the player you invited to join the alliance has gone offline!    0
XW_ZZ_ResInvalidation    0    0    2    Target already has a more powerful effect, item use ineffective!    0
StrengthenLevelBroadCast    0    0    2    Congratulations to player <color=#109d06ff>%s0</color> for enhancing <a><Word info=item ID=%s1/>|showitem=%s1 userdata=%s2 guid=%s3</a></color> to Enhancement Level <color=#109d06ff>%s4</color>    0
AtkModeErr    0    0    2    PK not allowed in Current Mode    0
PK_lhs_861048    0    0    2    Unable to attack teammates!    0
TodayNoDungeonReward    0    0    2    Today's instance attempts exhausted, no regular instance rewards    0
AssistantIntegral    0    0    2|41    Support Battle Instance, obtain %s0 Support Battle Points    0
AssistantIntegralFull    0    0    2|41    Acquirable Support Battle Points limit reached.    0
PK_pan_31379    0    0    4    <color=#109d06ff>%s0</color> had a trial in <color=#12a199ff><Word info=Map ID=%s1/></color> and defeated 【<color=#ff6701ff>%s2</color>】<Word info=RichTextMsgReplace Name=FAMILY id=%s3/><color=#109d06>%s4</color>    0
PK_pan_861048    0    0    4    <color=#109d06>%s0</color> kept the momentum going and defeated 【<color=#ff6701ff>%s2</color>】<Word info=RichTextMsgReplace Name=FAMILY id=%s3/><color=#109d06>%s4</color> again in <color=#12a199ff><Word info=Map ID=%s1/></color>    0
PK_pan_202580    0    0    5|20    <color=#109d06>%s0</color> crushed through and defeated 【<color=#ff6701ff>%s2</color>】<Word info=RichTextMsgReplace Name=FAMILY id=%s3/><color=#109d06>%s4</color> in <color=#12a199ff><Word info=Map ID=%s1/></color>    0
PK_pan_272921    0    0    5|20    <color=#109d06>%s0</color> showcased their Divine Skill, accumulating ten times Defeating [<color=#ff6701ff>%s2</color>] <Word info=RichTextMsgReplace Name=FAMILY id=%s3/><color=#109d06>%s4</color> in <color=#12a199ff><Word info=Map ID=%s1/></color>    0
PK_pan_671654    0    0    32    <Word info=RichTextMsgReplace Name=FAMILY id=%s0/><color=#109d06>%s1</color> was defeated by [<color=#ff6701ff>%s3</color>] <Word info=RichTextMsgReplace Name=FAMILY id=%s4/><color=#109d06>%s5</color> in <color=#12a199ff><Word info=Map ID=%s2/></color>. Come to support us, brothers! <color=#109d06><a>Go to support|FindPlayer=1 mapId=%s2 x=%s6 y=%s7 line=%s8</a></color>    0
PK_pan_318691    0    0    32    <Word info=RichTextMsgReplace Name=FAMILY id=%s0/><color=#109d06>%s1</color> was defeated in <color=#12a199ff><Word info=Map ID=%s2/></color> by <color=#ff6701ff>%s3</color>. Brothers, hurry up and support! <color=#109d06><a>Go support | FindPlayer=1 mapId=%s2 x=%s4 y=%s5 line=%s6</a></color>    0
jiazu_chenxin_272921    0    0    2|32    Guild Level Up Succeeded, Consume Contribution <color=#109d06ff>%s0</color>    0
AlreadyInTeam    0    0    2|41    You're already in this team!    0
PK_lhs_202580    0    0    2    Sir, your sins are too great, you can no longer attack others!    0
MakerDrug101    0    0    2    Insufficient Pill Materials, unable to perform alchemy    0
MakerDrug102    0    0    2    Insufficient special materials, unable to perform Pill Alchemy    0
WingComposeSuccess1    0    0    4    Congratulations to <color=#109d06FF>%s0</color> for successfully merging Lotus Platform <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
WingComposeSuccess2    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for Successfully Synthesizing 2nd Generation Wings <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
WingComposeSuccess3    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for successfully synthesizing Gen 3 Wings <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
WingComposeSuccess4    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for Successfully Synthesizing Fourth-Generation Wings <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
WingComposeSuccess5    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for successfully synthesizing 5th generation Wings <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
EquipComposeSuccess1    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> Successfully Synthesizing Red 2-Star <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
EquipComposeSuccess2    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> Successfully Synthesizing Red 3-Star <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
XianComposeSucces1    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for Successfully Synthesizing Purple 0-Star <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
XianComposeSucces2    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for Successfully Synthesizing Orange Zero-Star <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
XianComposeSucces3    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> Successfully Synthesizing Orange 1-Star <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
XianComposeSucces4    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for Successfully Synthesizing Orange 2-Star <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
XianComposeSucces5    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> Successfully Synthesizing Red 2-Star <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
XianComposeSucces6    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for Successfully Synthesized <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
EquipComposeSuccess7    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for successfully synthesizing Five Elements Equipment <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
EquipComposeSuccess8    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for Successfully Synthesized <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
EquipComposeSuccess9    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for Successfully Synthesizing 1st Tier Thunder Punishment Equipment <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
EquipComposeSuccess10    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for successfully synthesizing 2nd Tier Thunder Punishment Equipment <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
EquipComposeSuccess11    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> Successfully Synthesized 3rd Tier Thunder Punishment Equipment <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
EquipComposeSuccess12    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> Successfully Synthesized 4th Tier Thunder Punishment Equipment <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
FuncNoOpen_Recharge    0    0    2    <color=#ff0303>Level %s0</color> Activate Top-Up    0
ServerDown    0    0    2    Server Maintenance in Progress    0
ServerOpen    0    0    2    Server will Activate at <color=#109d06FF>%s0</color>    0
WingRefineisFull    0    0    2    Refine value is full, unable to select refine materials.    0
NotFightStepCanNotCollect    0    0    2    Cannot gather during non-battle periods    0
CoinTaskReward    0    0    4|20    Congrats to Player <color=#109d06FF>%s0</color> for obtaining 9.99M Copper Coins from Sect Bounties    0
FunctionNotOpen    0    0    2    <color=#ff0303FF>Event %s0</color> must be activated to access the Rankings.    0
GetMount    0    0    20    Path of Immortal Cultivation, one step ahead! Congratulations to <color=#109d06FF>%s0</color> for unlocking the Mount <Word info=item ID=%s1/>!    0
GetMount1    0    0    5|20    Adorable Little Deer, first glimmer of magic! Congratulations to <color=#109d06FF>%s0</color> for unlocking the mount <Word info=item ID=%s1/>    
GetMount2    0    0    5|20    Radiant Moon hangs high, Wolf of the Wilds! Congratulations to <color=#109d06FF>%s0</color> for Unlocking the Mount <Word info=item ID=%s1/>    
GetMount3    0    0    5|20    The power of a thousand pounds, roaring like thunder! Congratulations to <color=#109d06FF>%s0</color> for unlocking the Mount <Word info=item ID=%s1/>    
GetMount4    0    0    5|20    Titan Form, Ancient Ape Descends! Congratulations to <color=#109d06FF>%s0</color> for unlocking the mount <Word info=item ID=%s1/>    
GetMount5    0    0    5|20    Dragon-like Flying Horse, as holy as snow! Congratulations <color=#109d06FF>%s0</color> for unlocking the Mount <Word info=item ID=%s1/>    
GetMount6    0    0    5|20    In the Northern Sea swims a fish, named Kun! Congratulations to <color=#109d06FF>%s0</color> for unlocking Mount <Word info=item ID=%s1/>    
GetMount7    0    0    5|20    The cycle of Hell turns, Asura transforms into a tiger! Congratulations to <color=#109d06FF>%s0</color> for unlocking Mount <Word info=item ID=%s1/>    
GetMount8    0    0    5|20    A celestial phenomenon, a Gourd Creature appears! Congratulations to <color=#109d06FF>%s0</color> for unlocking the Mount <Word info=item ID=%s1/>!    
GetMount9    0    0    5|20    Wildfire Ignites, Inferno Unleashed! Congratulations to <color=#109d06FF>%s0</color> for Unlocking Mount <Word info=item ID=%s1/>    
GetMount10    0    0    5|20    Rising Sun's Pride, King of Birds! Congratulations to <color=#109d06FF>%s0</color> for Unlocking Mount <Word info=item ID=%s1/>    
GetMount11    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for unlocking the Mount <Word info=item ID=%s1/>!    
GetMount12    0    0    5|20    As swift as a rainbow, with a body of white jade! Congratulations to <color=#109d06FF>%s0</color> for unlocking the Mount <Word info=item ID=%s1/>    
GetMount13    0    0    5|20    Auspicious Clouds accompany you, traveling a thousand miles a day! Congratulations to <color=#109d06FF>%s0</color> for unlocking the mount <Word info=item ID=%s1/>    
GetMount14    0    0    5|20    Bring in wealth and fortune, lucky spirit cat! Congratulations to <color=#109d06FF>%s0</color> for unlocking Mount <Word info=item ID=%s1/>    
GetMount15    0    0    5|20    Adorably clumsy, Spirit of the Forest! Congratulations to <color=#109d06FF>%s0</color> for unlocking the Mount <Word info=item ID=%s1/>!    
GetMount16    0    0    5|20    Year of the Pig companion, the Auspicious Beast arrives! Congratulations to <color=#109d06FF>%s0</color> for unlocking the Mount <Word info=item ID=%s1/>    
GetPet    0    0    5|20    Mechanical squirrel, grand ambitions! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info="pet" ID="%s1"/>    0
GetPet1    0    0    5|20    Clever Fox Spirit, adorably clumsy! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet2    0    0    20    Extreme Ice Jade, shapeshifting into a demon wolf! Congratulations to <color=#109d06FF>%s0</color> for Unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet3    0    0    20    Untamed and defiant, Soul-subduing Underworld General! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet4    0    0    5|20    Vajra body, Heaven-battling Giant Ape! Congratulations to <color=#109d06FF>%s0</color> for Unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet5    0    0    5|20    Celestial Stone nurtures, Heaven and Earth transformed! Congratulations to <color=#109d06FF>%s0</color> for Unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet6    0    0    5|20    Primal Ice and Fire, avatar of Soul! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet7    0    0    5|20    Forest bamboo cat, rock 'n' roll rules! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet8    0    0    5|20    Terraverde Flame Beast, Blazing Rebirth into a demon! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet9    0    0    5|20    Soul Reaping, Hell's Fury! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet10    0    0    5|20    Tiger born with wings, fury of Jiuli! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet11    0    0    5|20    Oasis Land, mischievous Elf! Congratulations to <color=#109d06FF>%s0</color> for unlocking <Word info=pet ID=%s1/>    
GetPet12    0    0    5|20    Desert Badlands, Nightmare Scorpion! Congratulations <color=#109d06FF>%s0</color> on unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet13    0    0    20    Journey through the Three Realms with a cute Pet Spirit! Congrats to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet14    0    0    5|20    Ancient stone, Avatar of a Giant Beast! Congratulations to <color=#109d06FF>%s0</color> for unlocking pet spirit <Word info=pet ID=%s1/>    0
GetPet15    0    0    5|20    Mystical Bamboo Grove, Valiant Panda! Congratulations to <color=#109d06FF>%s0</color> for Unlocking Pet Spirit <Word info=pet ID=%s1/>    0
GetPet16    0    0    5|20    Tsundere Manatee, skilled in martial arts! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet <Word info=pet ID=%s1/>    
GetPet17    0    0    5|20    Deep Sea Merfolk, elusive as ever! Congratulations <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet18    0    0    5|20    Heaven-sent Commander, master of wind and thunder! Congratulations to <color=#109d06FF>%s0</color> for Unlocked Pet Spirit <Word info=pet ID=%s1/>    0
GetPet19    0    0    5|20    Heart ablaze like a raging inferno, the Blazing Sword God! Congratulations to <color=#109d06FF>%s0</color> for unlocking <Word info=pet ID=%s1/>    
GetPet20    0    0    5|20    Brutal and ruthless, the two-faced tyrant! Congratulations to <color=#109d06FF>%s0</color> for unlocking the Spirit Pet <Word info=pet ID=%s1/>    
GetPet21    0    0    5|20    Jiao of the Thunder Pool, aspiring to become a Dragon! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet22    0    0    5|20    Sword edge like jade, forever by my side! Congratulations to <color=#109d06FF>%s0</color> on Unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet23    0    0    5|20    Fleeting reflections, frolicking water dragon! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet24    0    0    5|20    Auspicious omen, spirit summons fortune! Congratulations to <color=#109d06FF>%s0</color> for unlocking Pet Spirit <Word info=pet ID=%s1/>    
GetPet25    0    0    5|20    Commanding presence, striding across mountains and rivers! Congratulations to <color=#109d06FF>%s0</color> for unlocking the Pet Spirit <Word info=pet ID=%s1/>    
GetPet26    0    0    5|20    Path of Immortal Cultivation, accompanied by Pet Spirits! Congratulations to <color=#109d06FF>%s0</color> for Unlocking Pet Spirit <Word info=pet ID=%s1/>    
OfflinePlugSuccess    0    0    2|20    Claim successful. You have gained <color=#109d06FF>%s0 hours</color> of offline AFK time.    0
LVRewardFirst    0    0    4|20    Congratulations to Player <color=#109d06FF>%s0</color> for being the first to take the lead and successfully claiming the Level <color=#109d06FF>%s1</color> Gift Pack!    0
LVReward    0    0    20    Congratulations to Player <color=#109d06FF>%s0</color> for blazing through the levels and claiming the Level <color=#109d06FF>%s1</color> Gift Pack!    0
ChooseMessage    0    0    4|20    Congratulations to player <color=#109d06FF>%s0</color> for activating <Word info=item ID=%s1/> and obtaining <a><Word info=item ID=%s2/>|showitem=%s2 isbind=%s3 itemcnt=%s4 userdata=%s5</a>.    0
AvoidSink01    0    0    20    You are an underage user. For your physical and mental well-being, please control your game time. Accumulated online time <color=#ff0303FF>under 3 hours</color> is considered healthy gaming time; accumulated online time <color=#FF0303FF>of 3 hours or more</color> is considered <color=#FF0303FF>unhealthy gaming time</color>.    0
AvoidSink02    0    0    20    You are an underage user, and your accumulated online time has reached <color=#ff0303FF>%s0 hours</color>. To ensure healthy gaming time and for your physical and mental well-being, please control your gaming time!    0
AvoidSink03    0    0    20    Your accumulated online time has reached <color=#FF0303FF>%s0 Hours</color>, which is unhealthy gaming time. Your game rewards will be reduced to <color=#FF0303FF>0</color>. For your physical and mental well-being, please log off soon to rest, engage in appropriate physical activities, and plan your studies and daily life responsibly.    0
AvoidSink05    0    0    20    Your current accumulated online time has exceeded <color=#FF0303FF>%s0 hours</color>, entering <color=#FF0303FF>unhealthy gaming time</color>. For your health, please log off immediately to rest. If you don't log off, your health will be at risk; your reward has been reduced to zero and will only return to normal after you've accumulated 5 hours of offline time.    0
AvoidSink09    0    0    20    You are an underage user currently in the Anti-Addiction System stage. In-Game rewards are reduced to <color=#FF0303FF>0</color>    0
BUGSubmit    0    0    2    Submission success, thank you for your valuable feedback!    0
BUGSubmitCoolTime    0    0    2    Sorry, you can't submit again within 1 minute!    0
TreasureUnsealed    0    0    2    Unseal this Magic Artifact to activate its Skill Enhancement!    0
ElderBattlefieldGetBuff    0    0    2    Obtain <color=#006be3FF>%s0</color> buff bonus    0
DelBlackSuccess    0    0    2    Blacklist removal successful.    0
PlayerInDaZuo    0    0    2    Currently in Meditation status, unable to proceed!    0
EquipSuit5    0    0    4|20    Congratulations to player <color=#109d06FF>%s0</color> for activating %s1 Piece <color=#109d06FF>%s2nd Tier</color> <Word info=RichTextMsgReplace Name=GroupType id=%s3/><Word info=RichTextMsgReplace Name=SuiteType id=%s4/> set    0
PKFuHuo    0    0    2    The target is currently invincible and under protection, attack is ineffective!    0
NoEnoughRealmSitItem    0    0    2    Insufficient Inner Demon Lantern to Meditate!    0
NocturnalProtection    0    0    2    Night Protection active, unable to deal damage to target!    0
DailyQuestwinUnionLimit    0    0    2    You haven't joined a Guild yet!    0
WingsRefinePerfect    0    0    5|20    Congratulations to player <color=#109d06>%s0</color> for refining <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a> to perfection! Divine Wings have descended!    0
ElixirUsedMax    0    0    2    <Word info=item ID=%s1/> has reached the usage Limit and cannot be used further    0
WashCongratulation    0    0    20    Congratulations to player <color=#109d06ff>%s0</color> for reaching Refinement Level <color=#109d06ff>%s4</color> of <color=#109d06ff><a><Word info=item ID=%s1/>|showitem=%s1 userdata=%s2 guid=%s3</a></color>!    0
WashMasterCongratulation    0    0    5|20    Congratulations to player <color=#109d06FF><a>%s0|showplayer=%s1</a></color> for enhancing all <color=#109d06ff><Word info=RichTextMsgReplace Name=WashSuitType id=%s2/></color> slots to Refinement Level <color=#109d06ff>%s3</color>, activating Master Attributes    0
PersonalBoss_VipLimit    0    0    2    VIP4 Activate Exclusive Personal BOSS    0
FairyRequested    0    0    2    Guild application already requested, please wait patiently.    0
StrengthenCongratulation    0    0    20    Congratulations to player <color=#109d06ff>%s0</color> for enhancing <a><Word info=item id=%s1/>|showitem=%s1 userdata=%s2 guid=%s3</a> to Level <color=#109d06ff>%s4</color>    0
EverydayUseLimit    0    0    2    Daily usage limit reached.    0
SignInText    0    0    2|20    Check-in successful! You've earned rewards based on your VIP Level.    0
SignInText1    0    0    2    Check-In successful. Due to the special effect of Magic Artifact: <color=#109d06ff><Word info=treasure id=%s0/></color>, you have gained <color=#109d06ff>%s2 points</color> in <color=#109d06ff><Word info=Property id=%s1/></color>.    0
SignInText2    0    0    2    Check-In successful. Due to the special effect of Pet Spirit Skill: <color=#109d06ff><Word info=skill id=%s0/></color>, <color=#109d06ff><Word info=Property id=%s1/></color> increased by <color=#109d06ff>%s2 points</color>.    0
AchievementLVLimit    0    0    2    Level below %s0, unable to trigger Hidden Story Quest    0
FurnaceLVUp    0    0    20    Congratulations to player <color=#109d06FF>%s0</color> for reaching Pill Alchemy Level <color=#109d06FF>%s1</color>, unlocking <color=#006be3FF><Word info=Alchemy id=%s2/></color>.    0
UseCntLimit    0    0    2    Attempts have exceeded the Max Limit    0
UseElixirHint    0    0    2    Use of <Word info=item ID=%s0/> successful, Obtain <color=#109d06FF><Word exp=%s1/></color> Cultivation Points    0
UseLVLimit    0    0    2    Unable to use Item: Level restriction exceeded.    0
UseItem1    0    0    2    Use of <Word info=item ID=%s0/> successful, <Word info=buffDesc id=%s1/>, Increase <Word Time=%s2/>    0
UseItem2    0    0    2    Use of <Word info=item ID=%s0/> successful, obtained <color=#109d06FF>%s1</color> hours of offline AFK duration    0
FuncNoOpen_Nowaday    0    0    2    The current Version does not support the Top-Up feature    0
FuncNoOpen_VIP    0    0    2    The VIP functionality is not available in the current version.    0
DungeonNoGO    0    0    2    You're already in an instance, unable to travel to other maps    0
WashPoint    0    0    2    This attribute has no reset attribute points.    0
WashPoint2    0    0    2    Successful use of <Word info=item ID=%s0/>, reset <color=#109d06FF>%s2 <Word info=Property id=%s1/></color>, <color=#109d06FF>%s3</color> reset points remaining.    0
TheEmperor1    0    0    2    Unable to enter. Your Guild has already cleared this Instance.    0
Carry_lhs_306641    0    0    2    Target location is an instance map, cannot teleport!    0
Carry_hwj35_0    0    0    2    You cannot teleport because you haven't reached the required level to enter this map.    0
Cmwd_CompleteMark    0    0    2    Immortal Master, all Guild Bounties for today have been completed. You can pick up more tomorrow.    0
UnblockTreasure    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining the Magic Artifact <color=#fa1010ff><Word info=treasure id=%s1/></color>! Their Combat Power has surged, making them unstoppable!    0
UnblockTreasure301    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining the Magic Artifact <color=#fa1010ff><Word info=treasure id=%s1/></color>! Activating it unlocks the <color=#109d06ff>Pill Alchemy</color> feature!    0
UnblockTreasure302    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining the Magic Artifact <color=#fa1010ff><Word info=treasure id=%s1/></color>! Once activated, killing monsters has a <color=#109d06ff>20%</color> probability to grant an extra increase of <color=#109d06ff>100%</color> Cultivation Points!    0
UnblockTreasure303    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining the Magic Artifact <color=#fa1010ff><Word info=treasure id=%s1/></color>. Once activated, killing monsters grants an extra <color=#109d06ff>Permanent Attack Power</color> bonus!    0
UnblockTreasure304    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining the Magic Artifact <color=#fa1010ff><Word info=treasure id=%s1/></color>. Upon activation, you will have access to an <color=#109d06ff>Exclusive VIP Skill</color> and a new <color=#109d06ff>Five Elements Mastery</color> will be acquirable!    0
UnblockTreasure305    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining the Magic Artifact <color=#fa1010ff><Word info=treasure id=%s1/></color>. After activation, gain <color=#35e122>3</color> Spirit Root Points per level, growing to a maximum of <color=#35e122>5</color> Spirit Root Points.    0
UnblockTreasure306    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining the Magic Artifact <color=#fa1010ff><Word info=treasure id=%s1/></color>! Once activated, killing monsters increases Cultivation Points by <color=#109d06ff>20%</color>!    0
UnblockTreasure307    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> on obtaining the Magic Artifact <color=#fa1010ff><Word info=treasure id=%s1/></color>. When activated, it permanently increases Character Skill Damage by <color=#109d06ff>10%</color>!    0
UnblockTreasure308    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining the Magic Artifact <color=#fa1010ff><Word info=treasure id=%s1/></color>. When activated, it permanently enhances Character PVP Skill Damage by <color=#109d06ff>20%</color>!    0
WytjReward    0    0    4|20    Congratulations to Player <color=#109d06FF>%s0</color> for rolling six Heavenly Dice during the "I Want Heavenly" Event, obtaining the highest rewards.    0
NOGreatBourn    0    0    2    Unable to set Major Realm Tribulation as team target, as you are not currently in Major Realm Tribulation status.    0
GemComposeFail    0    0    2    Insufficient same-level Gemstones, unable to proceed with synthesis.    0
DemonJarDoubleVip    0    0    2    <size=22><color=#fa1010>VIP %s0 </color></size>Activate Demon Sealing Altar Double Challenge    0
DemonJarDoubleUnEnough    0    0    2    Insufficient Remaining Attempts for Double Challenge, please Purchase Attempts    0
DemonJarAutoVip    0    0    2    <size=22><color=#fa1010>VIP %s0 </color></size>Activate Demon Altar Auto Challenge    
HazyRegionAutoVip    0    0    2    <size=22><color=#fa1010>VIP %s0 </color></size>Activate Ethereal Realm Auto Explore    
HLYYBeforeStart    0    0    5|20    Chaotic Demon Realm will begin in <color=#109d06FF>%s0</color> minutes. Fellow Immortals, please prepare in advance.    0
HLYYStart    0    0    5|20    Chaotic Demon Realm Event begins. Danger lies ahead, Fellow Immortals. Better Party Up before proceeding.    0
XMZZBeforeStart    0    0    5|20    Immortals vs. Demons War will begin in <color=#109d06FF>%s0</color> minutes. Fellow Immortals, please prepare in advance    0
XMZZStart    0    0    5|20    Immortals vs. Demons Event begins! Fellow Immortal, go forth and compete.    0
GetGodWeapon    0    0    20    Congratulations to <color=#109d06ff>%s0</color> for Unseal <color=#109d06ff><Word info=GodWeapon type=%s1/></color>    0
GetGodWeapon2    0    0    5|20    Critical Strike Divine Weapon, unstoppable force! Congratulations to <color=#109d06ff>%s0</color> for Successfully Activating <color=#109d06ff><Word info=GodWeapon type=%s1/></color>. The Critical Strike Divine Weapon increases the character's rare Critical Hit Probability and Critical Damage, along with Ultimate Divine Weapon Skills.    
GetGodWeapon1    0    0    5|20    Divine Weapon, unstoppable! Congratulations to <color=#109d06ff>%s0</color> for Successfully Activating <color=#109d06ff><Word info=GodWeapon type=%s1/></color>. Enhancing the Divine Weapon's Rank significantly boosts Attack Power!    
GetGodWeapon3    0    0    5|20    Divine Weapon of Health, Immortal and Indestructible! Congratulations to <color=#109d06ff>%s0</color> for successfully activating <color=#109d06ff><Word info=GodWeapon type=%s1/></color>. Enhancing the Divine Weapon of Health's rank can significantly boost your HP!    
GetGodWeapon4    0    0    5|20    Shield Divine Weapon, defend against all things! Congratulations to Player <color=#109d06ff>%s0</color> for Successfully Activating <color=#109d06ff><Word info=GodWeapon type=%s1/></color>. The Shield Divine Weapon grants the player a rare shield attribute!    
GetMagicEffect1    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for forging their Divine Critical Hit Weapon to <color=#109d06ff>%s1</color> tier!    
GetMagicEffect2    0    0    5|20    Dashing Hero, aspiring to conquer the world! Congratulations to <color=#109d06ff>%s0</color> for forging their Divine Critical Strike Soldier to <color=#109d06ff>%s1</color> tier!    
GetMagicEffect3    0    0    5|20    Legendary Charisma, Renowned Across the Three Realms! Congratulations to <color=#109d06ff>%s0</color> for Forging the Divine Critical Strike Weapon to <color=#109d06ff>%s1</color> tier!    
GetMagicEffect4    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for forging their Divine Weapon of Health to <color=#109d06ff>%s1</color> Tier! <color=#109D06FF><a>Check it out now|openui=260</a></color>    
GetMagicEffect5    0    0    5|20    Dashing Hero, with ambition across the realms! Congratulations to <color=#109d06ff>%s0</color> for forging their Divine Weapon of Health to <color=#109d06ff>%s1</color> Tier! <color=#109D06FF><a>Check it out now|openui=260</a></color>    
GetMagicEffect6    0    0    5|20    Legendary Charisma, Renowned Across the Three Realms! Congratulations to <color=#109d06ff>%s0</color> for forging their Divine Weapon of Health to <color=#109d06ff>%s1</color> tier! <color=#109D06FF><a>Check it out now|openui=260</a></color>    
GetMagicEffect7    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for Forging their Divine Attack Weapon to <color=#109d06ff>%s1</color> tier! <color=#109d06ff><a>Check it out now|openui=261</a></color>    
GetMagicEffect8    0    0    5|20    Dashing Hero, Ambition Spans the World! Congratulations to <color=#109d06ff>%s0</color> for Forging their Divine Attack Weapon to <color=#109d06ff>%s1</color> tier! <color=#109D06FF><a>Check it out now|openui=261</a></color>    
GetMagicEffect9    0    0    5|20    Legendary Charisma, Renowned Across the Three Realms! Congratulations to <color=#109d06ff>%s0</color> for Forging their Divine Attack Weapon to <color=#109d06ff>%s1</color> tier! <color=#109D06FF><a>Check it out now|openui=261</a></color>    
GetMagicEffect10    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for forging their Shield Divine Weapon to <color=#109d06ff>%s1</color> tier! <color=#109D06FF><a>Check it out now|openui=262</a></color>    
GetMagicEffect11    0    0    5|20    Dashing Hero, with ambition reaching far and wide! Congratulations to <color=#109d06ff>%s0</color> for Forging their Shield Divine Weapon to <color=#109d06ff>%s1</color> tier! <color=#109d06ff><a>Check it out now|openui=262</a></color>    
GetMagicEffect12    0    0    5|20    Legendary Charisma, Renowned Across the Three Realms! Congratulations to <color=#109d06ff>%s0</color> for forging their Shield Divine Weapon to <color=#109d06ff>%s1</color> tier! <color=#109D06FF><a>Check it out now|openui=262</a></color>    
GetMagicSkill1    0    0    5|20    Envy of all! Congratulations to <color=#109d06ff>%s0</color> for forging the Divine Critical Strike Soldier to Tier <color=#109d06ff>%s1</color>, activating Skill <color=#109d06ff><Word info=Skill ID=%s2/></color>. Restores a large amount of Self Health Points on Critical Hit (PVP).    
GetMagicSkill2    0    0    5|20    Winds of change! Congratulations to <color=#109d06ff>%s0</color> for having Forged the Divine Weapon to tier <color=#109d06ff>%s1</color>, activating skill <color=#109d06ff><Word info=Skill ID=%s2/></color>! When a Critical Hit triggers, it reduces enemies' defensive power (PVP).    
GetMagicSkill3    0    0    5|20    Shaking the Three Realms! Congrats to <color=#109d06ff>%s0</color> for Forging the Divine Critical Strike Weapon to <color=#109d06ff>%s1</color> stage, Activating the Powerful Skill <color=#109d06ff><Word info=Skill ID=%s2/></color>. Extra massive Critical Rate boost when fighting Players with low HP (PVP).    
GetMagicSkill4    0    0    5|20    Shaking the ages! Congratulations to <color=#109d06ff>%s0</color> for Forging the Divine Critical Strike Soldier to Tier <color=#109d06ff>%s1</color>, Activating Ultimate Skill <color=#109d06ff><Word info=Skill ID=%s2/></color>! When triggered, it can inflict an extra Level 1 Stun Effect when landing a Critical Hit (PVP)!    
GetMagicSkill5    0    0    4|20    Envy of all! Congratulations to <color=#109d06ff>%s0</color> for Forging their Divine Weapon of Health to Tier <color=#109d06ff>%s1</color>, activating the Powerful Skill <color=#109d06ff><Word info=Skill ID=%s2/></color>. When triggered, it significantly boosts the character's Max HP (PVP).    
GetMagicSkill6    0    0    5|20    Envy of all! Congratulations to <color=#109d06ff>%s0</color> for forging their Divine Weapon of Health to Tier <color=#109d06ff>%s1</color>, activating the powerful skill <color=#109d06ff><Word info=Skill ID=%s2/></color>. Significantly boosts the character's damage reduction (PVP).    
GetMagicSkill7    0    0    5|20    Shocking all ages! Congratulations to <color=#109d06ff>%s0</color> for Forging their Divine Weapon of Health to Tier <color=#109d06ff>%s1</color>, activating the Ultimate Skill <color=#109d06ff><Word info=Skill ID=%s2/></color>! This allows the character to absorb and restore damage taken in battle (PVP)!    
GetMagicSkill8    0    0    4|20    Envy of all! Congrats to <color=#109d06ff>%s0</color> for Forging the Divine Attack Weapon to Tier <color=#109d06ff>%s1</color>, Activating Skill <color=#109d06ff><Word info=Skill ID=%s2/></color>! When triggered, significantly boosts Character's Attack Power (PVP).    
GetMagicSkill9    0    0    5|20    Shaking the Three Realms! Congrats to <color=#109d06ff>%s0</color> for Forged the Divine Weapon to Tier <color=#109d06ff>%s1</color>, Activating Powerful Skill <color=#109d06ff><Word info=Skill ID=%s2/></color>, significantly boosting Character Damage (PVP).    
GetMagicSkill10    0    0    5|20    Shocking all ages! Congrats to <color=#109d06ff>%s0</color> for Forging the Divine Attack Soldier to Tier <color=#109d06ff>%s1</color>, Activating Ultimate Skill <color=#109d06ff><Word info=Skill ID=%s2/></color>, a powerful AoE Stun ability (PVP)!    
GetMagicSkill11    0    0    4|20    Envy of all! Congrats to <color=#109d06ff>%s0</color> for Forging the Shield Divine Weapon to Tier <color=#109d06ff>%s1</color>, Activating Skill <color=#109d06ff><Word info=Skill ID=%s2/></color>! Removes all Debuff Statuses when triggered (PVP).    
GetMagicSkill12    0    0    5|20    Shaking the Three Realms! Congratulations to <color=#109d06ff>%s0</color> for forging the Shield Divine Weapon to tier <color=#109d06ff>%s1</color>, activating powerful skill <color=#109d06ff><Word info=Skill ID=%s2/></color>! When triggered, it stuns the target attacking you (PVP).    
GetMagicSkill13    0    0    5|20    Shaking the ages, congratulations to <color=#109d06ff>%s0</color> for having Forged the Shield Divine Weapon to tier <color=#109d06ff>%s1</color>, activating Ultimate Skill <color=#109d06ff><Word info=Skill ID=%s2/></color>, restoring 40% of Self HP when the Shield disappears (PVP)!    
GodWeaponLv    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color> for upgrading <color=#109d06ff><Word info=GodWeapon type=%s1/></color> to tier <color=#109d06ff>%s2</color>.    0
PetUpLv    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color> for taming their Pet Spirit <color=#109d06ff><Word info=Pet id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking the Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>, increasing Combat Power!    0
PetUpLv1    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color> for excellent cultivation! Your Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has been cultivated to Level <color=#109d06ff>%s2</color>, unlocking the Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. Daily check-ins can now enhance additional permanent Health Points, effective upon activation!    
PetUpLv2    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color> for successful cultivation! Your Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has reached Level <color=#109d06ff>%s2</color>, unlocking the skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. When your Pet Spirit attacks other players, it boosts your next attack damage!    
PetUpLv3    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color> for successful cultivation! Your Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has reached Level <color=#109d06ff>%s2</color>, unlocking the Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. Your Pet Spirit can now briefly stun targets with its attacks!    
PetUpLv4    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color> on expert cultivation! Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has been cultivated to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. Each attack now briefly silences the target or reduces their Hit Rate!    
PetUpLv5    0    0    5|20    Congrats to <color=#109d06ff>%s0</color> on their expert cultivation! Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has reached level <color=#109d06ff>%s2</color>, unlocking skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. It grants the Master a shield to absorb the next hit when their HP falls below a certain threshold!    
PetUpLv6    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for expert cultivation, raising Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. Briefly boosts Skill Damage to other players when Master's HP drops below a certain threshold!    
PetUpLv7    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for expert cultivation! Your Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has reached Level <color=#109d06ff>%s2</color>, unlocking the Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>, which gives your Pet a temporary attack boost!    
PetUpLv8    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> on expert cultivation! Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has been cultivated up to Level <color=#109d06ff>%s2</color>, unlocking the skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. After the Pet Spirit accumulates 10 attacks, it enhances the Master's next attack's Critical Rate.    
PetUpLv9    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for excellent cultivation, cultivating Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> to <color=#109d06ff>%s2</color> Level and unlocking skill <color=#109d06ff><Word info=Skill ID=%s3/></color>, which reduces damage when the Master's HP is above a certain threshold and they're hit by other players!    
PetUpLv10    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for expert cultivation! Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has been cultivated to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>, which can briefly boost Dodge when the Master's HP is low!    
PetUpLv11    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> on their expert cultivation! Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has been cultivated to Level <color=#109d06ff>%s2</color>, unlocking the skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. It allows the Master's attacks to attach a brief Grievous Wound effect!    
PetUpLv12    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for the successful cultivation of your Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking the skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. After 10 cumulative attacks, your Pet Spirit's next attack will have increased skill damage!    
PetUpLv13    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for top-notch cultivation! Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has been cultivated to <color=#109d06ff>%s2</color> Level, unlocking skill <color=#109d06ff><Word info=Skill ID=%s3/></color>, increasing control immunity duration when rolling in the Cross-Server Arena!    
PetUpLv14    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> on expert cultivation! Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> is cultivated to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. After Pet Spirit accumulates 10 attacks, it greatly enhances the Master's next attack Critical Rate!    
PetUpLv15    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for expert Cultivation! Your Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has reached Level <color=#109d06ff>%s2</color>, unlocking the Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. This Skill allows your Pet Spirit's attacks to significantly reduce the Target's Defense for a short time!    
PetUpLv16    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for expert Cultivation, guiding the Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> to Cultivation to Level <color=#109d06ff>%s2</color> and unlocking the Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>, which allows your Pet Spirit's Attack to greatly reduce the Target's Attack for a short time!    
PetUpLv17    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for expert cultivation! Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has been cultivated to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>, which can temporarily increase the Pet Spirit's attack significantly!    
PetUpLv18    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> on expert cultivation! Pet Spirit <color=#109d06ff><Word info=pet id=%s1/></color> has reached Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. It grants a small chance to block a control effect for the Master at full health in the Cross-Server Arena!    
PetUpLvMax    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for leveling their Pet Spirit <color=#109d06ff><Word info=Pet id=%s1/></color> to Max Level, significantly enhancing their Combat Power!    
MountUpLv    0    0    4|20    Congratulations, <color=#109d06ff>%s0</color> has tamed <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color> and increasing Combat Power!    0
MountUpLv1    0    0    4|20    Congratulations! <color=#109d06ff>%s0</color>'s Skillful Taming raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. Attack Power and Health Points increased for all unlocked Illusion Tier Mounts!    
MountUpLv2    0    0    4|20    Congrats! <color=#109d06ff>%s0</color>'s Skillful Taming raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. It increases Attack Power and HP for all Unlocked Immortal Tier Mounts!    
MountUpLv3    0    0    4|20    Congratulations! <color=#109d06ff>%s0</color>'s Skillful Taming raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. When HP is low, attacks have a small probability to briefly Silence targets (Stackable)!    
MountUpLv4    0    0    4|20    Congratulations! <color=#109d06ff>%s0</color>'s Skillful Taming has raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. Gain slight Damage Reduction when HP falls below a certain threshold.    
MountUpLv5    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color>'s Skillful Taming raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking the Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. Extra damage boost when attacking targets below a certain HP threshold!    
MountUpLv6    0    0    4|20    Congrats! <color=#109d06ff>%s0</color>'s Skillful Taming raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. Master's attacks now have a low probability to temporarily add 5x Mount's Attack as bonus!    
MountUpLv7    0    0    4|20    Congratulations! <color=#109d06ff>%s0</color>'s Skillful Taming has raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>, enabling self to temporarily withstand greatly reduced Critical Damage!    
MountUpLv8    0    0    4|20    Congrats! <color=#109d06ff>%s0</color>'s Skillful Taming raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. When Master triggers a Critical Hit, it can now Stun the Target as an extra Effect!    
MountUpLv9    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for Skillful Taming! Your Mount <color=#109d06ff><Word info=mount id=%s1/></color> has reached Level <color=#109d06ff>%s2</color>, unlocking the Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. When the Master's Health Points fall below a certain threshold, the next hit will be reduced to 1!    
MountUpLv10    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for Skillful Taming! Mount <color=#109d06ff><Word info=mount id=%s1/></color> has reached Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. When Master's HP falls below a certain threshold, Critical Damage is doubled for a short time!    
MountUpLv11    0    0    5|20    Congratulations! <color=#109d06ff>%s0</color>'s Skillful Taming raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. Significantly boosts self's Skill Damage when Health Points fall below 50%.    
MountUpLv14    0    0    5|20    Congratulations! <color=#109d06ff>%s0</color>'s Skillful Taming has raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. When the Master's HP falls below a certain threshold, Defense is greatly enhanced for a short time!    
MountUpLv16    0    0    5|20    Congratulations, <color=#109d06ff>%s0</color>, on your Skillful Taming, raising your Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color> and unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>! This increases Attack Power and Health Points for all your unlocked Divine Tier Mounts!    
MountUpLv13    0    0    5|20    Congratulations! <color=#109d06ff>%s0</color>'s Skillful Taming raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. Block a Stun to continuously restore HP per second for a short time!    
MountUpLv23    0    0    5|20    Congratulations! <color=#109d06ff>%s0</color>'s Skillful Taming raised Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking the Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>, Master's attacks gain 50% of Mount's Attack Power as bonus for a short time!    
MountUpLv25    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for Skillful Taming! The mount <color=#109d06ff><Word info=mount id=%s1/></color> has been tamed to Level <color=#109d06ff>%s2</color>, unlocking the skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. When damaged by other players, it slightly reduces damage for a short time!    
MountUpLv27    0    0    5|20    Congratulations <color=#109d06ff>%s0</color> for Skillful Taming, taming Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Level <color=#109d06ff>%s2</color> and unlocking Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. When HP falls below a certain value, Skill Damage dealt to Other Players greatly increases for a short time!    
MountUpLv29    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for Skillful Taming! Your Mount <color=#109d06ff><Word info=mount id=%s1/></color> has reached Level <color=#109d06ff>%s2</color>, unlocking the Skill <color=#109d06ff><Word info=Skill ID=%s3/></color>. When HP falls below a certain threshold, greatly increase Crit Damage for 5 seconds!    
MountUpLvMax    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for taming their Mount <color=#109d06ff><Word info=mount id=%s1/></color> to Max Level, significantly enhancing their Combat Power!    
GetMountSkill    0    0    4|20    Congratulations, <color=#109d06ff>%s0</color>! You've learned the mount skill <color=#109d06ff><Word info=Skill ID=%s1/></color>.    0
DungeoninCoolTime    0    0    2    Instance is currently on <color=#fa1010>cooldown</color>. Please wait for the cooldown to end or spend <color=#fa1010>Immortal Jade</color> to eliminate it before challenging again.    0
RuneTowerNoChalleng    0    0    2    You have <color=#fa1010>Not Attempted</color> any Level yet, unable to Raid    0
LeagueCannotGo1    0    0    2    Your Alliance <color=#fa1010>has ended</color> this Battle. The next Match starts at %s0, be sure to arrive early!    0
LeagueCannotGo2    0    0    2    Your Guild <color=#fa1010>has ended</color> this round of Battle. The next round of the Guild Tournament will begin at %s0    0
LeagueCannotGo3    0    0    2    Your Guild <color=#fa1010>is not qualified</color> for this round of the Guild Tournament this week. Keep up your efforts!    0
LeagueCannotGo4    0    0    2    Your Alliance has a <color=#fa1010>bye</color> this round, unable to enter the Alliance Tournament battlefield    0
LeagueCannotGo5    0    0    2    You don't have a Guild yet. Please <color=#fa1010>join a Guild</color> first to have a chance to participate in the Guild Tournament.    0
LeagueNoFL1    0    0    2    Salary already collected today.    0
LeagueNoFL2    0    0    2    Not a King's Guild member, unable to claim salary    0
FamilyWarFamilyChanged    0    0    2    You left your original Guild in this round of the Tournament and cannot participate in the Guild Tournament with any Guild other than your original one.    0
BagNoItem    0    0    2    No <Word info=item id=%s0/> available    0
Achievement_8    0    0    2    No Divine Weapon Stones available for forging.    0
Achievement_16    0    0    2    Daily Check-In completed. Come back tomorrow.    0
Achievement_21    0    0    2    No items available to list    0
Achievement_36_1    0    0    2    BOSS has not Revived yet, cannot enter    0
Achievement_36_2    0    0    2    Ice Crystal Vein attempts insufficient, please purchase attempts    0
Achievement_44    0    0    2    Insufficient Runes. Challenge the Rune Tower or Daily Raid to obtain Massive Runes.    0
Achievement_45    0    0    2    Insufficient Rune Essence. Challenge the Rune Tower or Daily Raid to obtain massive Rune Essence    0
Achievement_46    0    0    2    Insufficient Celestial Secret Realm attempts. VIP4 can increase purchase attempts    0
Achievement_49    0    0    2    Insufficient attempts for Qilin's Domain. Please purchase attempts.    0
Achievement_51    0    0    2    Insufficient Pill Materials, unable to perform alchemy    0
Achievement_52    0    0    2    Insufficient Activity Points to claim. Complete Daily Quests and Limited-Time Events to earn a large amount of Activity Points.    0
Achievement_54    0    0    2    Insufficient Sect Trial attempts    0
Achievement_60    0    0    2    Insufficient Gemstone Slots, 6th Tier Equipment or VIP6 can increase Gemstone Slots    0
Achievement_63    0    0    2    You have used up all your entries for Nuwa Empress Ruins today, Immortal Master. Come back tomorrow.    0
Achievement_63_2    0    0    2    Eastern Emperor Bell Awakening Activates Nuwa Empress Ruins    0
Achievement_79    0    0    2    This stage's Major Realm Tribulation is not yet active. Continue leveling up or assist Fellow Immortals.    0
Achievement_81_1    0    0    2    Insufficient Celestial Secret Realm attempts. VIP4 can increase purchase attempts    0
Achievement_81_2    0    0    2    BOSS has not Revived yet, cannot enter    0
Achievement_91    0    0    2    Insufficient Potential Points, challenge Nuwa Empress Ruins to obtain a large amount of SP Points    0
Achievement_99    0    0    2    Insufficient Purchase Attempts. VIP4 can increase Purchase Attempts.    0
Achievement_103    0    0    2    Immortal Master's Cultivation is not yet complete, please continue cultivating.    0
Achievement_104    0    0    2    Immortal Master must complete the Tribulation of the current Realm before performing Inner Demon Meditation.    0
Achievement_109    0    0    2    Slot this skill into the skill slot.    0
Achievement_113    0    0    2    Today's Guild benefits have been claimed. Immortal Master, please come back tomorrow.    0
Achievement_125    0    0    2    Ice Crystal Vein attempts insufficient, please purchase attempts    0
AchievementDungeonCompleted    0    0    2    Instance attempts exhausted for today, Immortal. Please try again tomorrow.    0
TreasureSkillUnGet    0    0    2    %s0 Skill not obtained, go to %s1 Magic Artifact Awakening    
TreasurePotentialSelectError    0    0    2    %s0 Skill must reach Level %s1, can enhance %s2 Skill.    
RuneUnlock    0    0    2    Clear <color=#fa1010>%s0</color> to Activate    0
RuneGridUnEnough    0    0    2    Currently can embed up to <color=#109d06ff>%s0</color> Dual Attribute Runes    
GetSkillInfo    0    0    20    Congratulations! You've successfully unlocked the Magic Artifact Skill <color=#109d06ff><Word info=Skill ID=%s0/></color>    0
TreasureItemUnenough    0    0    2    Insufficient unseal materials for Bagua Furnace. Please collect enough materials.    0
TreasureLvUnenough    0    0    2    Character level insufficient, unable to unseal Magic Artifact    0
FunNoOpen    0    0    2    This feature is not available in the current version!    0
SkillSelectedTarget    0    0    2    Casting this skill requires a selected target    0
DemonJarLvChallenge    0    0    2    When you reach Level <color=#fa1010>%s0</color>, you can challenge the BOSS.    0
NoPlayerName    0    0    2    Enter Player Name    0
NoneFairy    0    0    2    Currently no Guild, create your own Guild and recruit Fellow Immortals~    0
AncientBattlefield_1    0    0    5|20    Congratulations to player <color=#109d06ff>%s0</color> for achieving the Ancient Achievement <color=#109d06ff><Word info=Success id=%s1/></color>    0
AncientBattlefield_2    0    0    4|20    Player <color=#109d06ff>%s0</color> breaks limits, achieving a <color=#109d06ff>%s1</color> kill streak!    0
AncientBattlefield_3    0    0    4|20    Player <color=#109d06ff>%s0</color> is on a killing spree, taking down <color=#109d06ff>%s1</color> enemies in a row!    0
AncientBattlefield_4    0    0    4|20    Player <color=#109d06ff>%s0</color> is unstoppable, with a <color=#109d06ff>%s1</color> kill streak!    0
AncientBattlefield_5    0    0    5|20    Player <color=#109d06ff>%s0</color> is on a rampage with a <color=#109d06ff>%s1</color> kill streak!    0
AncientBattlefield_6    0    0    5|20    Player <color=#109d06ff>%s0</color> has surpassed the gods, achieving a <color=#109d06ff>%s1</color> kill streak!    0
AncientBattlefield_7    0    0    5|20    <color=#109d06ff>%s0 Player's</color> ended <color=#109d06ff>%s1 Player's</color> <color=#109d06ff>%s2</color> Killing Spree!    0
AncientBattlefield_8    0    0            0
AncientBattlefield_9    0    0    5|20    <color=#109d06ff>%s0 Player</color> currently ranks first in Points. Everyone, come and surpass him!    0
AncientBattlefield_10    0    0    7    %s0    0
AncientBattlefield_robot    0    0    5|20    <color=#109d06ff><Word ancientRobotName=1 objId=%s0 npcId=%s1/> Player</color> ended <color=#109d06ff>%s2</color> Player's <color=#109d06ff>%s3</color> Killing Spree!    0
TaskTip4107    0    0    2    Only when Alliance Members perform <color=#109d06ff>Solo Tribulation</color> can you act as Guardian for Alliance Achievements!    0
NowWorldMap    0    0    2    You are currently in this map.    0
NoEquipDonate    0    0    2    No equipment available for donation    0
CantChangeInDemon    0    0    2    Unable to change Auto Challenge/Double Challenge switch status in the Demon Sealing Altar instance    0
CancelEnterFB    0    0    2    All members of the team are not ready, cancel entering dungeon    0
Task_Transfer1    0    0    2    You're in a BOSS fight, unable to use auto-path.    0
PetStone_1    0    0    2    No Pet Spirit Souls available.    0
MountStone_1    0    0    2    No available mount soul    0
HappyXB    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>x%s3 during the Event    0
HappyXB1    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>x%s3 during the Blessing Event! <color=#109d06><a>I want to bless too|openui=402</a></color>    0
XBWarehouseFull    0    0    2    <color=#fa1010>Lottery Warehouse is full</color>, please organize your warehouse!    
OpenRedBag1    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for reaching a Cumulative total of <color=#109d06ff>%s1 Immortal Jade</color> during the Red Envelope Flying Event! <color=#109d06><a>I want to snatch too|openui=142</a></color>    0
OpenRedBag2    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color> for taking the lead and achieving the server launch achievement <color=#109d06ff><Word info=OSRedEnvelope id=%s1/></color>. A <color=#109d06ff>%s2 Immortal Jade</color> Red Envelope has been released. <color=#109d06><a>Go Snatch the Red Envelope|openui=142</a></color>    0
OpenRedBag3    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color> for achieving the server launch achievement <color=#109d06ff><Word info=OSRedEnvelope id=%s1/></color>. A Red Envelope of <color=#109d06ff>%s2 Immortal Jade</color> has been released. <color=#109d06><a>Go Snatch the Red Envelope|openui=142</a></color>    0
FairyRedBag    0    0    2    This Red Envelope doesn't belong to you and cannot be sent.    
ActiveOutTime    0    0    2    Event Ended    0
Bargaingift1    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=%s1/>|showitem=%s1 userdata=%s2</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=223</a></color>    0
Bargaingift2    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=%s1/>|showitem=%s1 userdata=%s2</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=224</a></color>    0
Bargaingift3    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=%s1/>|showitem=%s1 userdata=%s2</a>, their Combat Power skyrocketed! <color=#109d06FF><a>I want to buy too|openui=225</a></color>    0
Bargaingift4    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=%s1/>|showitem=%s1 userdata=%s2</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=226</a></color>    0
ShopBuyBroadcast_2    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for exchanging <a><Word info=item id=%s1/>|showitem=%s1 userdata=%s2</a> in the Lottery Shop. <color=#109d06><a>I want to exchange too|openui=206</a></color>    
RuneEssenceLack    0    0    2    <color=#fa1010>Insufficient Rune Essence</color>, <color=#109d06>Dismantle Runes</color> to Acquire Rune Essence    0
FirstPayReward1    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for successfully claiming the Day %s3 First Top-Up Lavish Gift: <a><Word info=item ID=%s1/>|showitem=%s1</a>, <a><Word info=item ID=%s2/>|showitem=%s2 </a>. <color=#109d06><a>I want to claim too|openui=143</a></color>    0
FirstPayReward2    0    0    2    You have already participated in the event    
TreasureFindHost1    0    0    2    Claim Successful, Progress +1    
TreasureFindHost2    0    0    2    You have collected all the rewards. Go unseal your Magic Artifact!    
OpenRedBag4    0    0    2    Insufficient attempts to Snatch Red Envelopes    
AddActivityCount_1    0    0    2    Use <color=#109d06><Word info=item ID=%s0/></color> to increase Clear Attempts for <color=#109d06><Word info=Map ID=%s1/></color> by %s2    
PetShowTipAchievement1    0    0    2    The Pet Spirit has not been obtained.    
PetShowTipAchievement2    0    0    2    No Pet Spirit Pills available for cultivation    
HorseShowTipAchievement1    0    0    2    Mount not obtained    
HorseShowTipAchievement2    0    0    2    No Mount Pills available for cultivation    
DailyquestNothingToGet    0    0    2    <color=#fa0101>Complete Daily Cultivation and Limited-Time Events to gain Activity Points</color>    
EquipDevour_Text_1    0    0    2    No equipment selected for dismantling, unable to dismantle    
FabaoAwaken    0    0    2    This Magic Artifact can be Awakened. Please Awaken it first.    
FairyStoreOpenLimit    0    0    2    Guild Level reaches <color=#fa1010>Level %s0</color> to activate.    
JumpPrompt    0    0    2    Feature not activatable yet, <color=#109d06>Top-Up</color> to Activate    
FirstPayAlreadyGet    0    0    2    You have already claimed the First Top-Up Rewards    
itemuse_chenxin_31379    0    0    2    Unable to perform this operation on quest items    
VoiceOutTime    0    0    2    This voice message has been deactivated    
TicketComposeUnlock    0    0    2    <color=#ff0303>Level %s0</color> Activate <color=#ff0303>%s1</color> Synthesis    
Unlock_BJMopUp1    0    0    2    You must reach a Rating of %s0 in the instance to raid.    
Unlock_BJMopUp2    0    0    2    You must reach a Rating of %s0 in the instance to raid.    
Unlock_BJMopUp3    0    0    2    Raid activates at Level %s0    
WorldBossCountItem    0    0    2    Use <color=#109d06><Word info=item ID=%s0/></color> to increase the used <Word info=RichTextMsgReplace Name=BOSS type id=%s2/> BOSS Remaining Attempts by <color=#109d06>%s1</color> points.    
WorldBossCountItem1    0    0    2    You've reached the limit of <Word info=RichTextMsgReplace Name=BOSS type id=%s0/> remaining attempts, unable to increase remaining attempts.    
FuncNoOpen_XMZZ1    0    0    2    %s0 Activates Immortals vs. Demons    
FuncNoOpen_XMYH1    0    0    2    %s0 Activate Guild Banquet    
FuncNoOpen_XBXZ1    0    0    2    %s0 activates Immortal Treasure Explore feature    
FuncNoOpen_WorldBoss1    0    0    2    %s0 activates World Boss    
FuncNoOpen_WingsRefine1    0    0    2    %s0 Activate Wings Refinement, Enhance Wings Quality    
FuncNoOpen_WingsHe1    0    0    2    %s0 activates Wings Synthesis, awesome wings soar through the sky    
FuncNoOpen_XunBao    0    0    2    %s0 Activate Lottery feature    
FuncNoOpen_Wash1    0    0    2    %s0 Activate Equipment Refinement Feature    
FuncNoOpen_UnionMatch1    0    0    2    %s0 and join a Guild to activate the Guild Tournament    
FuncNoOpen_Task1    0    0    2    %s0 Activate Daily Quest    
FuncNoOpen_Suit1    0    0    2    %s0 Activates Set Forging Feature    
FuncNoOpen_Sp1    0    0    2    %s0 Activate Five Elements Mastery    
FuncNoOpen_SignIn1    0    0    2    %s0 Activate Check-In    
FuncNoOpen_SGZC1    0    0    2    %s0 Activates Ancient Battlefield    
FuncNoOpen_RuneTower1    0    0    2    %s0 Activates Rune Tower    
FuncNoOpen_Recharge1    0    0    2    %s0 Activate Top-Up    
FuncNoOpen_Realm1    0    0    2    %s0 Activate Realm    
FuncNoOpen_RankPanel1    0    0    2    %s0 activates the Rankings Feature to see if they are on the leaderboard    
FuncNoOpen_Pray2    0    0    2    %s0 Activate Wish Invocation Wealth Feature    
FuncNoOpen_Pray1    0    0    2    %s0 activates Wish Invocation Growth feature    
FuncNoOpen_PersonBoss1    0    0    2    %s0 Activate Personal BOSS    
FuncNoOpen_PassSkill1    0    0    2    %s0 activates passive skill    
FuncNoOpen_MoZu1    0    0    2    %s0 Activate Demonic Tribe's Magical Artifact    
FuncNoOpen_Market1    0    0    2    %s0 Activate Marketplace    
FuncNoOpen_Magic1    0    0    2    %s0 Activate Divine Weapon    
FuncNoOpen_He1    0    0    2    %s0 Activates Synthesis Feature, <color=#ff0303>Level 180</color> Activates Wings Synthesis    
FuncNoOpen_GuShen1    0    0    2    %s0 activate Ancient God's Forbidden Zone, seize various gemstones    
FuncNoOpen_Gem1    0    0    2    %s0 Activate Gemstone Embedding feature    
FuncNoOpen_Friend1    0    0    2    %s0 Activate Immortal Bond    
FuncNoOpen_FreePoint1    0    0    2    %s0 Activate Free Allocate Points    
FuncNoOpen_Fairy1    0    0    2    %s0 Activate Guild    
FuncNoOpen_EquipDevour1    0    0    2    %s0 Activate Equipment Dismantling Feature    
FuncNoOpen_DailyQuest1    0    0    2    %s0 Activate Daily    
FuncNoOpen_ChatLimit1    0    0    2    <color=#ff0303>Level %s0</color> Activate Chat Dialog    
FuncNoOpen_BossHome1    0    0    2    %s0 activates VIP Privileges BOSS Home    
FuncNoOpen_AutoZhan1    0    0    2    %s0 Activate Equipment Synthesis    
FuncNoOpen_Talent1    0    0    2    %s0 Activate Talent Feature    
FuncNoOpen_WangZhe1    0    0    2    %s0 Activates King's Artifact    
FuncNoOpen_ShiZhuang1    0    0    2    %s0 Activates Costume Feature    
FuncNoOpen_PLXJ    0    0    2    %s0 Activate Penglai Realm    
RoleTitle_1    0    0    2    Not yet extracted <color=#109d06>%s0</color> Quest    
TreasureSoulWakeUp    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for successfully Awakening <color=#109d06FF><Word info=treasureprivilege id=%s1/></color>    
RepeatChat    0    0    2    Repeated messages sent too frequently. Can resend within <color=#109d06FF>10 seconds</color>.    
OnChatCD    0    0    2    Message failed to send. Sending too quickly. Can resend within 10 seconds.    
SweepFB_1    0    0    2    You are already in this Instance and cannot Raid.    
GiftAlreadyBuy    0    0    2    You have already purchased this Gift Pack    
GiftNoOpen    0    0    2    %s0 activates Value Gift Pack    
FuncNoOpen_Title1    0    0    2    %s0 Activate Title Feature    
FuncNoOpen_SevenOnLine    0    0    2    %s0 Activates 7-Day Login Feature    
FuncNoOpen_LVGift    0    0    2    %s0 Activate Level Gift Pack Feature    
OpenBoxItem    0    0    2    <Word info=RichTextMsgReplace Name=Packet id=%s0/> Space insufficient, Activate <color=#109d06><Word info=item ID=%s1/></color>, you need <color=#ff0303>%s2</color> free Slots    
FuncNoOpen_TreasureSoul    0    0    2    %s0 Activates Magic Artifact Soul Feature    
WorldBossNoHarm    0    0    2    World Boss feature not activated, unable to deal damage to World Boss    
ComposeNothingToAdd    0    0    2    No suitable materials can be auto-filled. Please manually select materials to increase Success Rate.    
ComposeFullToAdd    0    0    2    <color=#ff0101FF>Max Success Rate achieved</color>    
OSRedpackSfx    0    5162        %s0    
OSRedpackSfx1    0    5162            
OSRedpackSfx2    0    5217            
SideQuest_None    0    0    2    Side Quests are not yet available    
FuncNoOpen_DaBao1    0    0    2    %s0 Activates Demon Sealing Altar to Hunt for BOSS    
VoiceSendSuccess    0    0    2    Voice Chat sent successfully    
VoiceSendFail    0    0    2    Cancel Voice Chat Sending    
VoiceToolack    0    0    2    Message too short to send    
WeaPonOverDue    0    0    2    First Top-Up Trial Weapon has expired    
SPSuccessHint    0    0    2    Current Success Rate: 100%. No additional Materials are required.    
SPItemNotEnough    0    0    2    Insufficient materials, unable to add    
GeRen_liubo_403656    0    0    2    This item does not exist    
VipInvestmentLimit    0    0    2    To invest, you must reach <color=#109d06>VIP Level 3</color>    
FirstGoldWPOver    0    0    2    First Top-Up Trial Weapon has expired. Make your First Top-Up to renew it.    
Bugle_Lost_InputOverlong    0    0    2    Character input too long, cannot exceed 50 characters    
ConsumptionRebate1    0    0    5|20    <color=#109D06FF>Consumption Rebate</color> event is now Activated. If you <color=#109D06FF>spend Immortal Jade</color> and reach the Designated Quota within the day, you can claim a generous <color=#109D06FF>Grand Gift Pack</color> from the Event Interface under Exciting Event - Consumption Rebate! <color=#109D06FF><a>Check it out|openui=198</a></color>    
ConsumptionRebate2    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for reaching a cumulative spend of %s1 and claiming the highest tier Deluxe Grand Gift Pack from the Consumption Rebate event! <color=#109d06FF><a>Check it out|openui=198</a></color>    
ConsumptionRebate3    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for reaching a cumulative spend of %s1 Immortal Jade and successfully claiming the Deluxe Grand Gift Pack from the Consumption Rebate event! <color=#109d06FF><a>Check it out|openui=198</a></color>    
ConsumptionRebate4    0    0    4|20    The <color=#109D06FF>Consumption Rebate</color> event has ended. Thank you to all Fellow Adventurers for your active participation. Unclaimed rewards will be sent via <color=#109D06FF>Mail</color>. Please check your inbox.    
ConsumptionRebateJIERI1    0    0    5|20    <color=#109D06FF>Holiday Consumption Rebate</color> event is now activated. If you <color=#109D06FF>spend Immortal Jade</color> and reach the Designated Quota within the day, you can claim a generous <color=#109D06FF>Grand Gift Pack</color> from the Event Interface under Exciting Event - Consumption Rebate! <color=#109D06FF><a>Check it out|openui=408</a></color>    
ConsumptionRebateJIERI2    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for reaching a cumulative spend of %s1 and claiming the highest tier Deluxe Grand Gift Pack from the Holiday Consumption Rebate event! <color=#109d06FF><a>Check it out|openui=408</a></color>    
ConsumptionRebateJIERI3    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for reaching a cumulative spend of %s1 Immortal Jade and successfully claiming the Deluxe Grand Gift Pack from the Holiday Consumption Rebate event! <color=#109D06FF><a>Check it out|openui=408</a></color>    
ConsumptionRebateJIERI4    0    0    4|20    <color=#109D06FF>Festival Consumption Rebate</color> event has ended. Thank you to all Fellow Adventurers for your active participation. Unclaimed rewards will be sent via <color=#109D06FF>Mail</color>. Please check your inbox.    
ExpActivity_Ready    0    0    4|20    The <color=#109d06ff><Word info=RichTextMsgReplace Name=EXPActivity id=%s0/></color> event is now live! Slay monsters online to earn %s0x Cultivation Points and blast your way to rapid Level Up!    
ExpActivity_Goahead    0    0    20    <color=#109d06ff><Word info=RichTextMsgReplace Name=EXPActivity id=%s0/></color> event is now live! Slay monsters online to earn %s0x Cultivation Points and blast your way to rapid Level Up!    
ExpActivity_Start    0    0    5|20    <color=#109d06ff><Word info=RichTextMsgReplace Name=EXPActivity id=%s0/></color> Event has been activated. Everyone, hurry up and engage in Monster Slaying to Level Up!    
ExpActivity_End    0    0    4|20    <color=#109d06ff><Word info=RichTextMsgReplace Name=EXPActivity id=%s0/></color> Event ends in 5 minutes! Hurry up and engage in Monster Slaying!    
ExpActivity_Close    0    0    4|20    <color=#109d06ff><Word info=RichTextMsgReplace Name=EXPActivity id=%s0/></color> event has ended. Thank you, player, for participating in this event!    
Waiting_For_Prompt    0    0    2    After the countdown ends, you can claim the returned Immortal Jade. Please wait patiently.    
Pick_Up_Tips    0    0    2    Returned Immortal Jade has been Claimed    
Missing_Tips    0    0    2    Missed the chance for a Free Grab of Epic. Be quicker next time!    
BuyVIPGift    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>VIP%s1 Gift Pack</color> and obtaining <a><Word info=item ID=%s2/>|showitem=%s2</a>, their Combat Power soared! <color=#109d06><a>I want to buy too|openui=%s3</a></color>    
InputExchangeCode    0    0    2    Please enter the Exchange Code to claim Rewards    
BossFHOpen    0    0    20    BOSS Revive Event Activated, open Event Interface to participate    
DungeonGuardSkyText1    0    0    2    Currently in the Limited-Time Event: <color=#109d06FF>Guardian of the Human Emperor</color> Activate Time, unable to exit Guild temporarily    
DungeonGuardSkyText2    0    0    2    Currently in the Limited-Time Event: <color=#109d06FF>Guardian of the Human Emperor</color> Activation Time, unable to kick out members temporarily    
RecyclingElixir    0    0    2    Elixir recycled successfully, obtained <color=#109d06FF>%s0</color> Bagua Furnace EXP    
FairylandCermonyRecharge1    0    0    2    Top-Up any amount to claim the Gift Pack    
FairylandCermonyRecharge2    0    0    2    You have already claimed the Gift Pack. Please check your inventory.    
FairylandCermonyRecharge3    0    0    2    Claim successful, check rewards in Inventory.    
BossFHPoint1    0    0    4|20    BOSS Respawn Points have reached %s0. Keep it up and you can revive all the BOSSes! <color=#109d06><a>Go Now|openui=202</a></color>    
BossFHPoint2    0    0    5|20    All World BOSSes and BOSS Home BOSSes have been revived. The <color=#109d06>Seven Mystic Demon Dragon King</color> has been revived in the <color=#109d06>Deep Sea Ancient Tomb</color>. <color=#109d06><a>Instantly|openui=202</a></color>    
TeamMatchingTimeOut    0    0    2    Auto-Matchmaking timeout, stop matching    
MapMoveCD    0    0    2    Teleport to map, please wait.    
OpenConsumptionRebate    0    0    2    Level reaches 52 to activate the <color=#109d06>Consumption Rebate</color> feature    
OpenTakePreferential1    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Special Offer Gift Pack</color> and obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>. <color=#109d06><a>I want to buy too|openui=199</a></color>    
OpenTakePreferential2    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Growth Gift Pack</color>, obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>, <color=#109d06><a>I want to buy too|openui=199</a></color>.    
OpenTakePreferential3    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Deluxe Gift Pack</color> and obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>, <color=#109d06><a>I want to buy too|openui=199</a></color>    
InOperationTimeError    0    0    2    Not during Event Duration    
OperationLevelLimit    0    0    2    Level does not meet event requirements    
ElderGodNoTimes    0    0    2    Ancient God's Forbidden Zone entry attempts insufficient    
LimitGift1    0    0    5|20    Limited-Time Gift Pack Event is now active! Gift Packs on sale with super cheap discounts. Don't miss out, Fellow Adventurers! <color=#109d06><a>Go to Purchase|openui=201</a></color>    
LimitGift2    0    0    5|20    Limited-Time Gift Pack Event is about to expire! Gift Packs at super cheap discounts. Fellow Adventurers who haven't purchased yet, don't miss out! <color=#109d06><a>Go to Purchase|openui=201</a></color>    
LimitGift3    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>%s1 USD Gift Pack</color> and obtaining <a><Word info=item ID=%s2/>|showitem=%s2</a>! <color=#109d06><a>I want to buy too|openui=201</a></color>.    
LimitGiftJIERI1    0    0    5|20    Festival Limited-Time Gift Pack Event is now active. Gift Packs on sale with super cheap discounts. Don't miss out, Fellow Adventurers! <color=#109d06><a>Go to Purchase|openui=405</a></color>    
LimitGiftJIERI2    0    0    5|20    Festival Limited-Time Gift Pack Event is about to expire! Gift Packs on sale with super cheap discounts. Fellow Adventurers who haven't purchased yet, don't miss out! <color=#109d06><a>Go to Purchase|openui=405</a></color>    
LimitGiftJIERI3    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>%s1 USD Festival Gift Pack</color> and obtaining <a><Word info=item ID=%s2/>|showitem=%s2</a>. <color=#109d06><a>I want to buy too|openui=405</a></color>    
LimitGiftHF1    0    0    5|20    Server Merge Limited-Time Gift Pack Event is now active! Gift Packs on sale at super cheap discounts. Don't miss out, Fellow Adventurers! <color=#109d06><a>Go to Purchase|openui=2019</a></color>    
LimitGiftHF2    0    0    5|20    Server Merge Limited-Time Gift Pack Event is about to expire! Gift Packs on sale with super cheap discounts. Fellow Adventurers who haven't purchased yet, don't miss out! <color=#109d06><a>Go to Purchase|openui=2019</a></color>    
LimitGiftHF3    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>%s1 USD Server Merge Gift Pack</color> and obtaining <a><Word info=item ID=%s2/>|showitem=%s2</a>. <color=#109d06><a>I want to buy too|openui=2019</a></color>    
OperationLevelLimit_BossReborn    0    0    2    <color=#FA1010>Level %s0</color> Activates BOSS Revival Event    
OperationLevelLimit_MultipleExp    0    0    2    <color=#FA1010>%s0</color> Level Activates Multi-Cultivation Points Event    
OperationLevelLimit_ConsumeRebate    0    0    2    Reach <color=#FA1010>%s0</color> Level to Activate Consumption Rebate Event    
OperationLevelLimit_FlashSale    0    0    2    <color=#FA1010>%s0</color> Level Unlocks Limited-Time Special Offer Event    
OperationLevelLimit_GiftPackage    0    0    2    Reach <color=#FA1010>%s0</color> Level to Activate Limited-Time Gift Pack Event    
OperationLevelLimit_FairyCeremony    0    0    2    <color=#FA1010>%s0</color> Level Activate Immortal Realm Celebration Event    
OperationLevelLimit_LuckyTreasure    0    0    2    <color=#FA1010>%s0</color> Level to unlock Lucky Treasure Appraisal Event    
OperationLevelLimit_LoginReward    0    0    2    <color=#FA1010>%s0</color> Level Activate Login Rewards    
CeremonyStart    0    0    5|20    Carnival for all! The Immortal Realm Celebration event is now live! Limited Edition items await you!    
CeremonyEnd    0    0    5|20    The Immortal Realm Celebration Event is ending soon! Hurry up and make your final Leaderboard Rush!    
CeremonyOver    0    0    5|20    Immortal Realm Celebration Event has ended. Players in the Rankings, please check your Mail for rewards!    
NewCeremonyStart    0    0    5|20    Carnival for all! The Spring Festival Extravaganza is now live. Limited Edition items await you!    
NewCeremonyEnd    0    0    5|20    Spring Festival Celebration Event is ending soon! Hurry up for the final Leaderboard Rush!    
NewCeremonyOver    0    0    5|20    Spring Festival Extravaganza Event has ended. Players in the Rankings, please check your Mail for rewards!    
NewCeremonyRecharge    0    0    2|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining the <color=#109d06ff>Celebration Top-Up Grand Gift Pack</color> during the Spring Festival Extravaganza! Fellow Adventurers, don't miss out! <color=#109d06><a>I want to top up too|openui=244</a></color>    
CeremonyRecharge    0    0    2|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining the <color=#109d06ff>Celebration Top-Up Grand Gift Pack</color> during the Immortal Realm Celebration Event! Fellow Adventurers, don't miss out! <color=#109d06><a>I want to top up too|openui=244</a></color>    
LimitGift4    0    0    5|20    Limited-Time Special Offer Event is now active! Gift Packs on sale with super cheap discounts. Don't miss out, Fellow Adventurers! <color=#109d06><a>Go to Purchase|openui=203</a></color>    
LimitGift5    0    0    5|20    Limited-Time Special Offer Event is about to expire! Gift Packs for sale with super cheap discounts. Fellow Adventurers who haven't purchased yet, don't miss out! <color=#109d06><a>Go to Purchase|openui=203</a></color>    
LimitGift6    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Initiation Gift Pack</color> and obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>. <color=#109d06><a>I want to buy too|openui=203</a></color>    
LimitGift7    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Origin Gift Pack</color>, obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>, <color=#109d06><a>I want to buy too|openui=203</a></color>.    
LimitGift8    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Heaven's Gift Pack</color> and obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>. <color=#109d06><a>I want to buy too|openui=203</a></color>.    
LimitGiftJIERI4    0    0    5|20    Festival Limited-Time Special Offer Event is now live! Gift Packs on sale with super cheap discounts. Don't miss out, Fellow Adventurers! <color=#109d06><a>Go to Purchase|openui=407</a></color>    
LimitGiftJIERI5    0    0    5|20    Holiday Limited-Time Special Offer Event is about to expire! Gift Packs on sale with super cheap discounts. Fellow Adventurers who haven't purchased yet, don't miss out! <color=#109d06><a>Go to Purchase|openui=407</a></color>    
LimitGiftJIERI6    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Initiation Gift Pack</color> and obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>. <color=#109d06><a>I want to buy too|openui=407</a></color>    
LimitGiftJIERI7    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Origin Gift Pack</color> and obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>. <color=#109d06><a>I want to buy too|openui=407</a></color>    
LimitGiftJIERI8    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Divine Gift Pack</color> and obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>. <color=#109d06><a>I want to buy too|openui=407</a></color>    
RealmLimitUnuse    0    0    2    Insufficient Realm level, unable to use item.    
LimitGift9    0    0    2    Event Ended    
UseItem3    0    0    2    Use of <Word info=item ID=%s0/> Success, <Word info=buffDesc id=%s1/>    0
TrialTokenCountError    0    0    2    Insufficient exchange materials    
BuyInvest_8    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Monthly Card</color>. Over 28 days, they can accumulate <color=#109d06>%s1</color> Immortal Jade in rewards. <color=#109d06><a>I want to invest too|openui=324</a></color>    
BuyInvest_7    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Supreme Monthly Card</color>. Over 28 days, they can accumulate <color=#109d06>%s1</color> Spirit Stones in rewards. <color=#109d06><a>I want to invest too|openui=325</a></color>    
BuyInvest_9    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Login Investment</color>. They can accumulate <color=#109d06>%s1</color> Immortal Jade in rewards. <color=#109d06><a>I want to invest too|openui=374</a></color>    
BuyInvest_10    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Level Investment</color>. They can accumulate <color=#109d06>%s1</color> Celestial Jade in rewards. <color=#109d06><a>I want to invest too|openui=375</a></color>    
BuyInvest_11    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>BOSS Investment</color>. %s0 can accumulate <color=#109d06>%s1</color> Spirit Stones in rewards. <color=#109d06><a>I want to invest too|openui=376</a></color>    
BuyInvest_12    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for purchasing the <color=#109d06ff>Lifetime Card</color>, obtaining high rebate and exclusive benefits! <color=#109d06><a>I want to Purchase too|openui=2030</a></color>    
EquipComposeSuccess3    0    0    5|20    <color=#109d06FF>%s0</color> gathered %s1 <Word info=item ID=%s2/> and synthesizes them into <a><Word info=item ID=%s3/>|showitem=%s3</a>.    
EquipComposeSuccess4    0    0    5|20    Divine Weapon Descends! Congratulations to player <color=#109d06FF>%s0</color> for synthesizing a 2-Star Legendary Weapon <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    
EquipComposeSuccess5    0    0    5|20    Divine Weapon Descended! Congratulations to Player <color=#109d06FF>%s0</color> for synthesizing a 3-Star Legendary Weapon <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    
GuardComposeSuccess    0    0    4|20    Congratulations to player <color=#109d06FF>%s0</color> for synthesizing Advanced Guardian <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    
FuncNoOpen_KMZY    0    0    2    %s0 Activate Vein Explosive Synthesis Feature    
FuncNoOpen_GSYJ    0    0    2    %s0 Activate Ancient God's Mark Synthesis Feature    
FuncNoOpen_MPHC    0    0    2    %s0 activates Ticket Synthesis Feature    
FuncNoOpen_JH    0    0    2    %s0 Activate Soul-Gathering    
FuncNoOpen_JHHC    0    0    2    %s0 Activate Soul-Gathering Synthesis    
FuncNoOpen_JHFB    0    0    2    %s0 Activate Soul-Gathering Instance    
TrialExchangeLimit    0    0    2    <color=#35e122FF>Clear the Sect Trial Level 1 to unlock the</color><color=#f8983bFF>Orange Equipment Exchange</color>    
SkillPotential1    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color> for cultivating potential <color=#109d06ff><Word info=Skill ID=%s1/></color> to Level <color=#109d06ff>%s2</color>, unlocking new potential <color=#109d06ff><Word info=Skill ID=%s3/></color>    
SkillPotential2    0    0    4|20    Congratulations to <color=#109d06ff>%s0</color> for Cultivating Potential <color=#109d06ff><Word info=Skill ID=%s1/></color> to Level <color=#109d06ff>%s2</color>, learning special Potential <color=#109d06ff><Word info=Skill ID=%s3/></color>    
SkillPotential3    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for the Cultivation of Potential <color=#109d06ff><Word info=Skill ID=%s1/></color> to Max Level <color=#109d06ff>%s2</color>! The primordial power is about to burst forth!    
FBinCantEnter    0    0    2|41    Instance clearing in progress. Please wait to close or recreate a team to enter.    
PK_lhs_272921    0    0    2    Target in non-attack zone    
FuncNoOpen_FBZH    0    0    2    Magic Artifact <color=#ff0303>Radiant Moon Spear</color> Equipment Awakening Enhancement Feature    
AlchemyRecycling    0    0    2    Please select the Elixir to Recycle    
FuncNextVersion    0    0    2    The feature will be available in the next version. Stay tuned!    
PassSkillHoleLimitTask_2    0    0    2    <color=#fa1010>Level 125 and Mount Total Level reaches 30</color>    
PassSkillHoleLimitTask_3    0    0    2    <color=#fa1010>Clear Level 2 of Nuwa Empress Ruins at Level 160 with S-Rank</color>    
PassSkillHoleLimitTask_4    0    0    2    <color=#fa1010>Level 180 and Refine Level 5 Armor to Level 3</color>    
PassSkillHoleLimitTask_5    0    0    2    <color=#fa1010>Level 200 and a 5-piece 2nd Tier Armor Enhancement Set</color>    
AssistDogzReachMax    0    0    2    Max Combat Beasts limit reached    
LevelUpZeroRate    0    0    2    Success rate is 0, unable to level up. Please add Chromatic Stones to enhance success rate.    
FairyGrabBossExitError    0    0    2    Unable to exit the Guild during the Pet Spirit Contest event    
FairyGrabBossUnOpen    0    0    2    The Pet Spirit Contest hasn't started yet, will Activate at <color=#109d06FF>20:30</color>    
FairyGrabBossNoFairy    0    0    2    Join an Alliance and reach Level 110 to participate in Pet Contest    
FairyGrabBossNewPlayer    0    0    2    <color=#fa1010>Unable to attack this beginner player</color>    
FairyGrabBossNoDead    0    0    20    Pet Contest event has ended. <color=#109d06FF><Word info=npc id=%s0/></color> was not killed. No Guild obtained Ownership Rewards.    
FairyGrabBossTime    0    0    4|20    Pet Contest Event will Activate in <color=#fa1010>%s0</color> minutes. Fellow Adventurers, get ready to participate!    
FairyGrabBossWillKill    0    0    5|20    Pet Spirit Contest <color=#109d06FF><Word info=NPC id=%s0/></color> is about to be killed. <color=#109d06FF><a><Word show=Go instantly/>|MoveNPC=%s0</a></color>    
FairyGrabBossDead    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for the united effort in killing <color=#109d06FF><Word info=npc id=%s1/></color> and obtaining the BOSS drop.    
FairyGrabBossRank    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for participating in the kill of <color=#109d06FF><Word info=npc id=%s1/></color> and earning the <color=#109d06FF>%s2</color> place Damage Reward Gift Pack.    
FairyGrabBossNotAtk    0    0    2    You are currently in the Beginner Protection Stage, unable to attack the BOSS.    
FairyGrabBossHelp    0    0    2|32    Guild Members: <color=#109d06FF>%s0</color> is in battle with <color=#109d06FF><Word info=npc id=%s1/></color>. Allies, hurry and support immediately! <color=#109d06FF><a><Word show=Instantly move/>|MoveNPC=%s1</a></color>    
FairyGrabBossOver    0    0    2    <color=#fa1010>BOSS has been killed</color>    
FairyCallMemberCd    0    0    2    Summoning Ally is on Cooldown    
FairyGrabBossStart    0    0    4|20    Get ready for the Pet Contest Event! Join the battle and compete for rare Pet Spirits!    
MissSell    0    0    2    Missed the Sell Time for this Gift Pack    
EquipComposeSuccess6    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for Successfully Synthesizing Orange 2-Star <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
FairyFoodHandError    0    0    2    <color=#fa1010>Not enough Beast Feed to submit</color>    
FairyBossOpenCntError    0    0    2    <color=#fa1010>Insufficient Demon Invasion available attempts</color>    
GuardSkyOpenLvError    0    0    2    Guild Level must reach <color=#fa1010>Level %s0</color> to participate in Guardian of the Human Emperor    
FairyMethodToLimit    0    0    2    Guild Level <color=#fa1010>Level %s0</color> required to activate Guild Heart Technique    
FairyBossLimit    0    0    2    Guild Level <color=#fa1010>%s0</color> required to activate Guild Demon Hunt    
RebornCD    0    0    2    Revive is on CD    
HFBossOpen    0    0    5|20    <color=#109d06ff>Server Merge Event - Mount Feast</color> is now Activated. Open the Server Merge Event Interface to <color=#109D06FF><a>participate|openui=2017</a></color>    
HFBossOpenStart    0    0    5|20    Server Merge Event - Mount Feast will begin in <color=#109d06FF>%s0</color> minutes. Fellow Immortals, please prepare in advance    
HFBOSS1HP1    0    0    5|20    Mount Feast BOSS: <Word info=NPC ID=%s0/> has only %s1% HP left. <color=#109d06><a>Instantly|MoveNPC=30903002</a></color>    
HFBOSS2HP1    0    0    5|20    Mount Feast BOSS: <Word info=NPC ID=%s0/> has only %s1% HP left. <color=#109d06><a>Go instantly|MoveNPC=30903003</a></color>    
MultipleOpen    0    0    20    Double Activity Points Event Activated. Open the Event Interface to participate.    
PassiveSkillNewHole    0    0    20    <color=#109d06FF>%s0</color> successfully unlocked a new Passive Skill Slot. New skills can now be equipped. <color=#109d06><a>Unlock it for me too|openui=10</a></color>    
FBEnterTimeBuy    0    0    20    <Word info=Map ID=%s0/>InstanceAttempts+1    
VerifyErrorCode2    0    0    2    Sorry, you have been muted    
JadeInvestmentLimit1    0    0    2    Feature Not Activated    
JadeInvestmentLimit2    0    0    2    You have exceeded Level 300 and cannot purchase the Growth Fund    
JadeInvestmentLimit3    0    0    2    You have claimed the maximum tier of the Growth Fund    
RuneSpecialHoleLevelError    0    0    2    Character Level below <color=#fa1010>%s0</color>    
RuneSpecialHoleGet    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for spending <color=#109d06FF>%s1</color> Immortal Jade to successfully unlock a new Rune Embed slot! <color=#109d06><a>I want to unlock too|openui=22</a></color>    
BlastfurnaceBlessing    0    0    5|20    Congratulations to <color=#109d06>%s0</color> for obtaining Epic <a><Word info=item ID=%s1/>|showitem=%s1</a> from <color=#006be3>Supreme Celestial Ancestor's Gift</color>! <color=#109d06><a>I want to pray|openui=234</a></color>    
PrayforDrug101    0    0    2    Laozi Meditating in Seclusion    
PrayforDrug102    0    0    2    Activate at Pill Alchemy Level %s0    
FlashSaleAdvanceLimit    0    0    2    <color=#fa1010>%s0</color> until Limited-Time Special Offer activates    
LimitGilt1    0    0    2    <color=#fa1010>%s0</color> until Limited-Time Gift Pack activates    
CodeRewardSys1    0    0    2    Exchange Success, rewards sent via mail    
CodeRewardSys2    0    0    2    This exchange code is invalid. Please enter the correct exchange code.    
CodeRewardSys3    0    0    2    This Exchange Code has already been used. Please enter a valid Exchange Code.    
CodeRewardSys4    0    0    2    You've already redeemed this type of Exchange Code.    
DogzBigTreasureLimit    0    0    2    Large Chest can be gathered %s times daily, daily limit reached    
DogzSmallTreasureLimit    0    0    2    You can gather the Small Chest %s0 times daily. You've reached today's limit.    
LackTalentPoint    0    0    2    <color=#fa1010>Insufficient Talent Points</color>    
TalentHighestLevel    0    0    2    Talent at Max Level    
LackTalentSeriesPoint    0    0    2    <color=#fa1010>Insufficient points in the corresponding Talent tree</color>    
PreTalentLevelLimit    0    0    2    <color=#fa1010>Prerequisites talent level requirements not met</color>    
TalentRequirePropertyLimit    0    0    2    <color=#fa1010>Insufficient Attribute Points</color>    
NoNeedResetTalentPoint    0    0    2    <color=#fa1010>No points have been allocated, so talent reset is not required</color>    
GeRen_liubo_254483    0    0    2    You cannot perform this operation in your current status    
DogzNumLimit    0    0    2    Beast Battle Count Limit can be increased to a maximum of 6.    
RenameSuccess01    0    0    2    Successfully renamed to <color=#35e122>%s0</color>    
DogzDungeonPL    0    0    2    Today's Penglai Immortal Realm BOSS attempts are exhausted, unable to deal damage to Penglai Immortal Realm BOSS.    
DemonLand_Limit    0    0    2    Today's Demonized Realm BOSS attempts are exhausted. You can no longer deal damage to the BOSS in the Demonized Realm.    
MultipleXXDOpen    0    0    20    Double Activity Points Event Activated. Open the Event Interface to participate.    
DogzBagFull    0    0    2    Divine Beast Inventory Full    
DogzQualityAsk    0    0    2    The <color=#109D06FF>%s0</color> Slot of this Divine Beast has Equipment Requirements of <color=#109D06FF>%s1</color> Quality or higher.    
DogzOneKeyNone    0    0    2    No equipment matching the quality requirement available to equip.    
BindJadeNotice    0    0    20    Congratulations to <color=#109d06FF>%s0</color> for winning <color=#109d06FF>%s1</color> Immortal Jade on the Immortal Jade Wheel! <color=#109d06><a>I want to spin too|openui=252</a></color>    
BindJadeNoNum    0    0    2    <color=#fa1010>Insufficient attempts today, attempts reset daily at 0:00!</color>    
DogzOneKeyBest    0    0    2    No better Beast Equipment available to Equip in Inventory    
DogzNumberUp    0    0    2|20    Congratulations to <color=#109d06FF>%s0</color> for using <a><Word info=item ID=%s1/>|showitem=%s1</a> to expand the Combat Beasts Limit to <color=#109d06FF>%s2</color>    
Old_andyshao_161795    0    0    2    Unable to attack allies in this mode    
HelpBattleNotify1    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for deploying the Divine Beast <color=#686868ff>Rat</color>, obtaining massive Attribute Bonus    
HelpBattleNotify2    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for sending out the Divine Beast <color=#31cefbff>Tanuki</color>, obtaining massive Attribute Bonus    
HelpBattleNotify3    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for deploying the Divine Beast <color=#31cefbff>Night Hawk</color>, obtaining massive Attribute Bonus    
HelpBattleNotify4    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for sending out the Divine Beast <color=#ec4bf6ff>Azure Serpent</color>, obtaining massive Attribute Bonuses    
HelpBattleNotify5    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for deploying the Battle Beast <color=#ec4bf6ff>Death Sheep</color>, obtaining massive attribute bonuses    
HelpBattleNotify6    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for sending out the Divine Beast <color=#ec4bf6ff>Snow Fox</color>, obtaining massive attribute bonuses.    
HelpBattleNotify7    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for deploying the Divine Beast <color=#ec4bf6ff>Tengu</color>, obtaining massive attribute bonuses    
HelpBattleNotify8    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for deploying the Combat Beast <color=#f8983bff>Ape</color>, activating the Defense Boost skill    
HelpBattleNotify9    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for deploying the Combat Beast <color=#f8983bff>Wild Bull</color>, activating the Critical Hit Bonus skill    
HelpBattleNotify10    0    0    4|20    Congratulations to player <color=#109d06ff>%s0</color> for sending the Combat Beast <color=#f8983bff>Moon Deer</color> to battle, activating the Vampirism Attack skill    
HelpBattleNotify11    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for battling the Beast <color=#fa0101ff>Raging Bear</color>, activating the Damage Absorption skill    
HelpBattleNotify12    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for deploying the Combat Beast <color=#fa0101ff>Silver Tiger</color>, activating the Damage Increase skill    
HelpBattleNotify13    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for battling with the Combat Beast <color=#fa0101ff>Horned Bull</color>, activating a powerful Damage Boost skill    
HelpBattleNotify14    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for battling with the Combat Beast <color=#fa0101ff>Flame Wolf</color>, activating the Control and Counter-Control skills    
HelpBattleNotify15    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for sending the Combat Beast <color=#ff7c7cff>Golden Rhino</color> to battle, activating the powerful Damage Reduction skill    
HelpBattleNotify16    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for deploying the Combat Beast <color=#ff7c7cff>Tusked Elephant</color>, activating the Powerful Critical Hit Bonus skill    
HelpBattleNotify17    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for sending the Combat Beast <color=#ff7c7cff>Qilin</color> to battle, activating a powerful Vampirism Attack skill    
HelpBattleNotify18    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for battling with the Combat Beast <color=#ff7c7cff>Fire Phoenix</color>, activating a powerful Damage Boost skill    
HelpBattleNotify19    0    0    4|20    Congratulations to Player <color=#109d06ff>%s0</color> for deploying the Divine Beast <color=#ff7c7cff>Celestial Dragon</color>, activating the powerful Damage Reduction skill    
BagFull102    0    0    2    Inventory space is insufficient. Dismantling <color=#ff7c7cff>%s0</color> will return materials. You need <color=#ff0303>%s1</color> free slots    
DogzCantHelp    0    0    2    Must equip <color=#fa0101ff>5</color> Beast Equipment pieces to enter battle    
FlashRushToBuy1    0    0    2    Reservation successful, you'll be notified 3 minutes before the Rush to Buy begins!    
FlashRushToBuy2    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for successfully Flash Killing item <a><Word info=item ID=%s1/>|showitem=%s1</a> in the <color=#109d06ff>Limited-Time Flash Sale</color>. What a steal! <color=#109d06><a>I Want to Flash Kill|openui=253</a></color>    
FlashRushToBuy3    0    0    5|20    Fellow Adventurer, a new round of Limited-Time Flash Kill has begun! Rush to Buy now! Grab it for instant profit! <color=#109d06><a>I Want to Flash Kill|openui=253</a></color>    
FlashRushToBuyJIERI2    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for successfully Flash Killing <a><Word info=item ID=%s1/>|showitem=%s1</a> in the <color=#109d06ff>Holiday Limited-Time Flash Sale</color>. What a steal! <color=#109d06><a>I Want to Flash Kill|openui=406</a></color>    
FlashRushToBuyJIERI3    0    0    5|20    Dear Fellow Adventurer, a new round of the Festival Limited-Time Flash Sale has begun! Join the Flash Kill now! Grab it while you can! <color=#109d06><a>I Want to Flash Kill|openui=406</a></color>    
FlashRushToBuyHF2    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for successfully Flash Killing <a><Word info=item ID=%s1/>|showitem=%s1</a> in the <color=#109d06ff>Server Merge Limited-Time Flash Sale</color>. What a steal! <color=#109d06><a>I Want to Flash Kill|openui=2018</a></color>    
FlashRushToBuyHF3    0    0    5|20    Fellow Adventurer, the Server Merge Limited-Time Flash Sale Hourly Flash Kill has begun! Grab them for instant profit! <color=#109d06><a>I Want to Flash Kill|openui=2018</a></color>    
MysteryShopGoods    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for scoring a huge deal on <a><Word info=item ID=%s1/>|showitem=%s1</a> from the <color=#109d06ff>Mystery Shop</color>! What a steal! <color=#109d06><a>Check it out now|openui=72</a></color>    
AlreadyInTeam2    0    0    2    That player is already in the team.    
UseItem_1    0    0    2    Use <Word info=item ID=%s0/> to increase <Word info=treasure id=%s1/><color=#109d06ff>%s2</color> Cultivation Points.    
UseItem_2    0    0    2    <color=#fa1010ff><Word info=treasure id=%s0/></color> has not been obtained, unable to use <Word info=item ID=%s1/>.    
XYCOpen    0    0    20    The Wishing Pool event has been activated. Make a wish today, claim grand prizes tomorrow. Open the exciting event interface to participate.    
OpenFabaoHint    0    0    2    Complete Main Quest Level <color=#109d06>%s0</color> to Activate    
FamilyMatchRankNoOneLose    0    0    5|20    <color=#109d06FF>%s0</color> is the First Place in Points among the losing side in the Heavenly Rank Guild Tournament, obtaining extra <Word info=item id=%s1/> Rewards    0
ChangeBubbleSuccess    0    0    2    Chat box switched successfully.    
AccumulatedTopUp1    0    0    5|20    Dear Fellow Adventurer, the <color=#109D06FF>Cumulative Top-Up</color> event has started. If you reach the Designated Quota for <color=#109D06FF>Top-Up</color> within the same day, you can claim a generous <color=#109D06FF>Grand Gift Pack</color> from the Event Interface under Exciting Event - Cumulative Top-Up! <color=#109D06FF><a>Go check it out|openui=257</a></color>    
AccumulatedTopUp2    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for achieving the <color=#109d06FF>%s1</color> USD Tier in the Cumulative Top-Up Event and claiming the Grand Gift Pack! <color=#109D06FF><a>Check it out|openui=257</a></color>    
AccumulatedTopUp3    0    0    4|20    <color=#109D06FF>Cumulative Top-Up</color> event has ended. Thanks to all Fellow Adventurers for your active participation. Unclaimed rewards will be sent via <color=#109D06FF>Mail</color>. Please check your inbox.    
AccumulatedTopUp4    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for achieving the <color=#109d06FF>%s1</color> USD Tier in the Cumulative Top-Up Event and claiming the Grand Gift Pack! <color=#109D06FF><a>Check it out|openui=369</a></color>    
AccumulatedTopUpJIERI1    0    0    5|20    Dear Fellow Adventurer, the <color=#109D06FF>Festival Cumulative Top-Up</color> event is now Activated. If you reach the Designated Quota for <color=#109D06FF>Top-Up</color> within the day, you can claim a generous <color=#109D06FF>Grand Gift Pack</color> from the Event Interface under Festival Event - Cumulative Top-Up! <color=#109D06FF><a>Check it out|openui=409</a></color>    
AccumulatedTopUpJIERI3    0    0    4|20    <color=#109D06FF>Festival Cumulative Top-Up</color> event has ended. Thank you to all Fellow Adventurers for your active participation. Unclaimed rewards will be sent via <color=#109D06FF>Mail</color>. Please check your inbox.    
AccumulatedTopUpJIERI4    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for achieving the <color=#109d06FF>%s1</color> USD Tier in the Holiday Multi-Day Cumulative Top-Up Event and claiming the Grand Gift Pack! <color=#109D06FF><a>Check out the past|openui=409</a></color>    
ManyDayRechargeNotify1    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for achieving <color=#109d06FF>%s1</color> consecutive days of <color=#109d06FF>%s2</color> USD Tier Top-Up during the Multi-Day Consecutive Top-Up Event and claiming the Grand Gift Pack! <color=#109d06FF><a>Check it out|openui=410</a></color>    
ManyDayRechargeNotify2    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for achieving <color=#109d06FF>%s1</color> consecutive days of <color=#109d06FF>%s2</color> USD Tier Top-Up in the Server Merge Multi-Day Consecutive Top-Up Event and claiming the Grand Gift Pack! <color=#109D06FF><a>Check it out|openui=257</a></color>    
ManyDayRechargeNotify3    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for achieving <color=#109d06FF>%s1</color> consecutive days of <color=#109d06FF>%s2</color> USD Tier Top-Up in the Holiday Multi-Day Consecutive Top-Up Event and claiming the Grand Gift Pack! <color=#109D06FF><a>Check it out|openui=257</a></color>    
SingleRechargeNotify1    0    0    4|20    Congratulations to <color=#109d06FF>%s0</color> for achieving the <color=#109d06FF>%s1</color> USD Tier in the Single Transaction Top-Up Event and claiming the Grand Gift Pack! <color=#109D06FF><a>Check it out|openui=257</a></color>    
IceCrystal_Point    0    0    2    <color=#fa1010ff>Insufficient Combat Power</color> unable to Raid, recommended Combat Power: <color=#109d06FF>%s0</color>    
IceCrystal_VIP    0    0    2    <color=#fa1010ff>Insufficient VIP Level</color> to Raid. Reach VIP <color=#109d06FF>%s0</color> to enable Raiding.    
IceCrystal_LV    0    0    2    <color=#fa1010ff>Insufficient Level</color> to raid, can raid at <color=#109d06FF>%s0 Level</color>    
IceCrystal_Sweep    0    0    2    <color=#fa1010ff>Unable to Raid while currently in an Ice Crystal Vein Instance Challenge</color>    
MapAssetDowning    0    0    2    Downloading map resources, please wait    
SummonAssistant1    0    0    2    Summon Success, you can continue summoning    
SummonAssistant2    0    0    2    Full party summoned, instance about to start.    
SummonAssistant3    0    0    2    Insufficient Immortal Jade Refresh Attempts    
TeamSingleEnter    0    0    2    You have insufficient Challenge Attempts for <color=#12a199ff><Word info=Map ID=%s0/></color>. You cannot enter Solo; you can join another Team for a Support Battle.    
TrialDungeonSDLimit    0    0    2    <color=#fa1010ff>Level %s0</color> and Sect Trial Level %s1, achieving a <color=#fa1010ff>Level %s2 rating</color>, to Activate Raid    
ExitFairyTime    0    0    2    Alliance exits too frequent. You need to wait <color=#fa1010ff><Word time=%s0/></color> before exiting the Guild    
TeamPrepareTimeOut    0    0    2    Enter Dungeon Timeout    
PreTreasureSkillLimit    0    0    2    Please obtain %s0 Magic Artifact Skill first    
GatherSoulHoleOpenCondition    0    0    2    Level %s0 Unlocked    
NoneSoulSatisfyEquip    0    0    2    No equippable Soul    
GatherSoulLevelError_1    0    0    2    Reached Max Level. Cannot Level Up further.    
GatherSoulLevelError_2    0    0    2    Insufficient Soul Dust Count for Level Up    
NoneOfAnyEmptySoulHole    0    0    2    No empty slots available for equipping.    
GatherSoulComposeError_2    0    0    2    Level too low, unable to perform Synthesis    
GatherSoulComposeError_3    0    0    2    Not enough Soul-Gathering Shards    
GatherSoulComposeError_4    0    0    2    Core Ring not enough    
GatherSoulComposeError_5    0    0    2    No corresponding synthesis item    
GatherSoulPackFull    0    0    2    Soul-Gathering Inventory Full    
JHCallForBoss1    0    0    2    This Round has already summoned Gold BOSS, please wait for Next Round    
JHCallForBoss2    0    0    2|20    Insufficient Immortal Jade, auto summon canceled.    
HasBuildAllDefend    0    0    2    %s0 Construction Complete    
PleaseGenerateMonsterFirst    0    0    2    Please start spawning mobs first    
UnGetAnyGatherSoulItems    0    0    2    Soul-gathering rewards not yet obtained    
PartySitFail    0    0    2    the ally is not in the Banquet scene and cannot perform Dual Cultivation    
FairyFeastPlayerOffline    0    0    2    Ally is offline, unable to perform Dual Cultivation    
XW_JZ_Family_NameNoLegality    0    0    2    <color=#fa1010ff>Guild name contains illegal characters, please rename</color>    
CrossMatching1    0    0    2    Character has died, unable to participate in cross-server matchmaking.    
CrossMatching2    0    0    2    The Cross-Server Ladder Match event has ended. Auto-Matchmaking is now closed.    
CrossMatching3    0    0    2    You are currently in a Cross-Server Map and cannot initiate Cross-Server Matchmaking. Please return to your Server to start matchmaking.    
CrossMatching4    0    0    2    You are in an Instance and cannot participate in Cross-Server Matchmaking    
CrossMatching5    0    0    2    You are Dead and cannot participate in cross-server matchmaking    
CrossMatching6    0    0    2    You're in party matchmaking and cannot participate in Cross-Server Matchmaking    
CrossMatching7    0    0    2    You are in instance preparation status and cannot participate in cross-server matchmaking    
CrossMatching8    0    0    2|20    Failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance, because you are in Cross-Server Matchmaking    
CrossMatching9    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because you are in Cross-Server Matchmaking    
CrossMatching10    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06FF>%s1</color> is in Cross-Server Matchmaking    
CrossMatching11    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because of ongoing Cross-Server Matchmaking    
CrossMatching12    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color> is in Cross-Server Matchmaking    
CrossMatching13    0    0    2    Current attempts have reached the limit    
CrossMatching14    0    0    2    <color=#fa1010ff>%s0</color> Level required to activate World Server feature    
CrossMatching15    0    0    2    The feature "Three Thousand Worlds" will not be available <color=#fa1010ff>%s0</color> days before server launch    
CrossMatching16    0    0    2    Cross-Server Matchmaking Attempts Insufficient    
CrossMatching17    0    0    2    Unable to matchmake - previous cross-server battle unfinished    
CrossMatching18    0    0    2    Cross-Server Maintenance in Progress    
CrossMatching19    0    0    2    Feature Not Activated, please stay tuned    
CrossMatching20    0    0    2    Unable to matchmake outside event duration    
CrossMatching21    0    0    2    Not available for purchase outside of the event duration    
CrossMatching22    0    0    2|20    Congratulations to <color=#109d06FF>%s0</color> for reaching <Word info=crossserverarena id=%s1/> in the Cross-Server Ladder Match and claiming Rank Rewards. <color=#109d06><a>I want to join too|openui=276</a></color>    
CrossMatching23    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for achieving World Rank <color=#109d06FF>%s2-%s3</color> in the Cross-Server Ladder Match Settlement for Season S%s1, claiming <Word info=item ID=%s4/> and other Season Rewards. <color=#109d06><a>Learn More|openui=278</a></color>    
CrossMatching24    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for reaching <Word info=crossserverarena id=%s2/> in the Cross-Server Ladder Match Settlement for Season S%s1, claiming <Word info=item ID=%s3/> and other Season Rewards. <color=#109d06><a>Learn More|openui=278</a></color>    
CrossMatching25    0    0    2|20    Cross-Server Matchmaking Attempts Increased by <color=#109d06FF>%s0</color> times    
CrossMatching26    0    0    2    Please use when the Cross-Server Ladder Match starts.    
NotifySeasonOver    0    0    2    Season Ended    
TreasureOneVsOneSeasonNotStart    0    0    2    <color=#fa1010ff>Season hasn't started yet, coming soon</color>    
KingTreasureWearLimit    0    0    2    <color=#fa1010ff>%s0 Magic Artifacts equipped. Unable to equip more; please unequip one first</color>    
CrossMap1    0    0    2    You're in party matchmaking, unable to enter cross-server maps    
CrossMap2    0    0    2    You're preparing to enter a dungeon, unable to access Cross-Server Maps    
CrossMap3    0    0    2    You're in cross-server matchmaking, unable to enter cross-server maps    
CrossMap4    0    0    2    You are dead and cannot travel to cross-server maps    
CrossMap5    0    0    2|20    Failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance. Please exit the Cross-Server Map before executing this operation    
CrossMap6    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because you are in a Cross-Server Map    
CrossMap7    0    0    2|20    Auto-Matchmaking for <color=#12a199ff><Word info=Map ID=%s0/></color> Instance failed because <color=#109d06FF>%s1</color> is in a Cross-Server Map    
CrossMap8    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because currently in a Cross-Server Map    
CrossMap9    0    0    2|41    Team Leader failed to enter <color=#12a199ff><Word info=Map ID=%s0/></color> Instance because <color=#109d06ff>%s1</color> is currently in a Cross-Server Map    
CrossMap10    0    0    2    You are in a Cross-Server Map. Please exit the Cross-Server Map before executing this Operation.    
CrossMap11    0    0    2    You're in a BOSS fight, unable to enter cross-server maps.    
FashionDressResolveOpenError    0    0    2    No Costumes to Dismantle (Unlockable and Star-up Costume Items cannot be dismantled)    
FashionDressLevelUpError_1    0    0    2    Insufficient Costume Items, unable to star-up    0
FashionDecomposeRemind    0    0    2    Please select the costume to dismantle    
NoneOfSelectQualityFashionDress    0    0    2    No Costume Available    
OutofActivityTime    0    0    2    Not within the current event timeframe    
NotEenoughGrade    0    0    2    Your level does not meet the event requirements    
SevenDayIntegral    0    0    2    Obtain Day <color=#109d06FF>%s0</color> <color=#109d06FF>%s1</color> Points of the Seven-Day Tour Event    
SevenDayIntegral1    0    0    2    Obtain <color=#109d06FF>%s1</color> Points for day <color=#109d06FF>%s0</color> of the Festival Tour Event    
SevenDayIntegral2    0    0    2    Cannot be used outside the Event period.    
SevenDayStart    0    0    5|20    Seven-Day Tour Event Activated, Points Grand Prize Awaits!    
SevenDayEnd    0    0    5|20    Seven-Day Tour Event is ending soon! Hurry up and make a final push for the Grand Prize!    
SevenDayOver    0    0    5|20    Seven-Day Tour event has ended. Please check your Mail for unclaimed rewards!    
SevenDayStart1    0    0    5|20    Festival Tour Carnival Event Activated! Points and Grand Prizes await!    
SevenDayEnd1    0    0    5|20    Festival Tour Event is ending soon! Hurry up and make a final push for the Grand Prize!    
SevenDayOver1    0    0    5|20    Festival Tour Carnival event has ended! Please check your Mail for unclaimed rewards!    
SevenDayOver2    0    0    2    The event has ended. Check your Mail for unclaimed rewards!    
CrossServerHint    0    0    2    Cross-server chat will be available after unlocking Level 310 Penglai Immortal Realm.    
TryEnterJadeDynastyBossError_1    0    0    2    Level requirement not met, unable to enter dungeon    
TryEnterJadeDynastyBossError_2    0    0    2    Realm requirement not met, unable to enter Dungeon    
TryEnterJadeDynastyBossError_3    0    0    2    Thunder Punishment rating does not meet requirements, unable to enter dungeon    
TryEnterJadeDynastyBossError_4    0    0    2    Challenge attempts insufficient, unable to enter dungeon    
TryEnterJadeDynastyBossError_5    0    0    2    Cleaning up the battlefield, please come back later for a challenge    
TryEnterJadeDynastyBossError_6    0    0    2    Unable to enter the dungeon: ownership attempts at 0 and no Alliance players inside.    
TryEnterJadeDynastyBossError_7    0    0    2    All players in the current instance have no ownership attempts and cannot deal damage to the Thunder Punishment Boss.    
JadeDynastyBossBuyTimesError    0    0    2    Unable to purchase attempts in Thunder Punishment BOSS instance    
KillGodTowerInfo_1    0    0    4|20    <color=#109d06FF>%s0</color>'s Power is astonishing, cleared Star Tower Floor <Word info=skytowerfloor id=%s1/>    
ZhuXianShenJi1    0    0    5|20    Thunder Punishment Sword Skill, Damage Explosion! Congratulations to <color=#109d06FF>%s0</color> for activating the Thunder Punishment godly skill <color=#006be3FF><Word info=Skill ID=%s0/></color>, probability to deal massive damage when attacking!    
ZhuXianShenJi2    0    0    5|20    2x Attack Speed, strike till your muscles cramp! Congrats to <color=#109d06FF>%s0</color> for activating the Thunder Punishment godly skill <color=#006be3FF><Word info=Skill ID=%s0/></color>, chance to obtain 2x Attack Speed effect when attacking!    
ZhuXianShenJi3    0    0    5|20    One-hit kill! Even immortals can't save you! Congratulations to <color=#109d06FF>%s0</color> for activating the divine skill Thunder Punishment <color=#006be3FF><Word info=Skill ID=%s0/></color>. When attacking players with low HP, there's a probability to instantly kill them!    
FuncLimit_ZXZB    0    0    2    %s0 Activate Thunder Punishment Equipment    
FuncLimit_ZXT    0    0    2    %s0 Activates Star Tower    
FuncLimit_ZXBoss    0    0    2    %s0 Activate Thunder Punishment BOSS    
FuncLimit_ZXBS    0    0    2    %s0 activates Thunder Punishment Gemstone    
JadeDynastyEquip    0    0    2    Please unlock Level %s0 of the Star Tower first    
JadeDynastyDecompose    0    0    2    No Thunder Punishment Equipment available to Dismantle    
ActivityOpenRedBag1    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for snatching a cumulative total of <color=#109d06ff>%s1 Spirit Stones</color> in the Snatch Red Envelope Festival Event! <color=#109d06><a>I want to snatch too|openui=303</a></color>    0
FestivalSystemOpenError    0    0    2    Red Envelope activation time not reached    
FestivalSystemOpenOverude    0    0    2    The Red Envelope has expired.    
LuckyAppraisal_1    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color>! Your luck is overflowing! You have obtained the Lucky Grand Prize <color=#109d06ff><Word info=item ID=%s1/></color> during the Lucky Treasure Appraisal Event! <color=#109d06><a>[Check it out]|openui=306</a></color>    
LoginAward_Start    0    0    5|20    <color=#109D06>Login Rewards</color> event is now Activated. Players who have reached Level 110 can go to the Login Rewards event in the Exciting Event Interface to claim generous rewards. <color=#109D06><a>Check it out now|openui=307</a></color>    
LoginAward_End    0    0    5|20    <color=#109D06>Login Rewards</color> event has ended. Check your Mail for any unclaimed rewards!    
LuckyAppraisal_Start    0    0    5|20    <color=#109D06>Lucky Treasure Appraisal</color> event is now Activated. Players who have reached Level 110 can go to the Exciting Event Interface to participate in Treasure Appraisal, with a chance to win the Lucky Grand Prize. <color=#109D06><a>Check it out now|openui=306</a></color>    
LuckyAppraisal_End    0    0    5|20    <color=#109D06>Lucky Treasure Appraisal</color> event has ended. Thank you to all Fellow Adventurers for your active participation!    
TreasureSkillUnlock    0    0    2    Skill not yet unlocked, activate after unlocking %s0 Magic Artifact    
TreasureSkillLevelUpError2    0    0    2    Not enough Skill Books. Please obtain enough first.    
Paimai1    0    0    2    Players are currently bidding on this item, please wait    
Paimai2    0    0    2    The current bidding price has changed. Please place your bid again.    
Paimai3    0    0    2    This item does not exist    
Paimai4    0    0    5|20    The All-Server Auction House has listed an Epic Item <a><Word info=item ID=%s0/>|showitem=%s0</a>. Auctioning will begin in <color=#109d06ff>%s1</color> minutes!    
Paimai5    0    0    2    Target auction item does not exist    
Paimai6    0    0    5|20    Congratulations to player <color=#109d06FF><a>%s0|showplayer=%s1</a></color> for winning the Epic Item <a><Word info=item ID=%s4/>|showitem=%s4</a> at <Word info=RichTextMsgReplace Name=Market id=%s2/> with <color=#109d06ff>%s3</color> Immortal Jade    
Paimai7    0    0    2    This player has participated in Guild auction bidding and cannot be kicked out of the Guild.    
Paimai8    0    0    2    You cannot exit the Guild while participating in the Guild Auction.    
Paimai9    0    0    2    The current item already has players bidding on it and cannot be delisted.    
Paimai10    0    0    5|20    Cross-Server Auction House has listed an Epic Item <a><Word info=item ID=%s0/>|showitem=%s0</a>, auction will begin in <color=#109d06ff>%s1</color> minutes!    
PaimaiGiveItemOK    0    0    2    Auction Item purchased successfully and added to Inventory.    
PaimaiGiveItemMail    0    0    2    Inventory full, your purchased Auction Item has been sent via mail.    
AutoBuyEquipLackEquip    0    0    2    Insufficient equipment for auto-purchase in the Auction House, please try again later!    
AutoBuyEquipLackMoney    0    0    2    <color=#fa1010><Word info=RichTextMsgReplace Name=MONEY id=%s0/> is insufficient</color>, unable to Auto Star-Up!    
StarLevelUp    0    0    5|20    Congratulations to Player <color=#109d06ff>%s0</color> for upgrading <color=#109d06ff><a><Word info=item ID=%s1/>|showitem=%s1 userdata=%s2 guid=%s3</a></color> to <color=#109d06ff>%s4</color> Stars, obtaining new Star-Up Attributes!    
AllStarLevelUp    0    0    5|20    Congratulations to Player <color=#109d06ff>%s0</color> for upgrading all <Word info=equipsuitname id=%s1/> Components to <color=#109d06ff>%s3</color> Stars, activating a new Set Bonus and causing Combat Power to Surge!    
AllStarLevelUp2    0    0    5|20    Congratulations to Player <color=#109d06ff>%s0</color> for equipping all <Word info=equipsuitname id=%s1/> components, activating set attributes and causing combat power to surge!    
LeagueBOSSExitError1    0    0    2    Unable to exit Guild during the Demon Invasion event    
AllianceBossDead    0    0    2    Demon invasion defeated    
AllianceBossText2    0    0    2    Guild Member <color=#109d06ff>%s0</color> performed Guild Morale Boost, Boost Level <color=#109d06ff>%s1</color>    
AllianceBossText3    0    0    2    %s0 activate Demon Invasion    
AllianceBossText4    0    0    5|20    Demon Invasion event will Activate in 5 minutes, Fellow Adventurers remember to participate!    
AllianceBossHP1    0    0    5|20    <Word info=NPC ID=%s0/> has only %s1% HP left. <color=#109d06><a>Go instantly|openui=308</a></color>    
AllianceBossHP2    0    0    5|20    <Word info=NPC ID=%s0/> has only %s1% HP left. <color=#109d06><a>Go instantly|openui=309</a></color>    
RealmLevelUpError_1    0    0    2    Your level does not meet the requirements!    
RealmLevelUpError_2    0    0    2    Please Defeat the Inner Demon First!    
RealmLevelUpError_3    0    0    2    Insufficient items!    
StarLevelUp1    0    0    2    Equip Higher Quality Equipment to be able to continue Star-Up    
StarLevelUp2    0    0    2    Not enough <a><Word info=item ID=%s0/>|showitem=%s0</a> to Star-Up!    
StarLevelUp3    0    0    2    Insufficient Materials to Star-Up    
StarLevelUp4    0    0    2    Equip Orange or Higher Quality Equipment to be able to Star-Up    
StarLevelUp5    0    0    2    Insufficient Materials to Star-Up!    
StarLevelUp6    0    0    2    Star-Up Probability enhanced to 100%, unable to add more materials!    
WashStone1    0    0    2    Insufficient Refinement Stones, unable to refine!    
RealmEquipNoEnough    0    0    2    Realm Enhanced to <color=#109d06ff>%s0</color> Unlocks <color=#109d06ff>%s1</color>!    
WashStarRequirement    0    0    2    Insufficient Star Level, unable to Refine!    
WashOperateTip1    0    0    2    This attribute is already flawless and cannot be enhanced further    0
WearRealmEquip    0    0    2    You've already equipped all the best gear    
TakeOutRealmExp    0    0    2    Successfully extracted <color=#109d06ff>%s0</color> Cultivation Points from the Cultivation Pool!    
RealmPoolOpenLimit    0    0    2    Enhance to%s0 Activate    
WashUnSavedTip    0    0    2    There are unsaved attributes. Please save first.    0
QCBOSSHP1    0    0    2    <Word info=NPC ID=%s0/> has only %s1% HP left. <color=#109d06><a>Go instantly|openui=308</a></color>    
WearRealmEquip1    0    0    2    <color=#109d06ff>%s0 Equipment</color> has been set as Character Appearance!    
FuncLimit_ZBSX    0    0    2    %s0 activates Star-Up feature    
SellCountLimit    0    0    2    Item listing limit reached    
LotAuctionLimit    0    0    2    The auction item has expired and cannot be listed.    
SkillCastingState    0    0    2    You are currently in %s0 and cannot cast skills.    
BossRealmHint    0    0    2    Your Realm is too low to deal Damage. Achieve Ascension to <Word info=realm ID=%s0/> to deal Damage to the BOSS.    
BossFightPowerHint    0    0    2    Your Combat Power is too low to deal Damage.    
FuncLimit_PMXY    0    0    2    %s0 Activate Immortal Domain    
Automatic_PMXY    0    0    2    Start Auto Immortal Domain    
Automatic_PMXY1    0    0    2    Stop Automation Ethereal Realm    
OpenHazyRegionError_1    0    0    2    The hour of Zi has passed, and Demonic Energy in the realm is increasing, making it impossible to enter. Please return between <color=#fa1010ff>%s0</color> and <color=#fa1010ff>%s1</color> o'clock.    
OpenHazyRegionError_3    0    0    2    <color=#fa1010ff>Insufficient Explore attempts, please try again tomorrow</color>    
OpenHazyRegionError_4    0    0    2    Explore is available after completing the Main Quest    
HazyGrassCollectError    0    0    2    <color=#fa1010ff>Gather limit reached</color>    
HazyRegionClose    0    0    2    Instance settlement in progress, please wait a few seconds    
AlchemyLearnError_1    0    0    2    <color=#fa1010ff>Insufficient count of required Pill Recipe items!</color>    
AlchemyLearnError_2    0    0    2    <color=#fa1010ff>Pill Alchemy Level Does Not Meet Requirements</color>    
AlchemyLearnError_3    0    0    2    <color=#fa1010ff>Total Points of Spirit Root do not meet the requirements</color>    
AlchemingError    0    0    2    <color=#fa1010ff>Only one elixir can be crafted at a time</color>    
RequestEnterCrossServerCD    0    0    2    Requests to enter cross-server are too frequent. Please try again later.    
OpenHazyAddTimesError_1    0    0    2    <color=#fa1010ff>Attempts limit reached</color>    
EnterHazyIncidentError_3    0    0    2    <color=#fa1010ff>Insufficient stamina, unable to Explore</color>    
EnterHazyIncidentError_4    0    0    2    <color=#fa1010ff>This event is completed. Please select other Events to explore</color>    
EquipStrengthLimitError_1    0    0    2    After enhancing the Evolution Level, you can continue enhancing.    
AlchemingSwitchError    0    0    2    <color=#fa1010ff>Cannot switch during Pill Alchemy</color>    
AlchemingSwitchError_1    0    0    2    <color=#fa1010ff>Pill alchemy ended, please open the furnace to retrieve pills</color>    
OpenHazyAddTimesError_2    0    0    2    <color=#fa1010ff>Daily purchase attempts limit reached</color>    
OpenHazyAddTimesError_3    0    0    2    <color=#fa1010ff>Daily usage attempts limit reached</color>    
HazyExitAdventureConfirm    0    0    2    <color=#fa1010ff>Exiting will prevent you from completing the Adventure. Confirm you want to exit?</color>    
OpenHazyRegionError_5    0    0    2    <color=#fa1010ff>Unable to loot items that don't belong to you</color>    
OpenHazyRegionError_6    0    0    2    <color=#fa1010ff>Attack drop attempts on chest mimics are full, no more items can be obtained</color>    
EnterHazyIncidentError_5    0    0    2    Cleaning up the battlefield, please come back later!    
AuctionHouseClose    0    0    2    The Auction House has closed.    
NoneReikiPointCanWash    0    0    2    No Spirit Root Points available for reset    
CheckEquip    0    0    2    This item has expired.    
ChatSendItemLimit    0    0    2    You can send info for up to 5 items    
FuncLimit_WXLGCZ    0    0    2    %s0 Activate Five Element Spirit Roots Reset    
NotSatisfyPreReikiRoot    0    0    2    Unlock Five Element Spirit Root Allocation at Level %s0    
FuncLimit_JNSJ    0    0    2    Activate Skill Level Up at Level %s0    
TaskFeedback1    0    0    2|20    <color=#fa1010FF>Insufficient Combat Power, please go to Skill Five Elements Mastery</color>    
TaskFeedback2    0    0    2|20    <color=#fa1010FF>Insufficient Pill Materials. Go to Ethereal Realm to obtain more</color>    
TaskFeedback3    0    0    2|20    <color=#fa1010FF>Not enough Spirit Root, consume Spirit Root Pill to increase Spirit Root</color>    
TaskFeedback4    0    0    2|20    <color=#fa1010FF>Combat Power is low. Enhance it now!</color>    
TaskFeedback5    0    0    2|20    <color=#fa1010FF>Insufficient equipment. Defeat the Qilin Blood Demon to obtain Blue Gear</color>    
TaskFeedback6    0    0    2|20    <color=#fa1010FF>Insufficient Spirit Root, Level Up to obtain Spirit Root Points</color>    
TaskFeedback7    0    0    2|20    <color=#fa1010FF>Insufficient Equipment. Defeat the Demon Ape to obtain Blue Gear</color>    
TaskFeedback8    0    0    2|20    <color=#fa1010FF>Insufficient equipment. Obtain Blue Gear at the Demon Sealing Altar</color>    
TaskFeedback9    0    0    2|20    <color=#fa1010ff>Insufficient Copper Coins</color>, go to <color=#109d06ff>Challenge Star Tower</color> to obtain large amounts of Copper Coins    
TaskFeedback10    0    0    2|20    <color=#fa1010FF>Insufficient equipment, go to the Demon Sealing Altar</color>    
TaskFeedback11    0    0    2|20    <color=#fa1010FF>Combat Power is low. Enhance it now!</color>    
TaskFeedback12    0    0    2|20    <color=#fa1010FF>Insufficient Spirit Root. Acquire more.</color>    
TaskFeedback13    0    0    2|20    <color=#fa1010FF>Spirit Root unassigned, go to Spirit Root Allocate Points</color>    
TaskFeedback14    0    0    2|20    <color=#fa1010FF>Insufficient Copper Coins. You can obtain large amounts of Copper Coins through Daily Quests.</color>    
TaskFeedback15    0    0    2|20    <color=#fa1010FF>Insufficient Defense, Boost your Defense</color>    
TaskFeedback16    0    0    2|20    <color=#fa1010FF>Insufficient equipment, go looting to obtain Orange Equipment</color>    
TaskFeedback17    0    0    2|20    <color=#fa1010FF>Cannot Star-Up, Not Equipped with Orange Equipment</color>    
AlchemyStudyJumpError_1    0    0    2|20    <color=#fa1010FF>Cannot Learn Pill Formula during Pill Alchemy</color>    
AlchemyStudyJumpError_2    0    0    2    Pill recipe learned    
TreasureDungeonGotoError_1    0    0    2    Recommended Combat Power and Recommended Defense insufficient, unable to challenge    
OpenHazyRegionError_2    0    0    2    <color=#fa1010ff>Activity Points</color> insufficient, unable to Explore    
BatchAlchemyError    0    0    2    Insufficient materials, unable to perform Batch Pill Alchemy    
BossRealmHint2    0    0    2    Enhance Realm to <Word info=realm ID=%s0/> to unlock the challenge    
NoneOfAnyActiveExpert    0    0    2    Activate Specialization, then drag the Specialization Icon to use.    
BatchAlchemyError_Vip    0    0    2    Reach <color=#fa1010ff>VIP Level 1</color> to Batch Craft Heavenly Pills    
TreasureSkillUnlock_Vip    0    0    2    Purchase <color=#fa1010ff>VIP%s0</color> Gift Pack to Activate the Skill    
WorldBossTime1    0    0    2    Daily attempts insufficient, unable to use.    
WorldBossTime2    0    0    2    You've reached the maximum number of World BOSS attempts. Further attempts are currently unavailable.    
VIPNotEnough    0    0    2    VIP Level insufficient, enhance to <color=#fa1010ff>VIP%s0</color> to purchase    
BatchAlchemyError_Level    0    0    2    Reach <color=#fa1010ff>%s0</color> Level to Activate Batch Pill Alchemy Feature    
BossRealmHint3    0    0    2    Challenge is available upon reaching Level %s0    
CrossOneVsOneMatching    0    0    2    Failed to go to the instance because you are in Cross-Server Matchmaking!    
TaskInductionError_2    0    0    2    Level requirements not met, unable to perform sensing    
SpiritOrgan    0    0    5|20    Congratulations to player <color=#109d06ff>%s0</color> for breaking through the spirit artifact <color=#109d06ff><a><Word info=item ID=%s1/>|showitem=%s1</a></color> to a new form <color=#109d06ff><a><Word info=item ID=%s2/>|showitem=%s2</a></color>, obtaining new attributes!    
SpiritOrgan1    0    0    2    Insufficient spirit artifact breakthrough materials, unable to breakthrough!    
ImpactRankActivityUnOpen    0    0    2    %s0 Event will Activate on Day <color=#109d06ff>%s1</color> after Server Launch    
StarLevelUpFail    0    0    2    Star-Up Failed!    
Contribution1    0    0    32    Guild Banquet Quiz: For every %s0 correct answers, all members at the Guild Banquet will obtain <color=#109d06ff>%s1 Activity Tokens</color>    
ItemCompoundJoblimit    0    0    2    Cannot synthesize items unusable by this Class    
CompoundLiantaiSkillRep    0    0    2    Synthesis of Lotus Platform Skill <color=#006be3FF><Word info=Skill ID=%s0/></color> is duplicated, cannot be synthesized    
DecompoundLiantai    0    0    2    Synthesize <color=#109d06ff>%s0</color> <Word info=item id=%s1/>    
NoBuyFireCnt    0    0    2    <color=#109d06ff>Insufficient purchase attempts for Supreme Fireworks. Go to Top-Up!</color>    
ContributionTime    0    0    4|20    Guild Dual Cultivation event starts in <color=#fa1010>%s0</color> minutes. Fellow Adventurers, don't forget to participate!    
BanquetTime    0    0    4|20    Guild Banquet event starts in <color=#fa1010>%s0</color> minutes. Fellow Adventurers, don't forget to participate!    
NoBossFirstKill    0    0    2    No player has achieved the World First Kill on <color=#109d06>%s0</color> yet    
GetBossFirstKillAwardYet    0    0    2    Collected Spirit Stones bonus rewards for <color=#109d06>%s0</color> World First Kill    
AuctionSuccess    0    0    2    Listed successfully. You can view it now.    
ServerCreateRoleLimit    0    0    2    This server cannot create new characters at the moment. We recommend creating a character on a new server.    
AuctionNoEquip    0    0    2    <color=#fa1010ff>Insufficient Auction House inventory</color>    
LockRole    0    0    2    <color=#fa1010ff>This character is temporarily unavailable</color>    
configloading    0    0    2    <color=#fa1010ff>Loading config, please try again later</color>    
AssistFBLimit    0    0    2    Cannot assist in Instance    
AssistStart    0    0    2    <color=#109d06ff>%s0</color> started assisting you    
AssistRequestOK    0    0    2    Alliance Support request sent, awaiting assistance.    
AssistCancel    0    0    2    <color=#109d06ff>%s0</color> canceled your assistance    
InAssistForbid    0    0    2    Cannot Party Up while assisting    
TagInAssistForbid    0    0    2    This player is assisting and cannot party up.    
AssistSuccess    0    0    2    <color=#109d06ff>Assist Success</color>    
AttackFBBossLimit    0    0    2    Today's BOSS attempts for this Instance are exhausted. Unable to deal damage to the BOSS.    
AssistBossFinish    0    0    32    <color=#109d06ff>%s0</color> assisted <color=#109d06ff>%s1</color> in killing LV.%s3 <color=#12a199FF><Word info=NPC id=%s4/></color> at <Word info=Map ID=%s2/>    
AssistFBFinish    0    0    32    <color=#109d06ff>%s0</color> assisted <color=#109d06ff>%s1</color> in completing <color=#109d06ff><Word info=Map ID=%s2/></color>    
RefreshPiaomiaoSFB    0    0    32    Congrats! <color=#109d06ff>%s0</color> luckily refreshed an <color=#109d06ff>S</color>-tier Ethereal Quest <color=#109d06ff><Word info=Map ID=%s1/></color>    
AssistIsGone    0    0    32    This assistance no longer exists    
AssistBossRequest0    0    0    32    <color=#109d06ff>%s0</color> initiated a kill assist request for <Word info=Map ID=%s1/>LV.%s2 <color=#12a199FF><Word info=NPC id=%s3/></color>    
AssistBossRequest1    0    0    32    <color=#109d06ff>%s0</color> initiated another kill request for <Word info=Map ID=%s1/>LV.%s2 <color=#12a199FF><Word info=NPC id=%s3/></color>, support needed ASAP    
AssistBossRequest2    0    0    32    <color=#109d06ff>%s0</color> initiated yet another kill assist request for <Word info=Map ID=%s1/> LV.%s2 <color=#12a199FF><Word info=NPC id=%s3/></color>, the Boss is too strong.    
AssistFBRequest0    0    0    32    <color=#109d06ff>%s0</color> initiated a Clear assist request for <color=#109d06ff><Word info=Map ID=%s1/></color>    
AssistFBRequest1    0    0    32    <color=#109d06ff>%s0</color> once again initiated a Clear assist request for <color=#109d06ff><Word info=Map ID=%s1/></color>    
AssistFBRequest2    0    0    32    <color=#109d06ff>%s0</color> has initiated a Clear request for <color=#109d06ff><Word info=Map ID=%s1/></color> multiple times.    
AssistFail    0    0    2    <color=#fa1010ff>Assist Failed</color>    
TeamFBFail2    0    0    2    <color=#fa1010ff>You have no party instance quests in the Ethereal Realm</color>    
ActivityPlaceQuickFinishOK    0    0    2    Speed Boost successful! You've obtained Explore Rewards, hurry up and claim them now!    
ReWuTiShi1    0    0    2    Your level is below <color=#fa1010ff>Level 105</color>, unable to enter Sect Trial!    
SkyTowerChallenge1    0    0    2    No player has achieved the rewards progress yet    
BossRebornBossKilled    0    0    5|20    BOSS Revive Event BOSS <color=#109d06><Word info=npc id=%s0/></color> has been killed by Fellow Daoists. All-Server Rewards have been sent via in-game mail!    
Practice    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the <color=#109d06FF>Cultivation Battle Pass</color>, their Combat Power will skyrocket! <color=#109d06><a>I want to buy too|openui=353</a></color>    
DJ_Equip_UnUse_Lv    0    0    2    <color=#fa1010ff>Your level is insufficient</color>, you cannot use this item!    0
RequestLater    0    0    2    <color=#fa1010ff>Action performed too frequently</color>, please try again later!    0
ArenaBattleCountAdd    0    0    2    Arena Challenge Attempts increased by <color=#109d06FF>%s0</color>    0
CollectWordsExchange    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for collecting all items in the Word Collection Event and successfully exchanging them for <color=#006be3FF><Word info=item ID=%s1/></color>    
Bargaingift5    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=750/>|showitem=750</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift6    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=751/>|showitem=751</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift7    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=752/>|showitem=752</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift8    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=753/>|showitem=753</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift9    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=754/>|showitem=754</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift10    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=755/>|showitem=755</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift11    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=756/>|showitem=756</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift12    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=757/>|showitem=757</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift13    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=758/>|showitem=758</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift14    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=759/>|showitem=759</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift15    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=760/>|showitem=760</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift16    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing <a><Word info=item id=761/>|showitem=761</a>, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift50    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the Enhancement Gift Pack, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift51    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the Mount Gift Pack, their Combat Power skyrocketed! <color=#109d06FF><a>I want to buy too|openui=368</a></color>    
Bargaingift52    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the Pill Alchemy Gift Pack, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift53    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the Spirit Stone Gift Pack! Their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift54    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the Pet Spirit Gift Pack, their Combat Power skyrocketed! <color=#109d06><a>I want one too|openui=368</a></color>    
Bargaingift55    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the Level Up Gift Pack, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift56    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the Divine Weapon Gift Pack, their Combat Power soared! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift57    0    0    5|20    Congrats to <color=#109d06FF>%s0</color> for purchasing the Gemstone Gift Pack! Their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift58    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the Accessory Gift Pack, their Combat Power soared! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift59    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the Refinement Gift Pack, their Combat Power skyrocketed! <color=#109d06><a>I want to buy too|openui=368</a></color>    
Bargaingift60    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the Rune Gift Pack! Combat Power skyrocketed! <color=#109d06><a>I want one too|openui=368</a></color>    
Bargaingift61    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for purchasing the Divine Beast Gift Pack, their Combat Power soared! <color=#109d06><a>I want to buy too|openui=368</a></color>    
CZBMLimit    0    0    2    Today's purchase limit of <color=#109d06ff>%s0</color> reached, please come back tomorrow.    
NoPerRecordAudio    0    0    2    No Microphone Permission. Unable to send Voice Chat. Please go to System Settings to enable.    
WishBottle    0    0    2    <color=#109d06ff>Blessing Bottle</color> can only be claimed once per item. Please select another reward    
WishBottle1    0    0    2    <color=#109d06ff>Please select your rewards before claiming</color>    
WishBottle2    0    0    2    <color=#fa1010ff>Insufficient Blessing Points</color>    
FuncPrivilege2    0    0    2    Insufficient Privilege Tokens, please purchase Privilege Tokens first    
GarbageSortingRight    0    0    2    Deploy Correct, Environmental Value +<color=#fa1010ff>%s0</color>    
GarbageSortingWrong    0    0    2    Deploy Error, Environmental Value +<color=#fa1010ff>%s0</color>    
XianXiaMJ30    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for drawing <a><Word info=item ID=%s1/>|showitem=%s1</a>x%s2 in the Environmental Protection Event, contributing more Strength to the Immortal Realm. <color=#109d06ff><a>I want to participate too|openui=414</a></color>    0
ArenaBuyTimes    0    0    2    This item is not in your Inventory and cannot be used.    
ArenaAddTimes    0    0    2    Current arena attempt count has reached the limit, unable to use.    
ArenaPKTimes    0    0    2    Arena Challenge attempts limit reached, unable to use    
XianXiaMJ31    0    0    2    <color=#109d06ff>Please select the Grand Prize on the left first</color>    
XianXiaMJ32    0    0    2    <color=#fa1010ff>Insufficient Currency, please acquire more</color>    
XianXiaMJ33    0    0    2    <color=#fa1010ff>Reach the corresponding Floor to select this reward</color>    
XianXiaMJ34    0    0    2    <color=#fa1010ff>This grand prize has been fully collected. Please choose another grand prize</color>    
ArenaRefreshTimes    0    0    2    Current arena refresh attempts exhausted    
ArenaWinerItem    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for winning the Arena Challenge and luckily obtaining <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>x%s3    0
NotEnoughMaterial    0    0    2    <color=#fa1010ff>Insufficient materials, unable to perform operation</color>    
FosterFeedFail    0    0    2    Not enough of this item in Inventory to use for feeding    
FosterHorseOpenFail    0    0    2    <color=#ff0303>%s0</color> activates Mount Cultivation feature    
FosterPetOpenFail    0    0    2    <color=#ff0303>Level %s0</color> Activate Pet Spirit Cultivation Feature    
FosterLingQi14OpenFail    0    0    2    <color=#ff0303>%s0</color> activates Baby Dragon Cultivation feature    
FosterLingQi13OpenFail    0    0    2    <color=#ff0303>%s0</color> Activates Wings Cultivation Feature    
FosterLingQi16OpenFail    0    0    2    <color=#ff0303>%s0</color> Activate Apocalypse Cultivation feature    
FosterLingQi17OpenFail    0    0    2    <color=#ff0303>%s0</color> Activate Devourer Cultivation feature    
FosterPetLockFail    0    0    2    <color=#fa1010ff>Pet Spirit not activated</color>, unable to unlock Pet Spirit Cultivation feature    
FosterStoreLimit    0    0    2    Insufficient cultivation pills in shop    
ArenaTimeLimit    0    0    2    Arena closed from 4:00 to 5:00    
FosterFeedLVFail    0    0    2    Enhance Realm to <color=#ff0303>%s0</color> to Activate Feeding    
FosterLingQi14EquipFail    0    0    2    You have <color=#fa1010ff>Not Equipped a Guardian</color>, unable to activate Guardian Cultivation feature    
FosterLingQi13EquipFail    0    0    2    You have <color=#fa1010ff>not equipped Wings</color> and cannot activate the Wings Cultivation feature.    
FosterLingQi16EquipFail    0    0    2    You have <color=#fa1010ff>Not Equipped Apocalypse</color>, unable to activate Apocalypse Cultivation feature    
FosterLingQi17EquipFail    0    0    2    You have <color=#fa1010ff>Not Equipped the Devourer</color>, unable to activate the Devourer Cultivation feature    
ArenaFightPlayer    0    0    2    Player <color=#fa1010ff>%s0</color> challenged you in the Arena    
TurntableItem20    0    0    5|20    Congratulations to <color=#109d06ff>%s0</color> for obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>x%s2 during the Server Merge Roulette Event. <a>I want to spin too|openui=2015</a>    0
LuckyCloudBuyOpen    0    0    5|20    This round's Cloud Purchase has been activated, with the grand prize being <a><Word info=item ID=%s0/>|showitem=%s0</a>x%s1. Fellow adventurers, hurry to the flash sale! <color=#109d06><a>I also want to buy|openui=368</a></color>    0
LuckyCloudBuyClose    0    0    5|20    This Round of Cloud Purchase has ended. The winning number is <color=#109d06>%s0</color>. Congratulations to Fellow Adventurer <color=#109d06>%s1</color> for obtaining the Grand Prize: <a><Word info=item ID=%s2/>|showitem=%s2</a>x%s3    0
LuckyCloudBuyError    0    0    2    Operation anomaly, please try again    
ShopBuyLimit    0    0    2    <color=#fa1010FF>Unable to purchase, purchase limit reached</color>    
RedpackJH    0    5217            
SendFlowers520    0    1213    5|20    <color=#109d06>%s0</color> gifted <color=#109d06>%s1</color> <a><Word info=item ID=%s2/>|showitem=%s2</a>, which is an expression of endless affection.    
SendFlowers1314    0    1210    5|20    <color=#109d06>%s0</color> gifted to <color=#109d06>%s1</color> <a><Word info=item ID=%s2/>|showitem=%s2</a>, a symbol of eternal love and undying devotion    
NoInDBPlayer    0    0    2    Player does not exist    0
LoveOffline    0    0    2|20    The player is offline    0
AddCharm    0    0    2|20    Obtained <color=#109d06FF>%s0</color> Charisma points    0
AddIntimacy    0    0    2|20    Intimacy with <color=#109d06FF>%s0</color> increased by <color=#109d06FF>%s1</color> points    0
DelIntimacy    0    0    2|20    Intimacy with <color=#109d06FF>%s0</color> decreased by <color=#109d06FF>%s1</color> points    0
HaveCouple    0    0    2|20    already has a partner    0
TagHaveCouple    0    0    2|20    The other person already has a Partner.    0
IntimacyLack    0    0    2|20    Insufficient Intimacy <color=#109d06>%s0</color>, unable to propose    0
MarryReqLimitByCandy    0    0    2|20    You are hosting a Wedding Banquet. Please wait until the banquet ends before performing any operation.    0
MarryReqInvalid    0    0    2|20    This proposal has failed or is deactivated.    0
MarrySuccess1    0    1210    5|20    Congratulations to <color=#109d06>%s0</color> and <color=#109d06>%s1</color> on their marriage. May they grow old together and forever bask in love's glow. They have obtained a Love Ring and <a><Word info=item ID=%s2/>|showitem=%s2</a>x%s3    
MarrySuccess2    0    1210    5|20    Congratulations to <color=#109d06>%s0</color> and <color=#109d06>%s1</color> on their marriage. May they grow old together and forever be in love. They have obtained a Love Ring, <a><Word info=item ID=%s2/>|showitem=%s2</a>x%s3, and <a><Word info=item ID=%s4/>|showitem=%s4</a>x%s5    
MarrySuccess3    0    1210    5|20    Congratulations to <color=#109d06>%s0</color> and <color=#109d06>%s1</color> on their marriage. May they grow old together and forever be in love. They have obtained a Love Ring, <a><Word info=item ID=%s2/>|showitem=%s2</a>x%s3, and <a><Word info=item ID=%s4/>|showitem=%s4</a>x%s5    
EatCandyItemNotify    0    0    5|20    Congratulations to <color=#109d06>%s0</color> for obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>x%s2 from Wedding Candy    
EatCandyProsperity    0    0    2|20    <color=#109d06>%s0</color> ate a Wedding Candy, Prosperity +<color=#109d06>%s1</color>    0
BuyFireworks    0    1214    5|20    <color=#109d06>%s0</color> player lit wedding fireworks for <color=#109d06>%s1</color> and <color=#109d06>%s2</color>, blessing the newlyweds with a lifetime of happiness. <color=#109d06>Prosperity +100</color>    
MarryFireworksSoldout    0    0    2|20    The fireworks for this Wedding Banquet have sold out. Why not try visiting another one?    0
AddFCPartyPoint    0    0    2|20    Obtained <color=#109d06FF>%s0</color> Hype Points    0
OnlyTwoMemTeamCanEnter    0    0    2|20    Only 2-player teams can enter <color=#109d06><Word info=Map ID=%s0/></color>    0
FlowerNoPlayer    0    0    2    <color=#fa1010FF>Please select an object first</color>    
StoreNotEnough    0    0    2    <color=#fa1010FF>Insufficient shop item count, unable to proceed with giveaway</color>    
Marry1    0    0    2    <color=#fa1010FF>No target, please add a friend</color>    
Marry2    0    0    2    <color=#fa1010FF>Partner is offline, cannot propose</color>    
Marry3    0    0    2    <color=#fa1010FF>Insufficient Intimacy %s0, unable to make a proposal</color>    
Marry4    0    0    2    Proposal Success, awaiting response    
Marry5    0    0    2|20    Sorry, this proposal has timed out    
Marry6    0    0    2    This Wedding Banquet Match has Ended. Please select another.    
Marry7    0    0    2    Cannot make a proposal repeatedly in the same tier    
DelFriendCoupleLimit    0    0    2    Partners cannot be removed from friends    
AddBlackCoupleLimit    0    0    2    Partners cannot be added to the Blacklist.    
Marry8    0    0    2    <color=#fa1010FF>Instance Attempts can only be purchased after marriage</color>    
Marry9    0    0    2    Divorce is possible only after <color=#109d06>%s0</color> days. Proposal resets the timer.    
LimitByMarryBroke    0    0    2    Unable to perform this operation during the Uncoupling process.    
ActGodGiftNotify    0    0    5|20    Congratulations to <color=#109d06>%s0</color> for obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>x%s2 from the Celestial Emperor's Gift Pack.    0
TongTianLingActive    0    0    2    Immortal Quality Sky Order Token Unlock Success    0
TongTianLingLVAward    0    0    5|20    Congratulations to <color=#109d06>%s0</color> for claiming Sky Order Token rewards and obtaining <a><Word info=item ID=%s1/>|showitem=%s1</a>x%s2    0
HongZhuangeSucces1    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for Successfully Synthesized <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
HongZhuangeSucces2    0    0    5|20    Congratulations to <color=#109d06FF>%s0</color> for successfully merging Lotus Platform <a><Word info=item ID=%s1 userdata=%s2/>|showitem=%s1 userdata=%s2</a>    0
CrossBattlefieldSysCallBuy    0    0    5|20    <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s0/></color>'s <color=#109d06>%s1</color> has purchased a Battlefield Summon, activating extra Points and a BOSS Damage Bonus. I'll get one too.    0
CrossBattlefieldBuyOpen    0    0    5|20    Fellow Adventurer <color=#109d06>%s0</color> activated Summon for <color=#109d06>%s1</color> Ancient God Battlefield. Join now!    0
CrossBattlefieldOpenSys    0    0    5|20    The Ancient God Battlefield will activate in <color=#fa1010>%s0</color> minutes, Fellow Adventurers, don't miss out!    
CrossBattlefieldOpenPlayer    0    0    5|20    Fellow Adventurer <color=#109d06>%s0</color>'s Ancient God Battlefield will activate in <color=#fa1010>%s1</color> minutes. Fellow Adventurers, get ready to join!    
CrossBattlefieldStartFighting    0    0    4|20    The Ancient God Battlefield factions have been assigned. Hurry and seize the Resource Crystal!    
CrossBattlefieldCollectOwnerLimit    0    0    2    Your faction has already occupied this resource, no need to occupy it again    0
CrossBattlefieldOccupiedSelf    0    0    4|51    Our Team <color=#109d06>%s0</color> Occupied a Resource Crystal, 666    0
CrossBattlefieldOccupiedOther    0    0    4|51    Enemy <color=#109d06>%s0</color> has occupied the Resources Crystal. Hurry and seize it back!    0
CrossBattlefieldKillGuardSelf    0    0    4|51    Our Team's <color=#109d06>%s0</color> killed an enemy Guardian. Press the advantage and go occupy the enemy's Resource Crystal    0
CrossBattlefieldKillGuardOther    0    0    4|51    The Guard was killed by enemy <color=#109d06>%s0</color>. Defend the Resources Crystal quickly!    0
CrossBattlefieldItemRebornLimit    0    0    2    Item revive attempts exhausted for this match.    0
CrossBattlefieldBuff_30908110    0    0    4|51    Faction BUFF <color=#12a119FF><Word info=NPC ID=%s0/></color> has appeared, causing enemy faction Players to lose HP over time. Hurry and go seize it now!    
CrossBattlefieldBuffOK_30908110    0    0    4|51    <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s0/></color>'s <color=#109d06>%s1</color> gathered Faction Buff <color=#12a119FF><Word info=NPC ID=%s2/></color>, all players of <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s3/></color> are continuously losing HP    
CrossBattlefieldBuff_30908111    0    0    4|51    Faction BUFF <color=#12a119FF><Word info=NPC ID=%s0/></color> has appeared, which can reduce enemy faction players' Attack Power. Hurry up and go seize it!    
CrossBattlefieldBuffOK_30908111    0    0    4|51    <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s0/></color>'s <color=#109d06>%s1</color> Gathered Faction Buff <color=#12a119FF><Word info=NPC ID=%s2/></color>, all players of <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s3/></color> have reduced Attack Power    
CrossBattlefieldBuff_30908112    0    0    4|51    Faction BUFF <color=#12a119FF><Word info=NPC ID=%s0/></color> has appeared, boosting resource gathering speed for our side's buildings. Hurry and seize it!    
CrossBattlefieldBuffOK_30908112    0    0    4|51    <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s0/></color>'s <color=#109d06>%s1</color> Gathered Faction BUFF <color=#12a119FF><Word info=NPC ID=%s2/></color>, All buildings of <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s3/></color> gain enhanced Resource generation speed    
CrossBattlefieldBuff_30908113    0    0    4|51    Faction BUFF <color=#12a119FF><Word info=NPC ID=%s0/></color> has appeared, providing our faction players with continuous HP regeneration. Hurry and go seize it now!    
CrossBattlefieldBuffOK_30908113    0    0    4|51    <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s0/></color>'s <color=#109d06>%s1</color> gathered Faction Buff <color=#12a119FF><Word info=NPC ID=%s2/></color>, all players of <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s3/></color> continuously heal    
CrossBattlefieldEventAura    0    0    4|51    Battlefield <color=#12a119FF><Word info=NPC ID=%s0/></color> has appeared. Players in the Aura Zone can continuously earn random Points. Quickly click the Icon to head there now!    
CrossBattlefieldEventWall    0    0    4|51    Battlefield <color=#12a119FF><Word info=NPC ID=%s0/></color> has appeared. Gather the Score Wall to obtain <color=#109d06>%s1</color> Faction Points. can be gathered <color=#109d06>%s2</color> times. Quickly click the icon to head there now.    
CrossBattlefieldEventBoss    0    0    4|51    Battlefield <color=#12a119FF><Word info=NPC ID=%s0/></color> has appeared. The Faction with the highest total damage to the BOSS can obtain <color=#109d06>%s1</color> Faction Points. Quickly click the Icon to head there now    
CrossBattlefieldWallTimeLimit    0    0    2    Score Wall gathered. Ready again in <color=#fa1010>%s0</color> seconds.    
CrossBattlefieldWallCollectOK    0    0    4|51    <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s0/></color>'s <color=#109d06>%s1</color> gathered <color=#12a119FF><Word info=NPC ID=%s2/></color>, obtaining <color=#109d06ff>%s3</color> Faction Points    
CrossBattlefieldBossKilled    0    0    4|51    <color=#12a119FF><Word info=NPC ID=%s0/></color> has been defeated, <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s1/></color> faction obtained <color=#109d06>%s2</color> points, all players involved in the kill obtain <color=#109d06>%s3</color> individual points    
CrossBattlefieldKillKing1    0    0    4|51    <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s0/></color>'s <color=#109d06>%s1</color> killed <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s2/></color>'s Points King <color=#109d06>%s3</color>, incredibly heroic! Faction obtain Extra <color=#109d06>%s4</color> Points. <color=#109d06><a>Join the Battle|FindPlayer=1 mapId=%s5 x=%s6 y=%s7 line=%s8</a></color>    
CrossBattlefieldKillKing2    0    0    4|51    <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s0/></color>'s <color=#109d06>%s1</color> has killed the general of <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s2/></color>, <color=#109d06>%s3</color>, showing incredible bravery! Faction obtained extra <color=#109d06>%s4</color> points. <color=#109d06><a>Join the battle|FindPlayer=1 mapId=%s5 x=%s6 y=%s7 line=%s8</a></color>    
CrossBattlefieldSuperItemPlayer    0    0    5|51    <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s0/></color> Faction's progress is ahead, activating an Extra Ancient God's Grand Prize. <color=#109d06>%s1</color> got super lucky and obtained <a><Word info=item ID=%s2/>|showitem=%s2</a>x%s3    
CrossBattlefieldOver    0    0    5|20    <color=#109d06ff><Word info=RichTextMsgReplace Name=BattleFaction id=%s0/></color> Faction Victory, <color=#109d06>%s1</color> is the Points King of This Match, <color=#109d06>%s2</color> obtained the Ancient God's Grand Prize <a><Word info=item ID=%s3/>|showitem=%s3</a>x%s4, next expected to open at %s5.    
CrossBattlefieldCallOver    0    0    2    This summon has ended, unable to enter!    
CrossBattlefieldAlreadyJoin    0    0    2    You have already participated in this Match and cannot enter again.    
CrossBattlefieldBelate    0    0    2    Battlefield unavailable <color=#12a119FF>%s0</color> minutes after it begins!    
CrossBattlefieldCallServerOnly    0    0    2    The other player has set their settings to block cross-server summoning. You cannot join their team.    
FactionChatLimit    0    0    6    No Faction, unable to use this Channel    
CrossBattlefieldBuyLimit    0    0    2    <color=#fa1010FF>Can only be summoned on the battlefield</color>    
RealmLVNoEnough    0    0    2    Realm Enhanced to <color=#109d06ff>%s0</color> Unlock!    
ChoiceServer1    0    0    2    <color=#fa1010FF>Cannot enter this server without creating a character.</color>    0
MailTooMush    0    0    1|20    <color=#fa1010FF>You have multiple unclaimed mail. Exceeding the mail limit will result in auto deletion</color>    
SBDL1    0    0    2|20    <color=#fa1010FF>This account is already logged in on another device</color>    0
ActionUnOpen    0    0    2    <color=#fa1010ff>Event not activated, unable to proceed</color>    
LuckyCloudBuy1    0    0    2|20    <color=#fa1010FF>Insufficient Cloud Purchase attempts for the current round. Go to enhance</color>    
LuckyCloudBuy2    0    0    2|20    <color=#fa1010FF>Not enough total Cloud Purchase attempts for this round</color>    
MapLevelSelect1    0    7113    2|20    <color=#109d06ff>Map difficulty adjusted to %s0, proceed to Cultivation</color>    
MapLevelSelect2    0    0    2|20    The currently selected map's realm difficulty is too low. Your EXP and drops will be reduced.<color=#109D06FF><a>Go to Settings|openui=479</a></color>    
MapLevelSelect3    0    0    2|20    Your Realm level is insufficient    
CrossServerQualifying1    0    0    2|20    No current event information. Pending %s0 announcement.    
CrossServerQualifying2    0    0    2|20    There are currently no events.    
CrossServerQualifyingBeforeStart64    0    0    5|20    World War <color=#109d06FF>Top 64</color> will begin in <color=#109d06FF>%s0</color> minutes. Fellow Immortals, please prepare in advance    
CrossServerQualifyingMatchTime64    0    0    5|20    World War <color=#109d06FF>Top 64</color> battle list has been assigned. Open the World War interface to view details.    
CrossServerQualifyingMatchStart64    0    0    5|20    World War <color=#109d06FF>Top 64</color> has begun. Fellow Immortals, please enter the Battlefield promptly via the World War Interface.    
CrossServerQualifyingBeforeStart32    0    0    5|20    World War <color=#109d06FF>Top 32</color> will begin in <color=#109d06FF>%s0</color> minutes. Fellow Immortals, please prepare in advance    
CrossServerQualifyingMatchTime32    0    0    5|20    World War <color=#109d06FF>Top 32</color> battle list assigned, open World War interface for details.    
CrossServerQualifyingMatchStart32    0    0    5|20    World War <color=#109d06FF>Top 32</color> has begun. Fellow Immortals, please enter the Battlefield promptly via the World War Interface.    
CrossServerQualifyingBeforeStart16    0    0    5|20    World War <color=#109d06FF>Top 16</color> will begin in <color=#109d06FF>%s0</color> minutes. Fellow Immortals, please prepare in advance.    
CrossServerQualifyingMatchTime16    0    0    5|20    Battle for Supremacy <color=#109d06FF>Top 16</color> battle list has been assigned. Open the Battle for Supremacy interface to view details.    
CrossServerQualifyingMatchStart16    0    0    5|20    World War <color=#109d06FF>Top 16</color> has begun. Fellow Immortals, please enter the battlefield promptly via the World War Interface    
CrossServerQualifyingBeforeStart8    0    0    5|20    Battle for the Multiverse <color=#109d06FF>Top 8</color> will begin in <color=#109d06FF>%s0</color> minutes, Fellow Immortals please prepare in advance    
CrossServerQualifyingMatchTime8    0    0    5|20    World War <color=#109d06FF>Top 8</color> matchups assigned. Open the World War interface to view details.    
CrossServerQualifyingMatchStart8    0    0    5|20    World War <color=#109d06FF>Top 8</color> has begun. Fellow Immortals, please enter the battlefield promptly via the World War interface.    
CrossServerQualifyingBeforeStart4    0    0    5|20    Multiverse Battle for Supremacy <color=#109d06FF>Semifinals</color> will begin in <color=#109d06FF>%s0</color> minutes, Fellow Immortals please prepare in advance    
CrossServerQualifyingMatchTime4    0    0    5|20    Battle for Supremacy <color=#109d06FF>Semifinals</color> matchups assigned. Open the Battle for Supremacy interface to view details    
CrossServerQualifyingMatchStart4    0    0    5|20    Multiverse Battle <color=#109d06FF>Semifinals</color> have begun. Fellow Immortals, please enter the Battlefield promptly via the Interface.    
CrossServerQualifyingBeforeStart2    0    0    5|20    Battle for the Multiverse <color=#109d06FF>Finals</color> will begin in <color=#109d06FF>%s0</color> minutes. Fellow Immortals, please prepare in advance    
CrossServerQualifyingMatchTime2    0    0    5|20    Battle for Supremacy <color=#109d06FF>Finals</color> matchups assigned. Open the Battle for Supremacy Interface for Details.    
CrossServerQualifyingMatchStart2    0    0    5|20    World War <color=#109d06FF>Finals</color> have begun. Fellow Immortals, please enter the Battlefield promptly via the World War Interface.    
ChampionshipOfficialApplyFull    0    0    2    This Official Position application queue is Full    0
ChampionshipOfficialApplyMax    0    0    2    The number of official positions applied for simultaneously has reached the limit.    0
ChampionshipOfficialApplyOK    0    0    2    Application for official position successful, awaiting Realm Lord's approval.    0
ChampionshipAlreadyHasOfficial    0    0    2    You already have an Official Position    0
ChampionshipOver    0    0    5|20    Ranked Match has ended. New Immortal Officials have been appointed based on final rankings. Check it out    0
CrossServerQualifying3    0    0    2|20    Unable to enter. Please be aware of the start time so you don't miss the match.    
CrossServerQualifying4    0    0    2|20    Receive a bye and automatically advance to the next match.    
ActGodGiftNotify1    0    0    2    <color=#fa1010FF>No more total attempts available</color>    
ActGodGiftNotify2    0    0    2    <color=#fa1010FF>Insufficient item choices available</color>    
ActGodGiftNotify3    0    0    2    <color=#fa1010FF>All rewards claimed. Please reset the Prize Pool</color>    
shentongActive    0    0    2    <color=#fa1010FF>Available after activating %s0 Divine Skills</color>    
CrossServerQualifying5    0    0    2|20    Only one can be selected for each Ranking    
CrossServerQualifying6    0    0    2|20    Please select ranking first    
CrossServerQualifying7    0    0    2|20    You can only bet on a maximum of 8 players    
CrossServerQualifying8    0    0    2|20    Operation is on cooldown.    
CrossServerQualifying9    0    0    2|20    Congratulations! You've become the Immortal Palace of the Multiverse.    
CrossServerQualifying10    0    0    2|20    Realm Lord canceled your Immortal Palace request    
Buy1Free5    0    0    2    Purchase first to unlock <color=#109d06FF>5 Free Gift Packs</color>    
ChatLimit    0    0    2    When Level reaches <color=#fa1010ff>Level %s0</color>, %s1 Chat will be activated. <color=#109d06FF>In-Game Top-Up %s2</color> to unlock early.    0
Horse1    0    0    2    <color=#fa1010FF>Insufficient materials for breakthrough</color>    
XBLimitCnt    0    0    2    <color=#fa1010>Insufficient attempts today, please try again tomorrow!</color>    
FamilyBoss1    0    0    2    4:00~6:00 is rest time, please come back later!    
TagHadFinishChuangong    0    0    2    The other person has already completed Dual Cultivation    
sdeffect    0    0    2|20    Currently unavailable, Advancement Eagle-Shooting robe has more effects    
ActionFinish    0    0    2    Event Completed, awaiting next Activation    
ChuangongFinish    0    0    2|20    Dual Cultivation rewards have reached the limit. No more rewards will be obtained from Dual Cultivation today. Thank you for your assistance to Fellow Adventurers!    
ChallengeFinish    0    0    2    Today's challenge is completed. Come back tomorrow!    
CrossFamilyFlagwarOutsideflag    0    0    2    You have left the <color=#109D06FF><Word info=NPC ID=%s0/></color> area. Auto-abandon occupation in <color=#109d06ff>%s1</color> seconds. Return quickly    
CrossFamilyFlagwarCollectOKSlow    0    0    2    <color=#109D06FF><Word info=NPC ID=%s0/></color> has been occupied first. Kill the enemy to seize ownership.    
CrossFamilyFlagwarFlagDrop    0    0    2    You have lost control of <color=#109D06FF><Word info=NPC ID=%s0/></color>.    
CrossFamilyFlagwarFlagOwn    0    0    2    You have obtained control of <color=#109D06FF><Word info=NPC ID=%s0/></color>    
CrossFamilyFlagwarFlagOver    0    0    5|20    Congratulations to Guild <color=#109d06>%s0</color> for achieving First Place in <color=#109d06>Battle for Myriad Realms</color>, <color=#109D06FF><a>View Details|openui=497</a></color>    
CrossServeZLWJ    0    0    5|20    Cross-Server Event: <color=#109D06FF>Battle for Myriad Realms</color> will begin in 5 minutes. <color=#109D06FF><a>Join Now|openui=497</a></color>    
NoDownLoadMap    0    0    2    Instance resources not downloaded. Unable to enter. Please download and retry entering the dungeon    
MineDisappeared    0    0    2    These resources have disappeared    
MineHelpFinished    0    0    2    That contestant has been eliminated by other players.    
BlessedLand01    0    0    2    Worker stamina exhausted    
BlessedLand02    0    0    2    You cannot gather resources from the same fellow adventurer simultaneously    
BlessedLand03    0    0    2    The resources are currently being gathered by another Fellow Adventurer.    
BlessedLand04    0    0    2    No available workers left    
BlessedLand05    0    0    2    This item is a special item and can only be gathered by the Master.    
BlessedLand06    0    0    2    Help attempts have reached the limit. Unable to proceed!    
BlessedLand07    0    0    2    Cannot help yourself    
BlessedLand08    0    0    2    You are the current player and cannot assist.    
BlessedLand09    0    0    2    Super Refresh has exceeded the Daily Limit for Refresh Attempts    
BlessedLand10    0    0    2    You haven't joined a Guild    
BlessedLand11    0    0    2    Blessed Land feature not activated    
ActionUnOpen1    0    0    2    Not currently within the event participation period. Please refer to the specific event duration.    
CustomizedGift01    0    0    2    Custom Materials still not chosen    
CustomizedGift02    0    0    2    You have Custom Materials still not chosen, unable to Purchase.    
TeamNameLenError    0    0    2    Team Name length does not meet the requirements    
TeamNameUnallow    0    0    2    Team Name contains illegal characters    
TeamNameExist    0    0    2    Team Name already exists    
AlreadyHaveTeam    0    0    2    You're already in a team.<br>Please exit the team first.    
CreatTeamFail    0    0    2    Failed to create team. Please try again later.    
TeamNotExist    0    0    2    The team does not exist    
TeamMemFull    0    0    2    Team is Full    
TeamApplyFull    0    0    2    This Team's application queue is full.    
TeamLVLimit    0    0    2    Level too low to join    
TeamFightPowerLimit    0    0    2    Insufficient Combat Power to join    
TeamReqJoinApplyFull    0    0    2    Team limit reached    
TeamReqJoinApplyOK    0    0    2    Request Successful    
PlayerInOtherTeam    0    0    2    The player is already in another team.    
GodBattleFieldAssort01    0    0    2    Ancient God Battlefield Feature Not Available    
GodBattleFieldAssort02    0    0    2    The team has already requested    
GodBattleFieldAssort03    0    0    2    Unable to perform team operations during the Event    
FuncNoReset    0    0    2    No reset required for current level.    
AddQiyun    0    0    2    Obtain Fortune <color=#fa1010>%s0</color>    
ChooseItems01    0    0    2    Please choose at least one item    
ZhenbaogeCut    0    0    2    Bargain<color=#fa1010>%s0</color>    
SuperPush    0    0    2|20    Congratulations on upgrading to <color=#109D06FF>Super Push</color>, it will be easier to get rewards    
NoEnoughTimes    0    0    2    <color=#fa1010>Not enough times</color>    
FairyEmblem01    0    0    2    Only the leader can change the guild badge.    
ZhenbaogeCut1    0    0    2    It will take <color=#fa1010>%s0</color> minutes to operate    
InFBCanotDo    0    0    2    <color=#fa1010>Unable to operate in the copy</color>    
YunShiXBAct01    0    0    2    <color=#fa1010>Not enough luck lottery tickets</color>    
LianqiMoveUnable    0    0    2    No further movement or compositing is possible in this direction    
RealmMissionAward    0    0    2    <color=#109D06>You can survive the tribulation after receiving mission rewards</color>    
XBTodayMax    0    0    2    <color=#fa1010>The number of times today has reached the upper limit</color>    
BlessedLandManageMouse01    0    0    2    <color=#fa1010>The current item is not unlocked, unlock it after the system is turned on</color>    
BlessedLandManageMouse02    0    0    2    The hiring manager function will be available on the <color=#fa1010ff>%s0</color> day of server opening.    
LianQiAct01    0    0    2    <color=#fa1010>Lack of physical strength</color>    
LianQiAct02    0    0    2    <color=#fa1010>Insufficient quantity of props</color>    
LianQiAct03    0    0    2    <color=#fa1010>The item has reached its maximum usage limit in this round</color>    
LianQiAct04    0    0    2    <color=#fa1010>The item level is too high to be upgraded</color>    
LianQiAct05    0    0    2    <color=#fa1010>The physical strength is full and cannot be increased</color>    
LianQiAct06    0    0    2    <color=#fa1010>When there is only one item on the board, it cannot be destroyed</color>    
LianQiAct07    0    0    2    <color=#fa1010>This item requires selecting two items in different locations to exchange</color>    
LianQiAct08    0    0    2    <color=#fa1010>When there is only one item on the board, it cannot be exchanged</color>    
BlessedLand12    0    0    2    Not Enough Stamina    
CrossServerQualifying11    0    0    2    This round of competition has been challenged. Please check the competition progress.    
FuncNoOpen1    0    0    2    To unlock the <color=#109d06>%s0</color> level main quest, you still need to complete <color=#109d06>%s1</color> tasks    
FuncNoOpen2    0    0    2    You still need to complete <color=#109d06>%s0</color> main quests to unlock    
FuncNoOpen3    0    0    2    Complete <color=#109d06>%s0</color> level side quest to unlock    
FuncNoOpen4    0    0    2    Unlocked after level reaches %s0 and server is opened %s1/%s2 days later    
NeedChallengeCount    0    0    2    It can be used after challenging <color=#109d06>%s0</color> times    
TagFamilyNotExist    0    0    2    Target alliance does not exist.    
FairySiege01    0    0    2    Maximum of %s0 alliances can be selected.    
FairySiege02    0    0    2    <color=#fa1010>Insufficient donation attempts.</color>    
FairySiege03    0    0    2    <color=#fa1010>Not enough cion.</color>    
FairySiege04    0    0    2    <color=#fa1010>Not eligible to participate.</color>    
FairySiege05    0    0    2    <color=#fa1010>Our headquarters has been destroyed.</color>    
FairySiege06    0    0    2    <color=#fa1010>Cannot enter a destroyed city.</color>    
FairySiege07    0    0    2    <color=#fa1010>Cannot attack your own city.</color>    
FairySiege08    0    0    2    The last attacked city has been destroyed. Please select another.    
FairySiege09    0    0    2    Prediction is only available in the final round of the event.    
FairySiege10    0    0    2    <color=#fa1010>Please select %s0 alliances before saving</color>    
FairySiege11    0    0    2    Your selection has been saved    
FairySiege12    0    0    2    <color=#fa1010>Cannot enter cities of other levels or groups</color>    
FairySiege13    0    0    2    <color=#fa1010>Insufficient stamina and siege tokens</color>    
FairySiege14    0    0    2    Insufficient stamina, automatically consumed one siege token    
FairySiege15    0    0    2    This city has been destroyed by another player    
FairySiege16    0    0    2    Another player has launched an attack on this city    
FairySiege17    0    0    2    <color=#fa1010>Cannot attack a destroyed city</color>    
FairySiege18    0    0    2    <color=#fa1010>Entry only allowed during battle phase</color>    
FairySiege19    0    0    2    <color=#fa1010>No cities available for attack currently</color>    
FairySiege20    0    0    2    <color=#fa1010>Can only attack cities within your own group</color>    
FairySiege21    0    0    2    <color=#fa1010>Guessing has not started</color>    
FairySiege22    0    0    2    <color=#fa1010>Guessing will start at %s0</color>