cfg_string.lua 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. -- 此文件工具自动生成,不要修改
  2. ---@class cfg_string_column
  3. ---@field id number @id column=1 A
  4. ---策划自用
  5. ---@field description string @备注 column=2 B
  6. ---@field name string @名称 column=3 C
  7. ---1右往左滚动公告(跑马灯)
  8. ---2左往右滚动公告(跑马灯)
  9. ---3下往上淡出公告(跑马灯)
  10. ---4上往下淡出公告(跑马灯)
  11. ---5静止淡出公告(跑马灯)
  12. ---6倒计时消息
  13. ---7聊天框消息(X偏移、Y偏移、滚动速度、滚动次数不可用)
  14. ---8侧边可堆叠淡出(接收对象只可为自己)
  15. ---9飘字倒计时
  16. ---11滚动显示经验
  17. ---12秒伤和分钟经验
  18. ---13弹窗提示
  19. ---14红色飘字提示
  20. ---15静止淡出宣传提示
  21. ---16大天使装备升级
  22. ---@field messageType IntList @消息类型 column=4 D
  23. ---策划自用
  24. ---@field subType string @聊天频道 column=5 E
  25. ---1=玩家满足等级可见,格式为:1#10(玩家满足10级可见该消息)
  26. ---2=当前地图id内的玩家可见,格式为:2#地图id
  27. ---用|分隔表示多个筛选条件
  28. ---@field condition IntListList @接收对象筛选条件 column=6 F
  29. ---1系统消息自己可见;2系统消息当前地图玩家可见;3系统消息同战盟可见;4系统消息全服可见;5战盟消息自己可见;6战盟消息同战盟可见(messageType为6,8,11,12,13,14时,不向聊天频道发送消息无视频道,只看可见对象)
  30. ---@field receiver number @接收对象 column=7 G
  31. ---索引cfg_color表中id对应的颜色值
  32. ---@field backgroundColor string @背景颜色 column=8 H
  33. ---背景显示的透明度,单位为百分比,取值范围0~100,0为完全不透明,100为完全透明
  34. ---@field transparencyB number @背景透明度 column=9 I
  35. ---索引cfg_color表中id对应的颜色值
  36. ---@field textColor string @文字颜色 column=10 J
  37. ---文字显示的透明度,单位为百分比,取值范围0~100,0为完全不透明,100为完全透明
  38. ---@field transparencyT number @文字透明度 column=11 K
  39. ---@field textSize number @文字大小 column=12 L
  40. ---屏幕X偏移,相对于默认位置的偏移,不配为默认坐标
  41. ---@field offsetX number @X偏移 column=13 M
  42. ---屏幕Y偏移,相对于默认位置的偏移,不配为默认坐标
  43. ---@field offsetY number @Y偏移 column=14 N
  44. ---仅messageType=1-5时有效
  45. ---格式:毫秒
  46. ---@field rollSpeed number @滚动速度 column=15 O
  47. ---@field rollCount number @滚动次数 column=16 P
  48. ---%s:玩家名
  49. ---%p:充值人民币数
  50. ---%i:道具名
  51. ---%g:工会名
  52. ---%m:地图名
  53. ---%x:x坐标
  54. ---%y:y坐标
  55. ---%d:替换数字
  56. ---%a:伙伴名称
  57. ---%b:boss名称
  58. ---%c:战阶名称
  59. ---%e:转职名称
  60. ---%w:翅膀名称
  61. ---%f :翅膀品质
  62. ---count<T>:倒计时T/1000秒,单位毫秒(ms)
  63. ---\n:换行
  64. ---段落颜色:<Text|text=?><Text|color=?|text=?>
  65. ---@field text string @消息内容文本 column=17 Q
  66. ---背景特效
  67. ---
  68. ---引用cfg_model_effect表内的特效id
  69. ---@field releaseEffect IntList @特效 column=18 R
  70. ---格式:毫秒
  71. ---(展示时间到了以后再消失)
  72. ---@field ShowDuration number @展示时间 column=19 S
  73. ---格式:数字越大,优先级越高
  74. ---(当多个跑马灯信息可播放时,生成播放序列,根据优先级播放)
  75. ---@field order number @展示优先级 column=20 T
  76. local cfg_string =
  77. {
  78. {id=1, description="结婚成功", name="HappyWedding", messageType={1}, receiver=4, textColor="1", rollSpeed=10000, rollCount=1, text="恭喜%s玩家和%s玩家喜结连理!"},
  79. {id=2, description="玩家充值", name="PayMoney", messageType={1}, receiver=4, textColor="1", textSize=40, rollSpeed=10000, rollCount=2, text="恭喜%s玩家充值%p元,他简直太厉害了!"},
  80. {id=3, description="合成成功", name="ForgeSuccess", messageType={1}, receiver=4, textColor="1", textSize=30, rollSpeed=10000, rollCount=3, text="恭喜%s玩家合成%i道具,实力大增!"},
  81. {id=4, description="合成失败", name="ForgeFailed", messageType={8}, transparencyB=0, textColor="280", textSize=10, rollSpeed=10000, rollCount=1, text="合成失败!"},
  82. {id=5, description="帮战胜利", name="GuildwarWin", messageType={1}, receiver=3, textColor="1", textSize=40, rollSpeed=10000, rollCount=1, text="恭喜对阵%g帮会战斗胜利!奖励将会在5分钟后发送!"},
  83. {id=6, description="发现宝藏", name="TreasureLocated", messageType={7}, receiver=2, textColor="1", textSize=40, rollSpeed=10000, text="%s玩家在%m地图(%x,%y)坐标发现宝藏!"},
  84. {id=7, description="安全区禁止丢弃", name="CanotDropInSafeZoneMsg", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="安全区不允许扔东西在地上!!!", ShowDuration=4000, order=1},
  85. {id=8, description="世界boss开始", name="BossBegin", messageType={6}, receiver=4, textSize=15, rollSpeed=10000, rollCount=1, text="世界boss将于count<300000>秒后开始,请玩家们做好准备!"},
  86. {id=9, description="进入地图通知", name="MoveInMap", messageType={7}, textColor="255", textSize=40, rollSpeed=10000, text="<Text|text=欢迎您加入><Text|color=250|text=%m>"},
  87. {id=10, description="创角登录公告", name="FirstLogin", messageType={15}, textColor="250", offsetY=-200, rollSpeed=10000, rollCount=1, text="欢迎光临奇迹大陆!\n大地被魔物占领,昆顿的部队在黑暗中蠢蠢欲动,勇士们集合你们的力量,\n给与那些来犯之敌迎头痛击!", ShowDuration=10000},
  88. {id=11, description="申请成功", name="friend_approved", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="好友申请发送成功", ShowDuration=4000},
  89. {id=12, description="重复申请", name="friend_repetitive", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=2, text="已经申请过,等待对方同意", ShowDuration=4000},
  90. {id=13, description="重复添加", name="friend_alreadyAdd", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=3, text="对方已存在您的好友列表中", ShowDuration=4000},
  91. {id=14, description="重复添加", name="friend_onBlacklist", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=4, text="对方已在你的黑名单中", ShowDuration=4000},
  92. {id=15, description="限制添加", name="friend_limit", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=5, text="您与对方存在仇人关系,不能添加好友", ShowDuration=4000},
  93. {id=16, description="对方已申请", name="friend_already", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=6, text="对方在你的申请列表中,请前往同意", ShowDuration=4000},
  94. {id=17, description="加好友失败", name="friend_blocked", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=7, text="你已经被对方拉黑了", ShowDuration=4000},
  95. {id=18, description="等级不符", name="convey_lvLimit", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=8, text="等级不满足", ShowDuration=4000},
  96. {id=19, description="装备不符", name="convey_equipLimit", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=9, text="装备不符合", ShowDuration=4000},
  97. {id=20, description="邀请失败", name="team_fail", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=10, text="%s已加入其他队伍", ShowDuration=4000},
  98. {id=21, description="重复邀请", name="team_repetitive", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=11, text="已经邀请%s,请不要重复邀请", ShowDuration=4000},
  99. {id=22, description="邀请条件", name="team_condition", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=12, text="请先创建队伍", ShowDuration=4000},
  100. {id=23, description="名字重复", name="union_repetitive", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=13, text="该战盟名称已被占用!请重新输入!", ShowDuration=4000},
  101. {id=24, description="申请提示", name="union_approved", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=14, text="申请成功", ShowDuration=4000},
  102. {id=25, description="申请提示", name="union_noSuitable", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=15, text="无适合申请的战盟", ShowDuration=4000},
  103. {id=26, description="次数不足", name="union_insufficient", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=16, text="今日宣战剩余次数不足", ShowDuration=4000},
  104. {id=27, description="弹劾失败", name="union_timeInsuf", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=17, text="加入战盟时间不足", ShowDuration=4000},
  105. {id=28, description="弹劾失败", name="union_impeachFail", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=18, text="盟主离线时间未满三天,不能进行弹劾", ShowDuration=4000},
  106. {id=29, description="发言失败", name="chat_fail", messageType={7}, textColor="1", textSize=40, rollSpeed=10000, rollCount=19, text="系统频道,无法发言"},
  107. {id=30, description="寻路", name="aux_autoNavigate", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=20, text="自动寻路中······", ShowDuration=4000},
  108. {id=31, description="失去提示", name="lost_hint", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="<Text|text=消耗><Text|color=249|text= %i*%d>", ShowDuration=4000},
  109. {id=32, description="获得提示", name="get_hint", messageType={8}, transparencyB=0, textColor="280", rollSpeed=3000, rollCount=1, text="<Text|text=获得><Text|color=250|text= %i*%d>", ShowDuration=4000},
  110. {id=34, description="盟主退出失败提示", name="union_quitFail", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="盟主无法退出!", ShowDuration=4000},
  111. {id=35, description="拾取失败", name="pick_fail", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="该物品您没有拾取权,请等待%d秒后尝试", ShowDuration=4000},
  112. {id=36, description="丢弃失败", name="drop_fail", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="该道具无法丢弃", ShowDuration=4000},
  113. {id=37, description="存储失败", name="storage_fail", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="该道具无法存储", ShowDuration=4000},
  114. {id=38, description="单人进入副本 剩余挑战次数不足提示", name="lack_frequency", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="剩余挑战次数不足,无法进入", ShowDuration=4000},
  115. {id=39, description="组队进入副本 剩余挑战次数不足提示", name="lack_platoon", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="有成员挑战次数不足,无法进入", ShowDuration=4000},
  116. {id=40, description="单人进入副本 门票不足提示:", name="single_ticket", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="门票数量不足,无法进入", ShowDuration=4000},
  117. {id=41, description="组队天进入副本 门票不足提示:", name="group_ticket", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="有成员门票数量不足,无法进入", ShowDuration=4000},
  118. {id=42, description="单人点击无法挑战的层数时,提示", name="single_number", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="无法越级挑战,请先解锁前置的关卡", ShowDuration=4000},
  119. {id=43, description="队长点击无法挑战的层数时,提示", name="group_number", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="无法越级挑战,队伍中成员未解锁前置关卡", ShowDuration=4000},
  120. {id=44, description="队员点击层数和进入按钮时,提示", name="member_enters", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="组队状态下仅队长可选择层数及开启副本", ShowDuration=4000},
  121. {id=45, description="进入副本时,有人未满足副本等级要求", name="enough_level", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="未满足副本进入等级要求,无法进入副本", ShowDuration=4000},
  122. {id=46, description="道具绑定", name="item_bindings", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="该道具已绑定", ShowDuration=4000},
  123. {id=47, description="购买月卡超过时间上限", name="month_card", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="该道具已绑定", ShowDuration=4000},
  124. {id=48, description="购买月卡或者赞助,不可以叠加时", name="unmonth_card", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="已达到购买上限,无法继续购买", ShowDuration=4000},
  125. {id=49, description="购买完基金后再次点击", name="fund_card", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="已达到购买上限,无法继续购买", ShowDuration=4000},
  126. {id=50, description="异界之门活动不在开启阶段:", name="gate_open", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="活动尚未开启,请待下次开启后尝试", ShowDuration=4000},
  127. {id=51, description="异界之门玩家挑战次数不足", name="gate_time", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="副本挑战次数不足,无法挑战", ShowDuration=4000},
  128. {id=52, description="异界之门npc被挑战次数不足", name="gate_challenge", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="入口挑战次数上限,已关闭,请寻找其他入口", ShowDuration=4000},
  129. {id=53, description="异界之门以组队状态进入副本", name="gate_team", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="组队状态无法进入,请退出组队后尝试", ShowDuration=4000},
  130. {id=54, description="异界之门副本正处于被挑战状态", name="gate_buys", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="当前入口正有玩家在挑战中,请等待挑战结束再试", ShowDuration=4000},
  131. {id=55, description="异界之门副本剩余入口小于1时", name="gate_noe", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="该层副本入口均已被挑战,请选择其他层数", ShowDuration=4000},
  132. {id=56, description="点击未解锁的层级npc", name="gate_lock", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="前置关卡未解锁 无法进入", ShowDuration=4000},
  133. {id=57, description="招募累计次数提示", name="raffle_times", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="达到累计次数后,可以获得稀有奖励!", ShowDuration=4000},
  134. {id=59, description="加入战盟时间太短 抽取赐福时提示:", name="bless_cd", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="加入战盟时间太短,无法抽取", ShowDuration=4000},
  135. {id=60, description="抽奖时 余额不足:", name="bless_money", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="所需资源不足,无法抽取", ShowDuration=4000},
  136. {id=61, description="抽奖时,背包不足提示:", name="bless_bag", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="背包空间不足,无法抽取,请及时清理", ShowDuration=4000},
  137. {id=62, description="进入副本时,处于冷却时间中", name="devil_cd", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="当前处于副本冷却时间阶段,无法进入", ShowDuration=4000},
  138. {id=63, description="属性提升", name="att_increase", messageType={3}, receiver=3, transparencyB=50, textColor="1", rollSpeed=10000, text="%s+%d"},
  139. {id=65, description="战盟活动开启", name="gard_open", messageType={1}, receiver=4, textColor="1", rollSpeed=10000, text="怪物已入侵战盟领地,战盟的勇士们,快到战盟领地战斗吧!"},
  140. {id=66, description="战盟BOSS死亡", name="gard_dead", messageType={1}, receiver=3, textColor="255", rollSpeed=10000, text="<color=#E6E600>%g</color>已击杀<color=#FF2323>%b</color>战盟BOSS"},
  141. {id=67, description="战盟BOSS雕像出现", name="gard_statue_appear", messageType={1}, receiver=4, textColor="1", rollSpeed=10000, text="守护雕像出现了!快去清除雕像,雕像存在,战盟BOSS无敌。"},
  142. {id=68, description="战盟BOSS第一个雕像被击杀", name="gard_first_statue", messageType={1}, receiver=4, textColor="1", rollSpeed=10000, text="一个守护雕像倒下了,勇士们加油,还有3个雕像。"},
  143. {id=69, description="战盟BOSS第二个雕像被击杀", name="gard_second_statue", messageType={1}, receiver=4, textColor="1", rollSpeed=10000, text="一个守护雕像倒下了,勇士们加油,还有2个雕像。"},
  144. {id=70, description="战盟BOSS第三个雕像被击杀", name="gard_third_statue", messageType={1}, receiver=4, textColor="1", rollSpeed=10000, text="一个守护雕像倒下了,勇士们加油,还有1个雕像。"},
  145. {id=71, description="战盟BOSS第一个战盟击杀全部雕像", name="gard_all_statue", messageType={1}, receiver=4, textColor="1", rollSpeed=10000, text="%g战盟已经清除所有守护雕像,解除了BOSS的无敌状态。"},
  146. {id=72, description="战盟BOSS排名第一", name="gard_close", messageType={1}, receiver=4, textColor="1", rollSpeed=10000, text="本次战盟BOSS活动中,本战盟获得第%d名,恭喜%s获得本战盟个人伤害第1名!伤害越高,获得参与奖励越多。"},
  147. {id=73, description="战盟活动开启1", name="gard_open1", messageType={7}, subType="战盟", receiver=6, textColor="1", rollSpeed=10000, text="怪物入侵,战盟的勇士们,快来战斗吧!"},
  148. {id=74, description="战盟活动结束1", name="gard_close1", messageType={7}, subType="战盟", receiver=6, textColor="1", rollSpeed=10000, text="本次战盟BOSS活动中,本战盟获得第%d名,恭喜%s获得本战盟个人伤害第1名!伤害越高,获得参与奖励越多。"},
  149. {id=76, description="伙伴升星成功提示", name="AscendingStar_Success", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="升星成功", ShowDuration=4000},
  150. {id=77, description="伙伴转化成功提示", name="Conversion_success", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="转化成功", ShowDuration=4000},
  151. {id=78, description="福袋出现", name="fuBag_chuxian", messageType={1}, condition={{1,20}}, receiver=3, textColor="1", rollSpeed=10000, text="福袋出现,带来福气庇护,大幅提高减伤!击败福袋可获得随机增益!", ShowDuration=5000},
  152. {id=79, description="福袋出现1", name="fuBag_chuxian1", messageType={7}, condition={{1,20}}, textColor="1", rollSpeed=10000, text="福袋出现,带来福气庇护,大幅提高减伤!击败福袋可获得随机增益!", ShowDuration=5000},
  153. {id=80, description="外门雕像摧毁提示", name="statueOutBreak", messageType={15}, receiver=2, textColor="1", rollSpeed=10000, text="%s摧毁了外门雕像,解除了外城门的无敌状态,外城门可被攻击!", ShowDuration=5000},
  154. {id=81, description="中门雕像摧毁提示", name="statueMidBreak", messageType={15}, receiver=2, textColor="1", rollSpeed=10000, text="%s摧毁了中门雕像,解除了中城门的无敌状态,中城门可被攻击!", ShowDuration=5000},
  155. {id=82, description="内门雕像摧毁提示", name="statueInBreak", messageType={15}, receiver=2, textColor="1", rollSpeed=10000, text="%s摧毁了内门雕像,解除了内城门的无敌状态,内城门可被攻击!", ShowDuration=5000},
  156. {id=83, description="外门雕像修复提示", name="statueOutRepair", messageType={15}, receiver=2, textColor="1", rollSpeed=10000, text="%s修复了外门雕像,损坏的外城门同时被修复,外城门激活无敌状态!", ShowDuration=5000},
  157. {id=84, description="中门雕像修复提示", name="statueMidRepair", messageType={15}, receiver=2, textColor="1", rollSpeed=10000, text="%s修复了中门雕像,损坏的中城门同时被修复,中城门激活无敌状态!", ShowDuration=5000},
  158. {id=85, description="内门雕像修复提示", name="statueInRepair", messageType={15}, receiver=2, textColor="1", rollSpeed=10000, text="%s修复了内门雕像,损坏的内城门同时被修复,内城门激活无敌状态!", ShowDuration=5000},
  159. {id=86, description="王座摧毁提示", name="throneBreak", messageType={15}, receiver=2, textColor="1", rollSpeed=10000, text="%s摧毁了王座,守方失败,开启攻守转换!", ShowDuration=5000},
  160. {id=87, description="攻城战胜利提示", name="siegeWin", messageType={15}, receiver=2, textColor="1", rollSpeed=10000, text="恭喜%g战盟在攻城战中获得了胜利,连胜次数达到%d", ShowDuration=5000},
  161. {id=88, description="攻城战失败提示", name="siegeLose", messageType={15}, receiver=2, textColor="1", rollSpeed=10000, text="恭喜%g战盟在攻城战中获得了第%d名", ShowDuration=5000},
  162. {id=89, description="攻城战准备时间", name="siegeReady", messageType={7}, receiver=3, textColor="1", rollSpeed=10000, text="攻城战即将开始,战盟的勇士们,快来战斗吧!"},
  163. {id=90, description="攻城战开启时间", name="siegeOn", messageType={7}, receiver=3, textColor="1", rollSpeed=10000, text="攻城战开始啦,战盟的勇士们,快来战斗吧!"},
  164. {id=91, description="活动结束-攻城战胜利", name="siegeOffWin", messageType={7}, receiver=3, textColor="1", rollSpeed=10000, text="通过全体战盟成员的努力,本战盟获得了胜利,连胜次数达到%d。恭喜%s获得本战盟积分第1名!积分越高,获得奖励越高。"},
  165. {id=92, description="活动结束-攻城战失败", name="siegeOffLose", messageType={7}, receiver=3, textColor="1", rollSpeed=10000, text="通过全体战盟成员的努力,本战盟获得第%d名。恭喜%s获得本战盟积分第1名!积分越高,获得奖励越高。"},
  166. {id=93, description="攻城战结束拍卖提示", name="siegeAuction", messageType={7}, receiver=3, textColor="1", rollSpeed=10000, text="本战盟在攻城战中获得了大量战利品,战盟勇士们,可以到拍卖行参与竞拍。"},
  167. {id=94, description="过期经验丹使用提示", name="use_tips", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="道具已过期", ShowDuration=4000},
  168. {id=95, description="加入战盟时,玩家不符合战盟申请条件", name="gard_application", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="申请失败,尚的不符合战盟申请条件,请尝试其他战盟", ShowDuration=4000},
  169. {id=96, description="抽到X星级的伙伴(X为配置参数)", name="partner_raffle", messageType={2}, condition={{1,20}}, textColor="1", rollSpeed=10000, text="恭喜%s运气爆棚,抽到了5星伙伴<%a>,实力大涨!", ShowDuration=2000, order=1},
  170. {id=97, description="将伙伴升到X星(X为配置参数)", name="partner_star", messageType={2}, condition={{1,20}}, textColor="1", rollSpeed=10000, text="恭喜%s成功将伙伴<%a>升到了6星,战力飙升!", ShowDuration=2000, order=5},
  171. {id=98, description="战阶达到指定等级X(X为配置参数)", name="level", messageType={2}, textColor="1", rollSpeed=10000, text="恭喜%s将战阶升至<%c>,祝武运昌隆!", ShowDuration=2000, order=6},
  172. {id=99, description="达到指定关卡层数X(X为配置参数)", name="grade", messageType={2}, textColor="1", rollSpeed=10000, text="恭喜%s成功通关勇者试炼第%d层", ShowDuration=2000},
  173. {id=100, description="全服首杀", name="firstkill", messageType={1}, receiver=4, textColor="265", rollSpeed=10000, text="恭喜<color=#1add1f>%s</color>达成<<color=#ffff00>%b</color>>全服首杀,强者恐怖如斯!", ShowDuration=2000},
  174. {id=101, description="玩家成功转职", name="JobChange", messageType={1}, condition={{1,100}}, textColor="3007", rollSpeed=10000, text="恭喜<color=#ff0000>%s</color>完成第%d次转职,成功晋升为<color=#ff0000>%e</color>", ShowDuration=2000},
  175. {id=102, description="成功合成翅膀", name="SyntheticWings", messageType={2}, condition={{1,1},{2,1001}}, textColor="1", rollSpeed=10000, text="恭喜%s成功合成<%w+%f>", ShowDuration=2000},
  176. {id=103, description="成功进行1次罗兰叠加", name="luolan", messageType={2}, textColor="1", rollSpeed=10000, text="恭喜%s将<%i>罗兰叠加成功,装备属性翻倍,战力飙升!", ShowDuration=2000},
  177. {id=104, description="滚动显示经验获取", name="rollEXP", messageType={11}, textColor="1", textSize=16, rollSpeed=500, text="EXP %d(+%d%%)", ShowDuration=2000},
  178. {id=105, description="秒伤", name="seconds_injury", messageType={12}, textColor="1", rollSpeed=10000, text="伤害%d/秒", ShowDuration=2000},
  179. {id=106, description="分钟经验", name="minutes_EXP", messageType={12}, textColor="1", rollSpeed=10000, text="经验%d/分", ShowDuration=2000},
  180. {id=107, description="掉落提示", name="drop_hint", messageType={2}, subType="战盟", receiver=5, textColor="1", rollSpeed=10000, text="%s掉落%i", ShowDuration=2000, order=1},
  181. {id=108, description="前往求助信息", name="help_text", messageType={1}, textColor="1", rollSpeed=10000, text="%s前来支援,他的伤害将直接计入你的伤害中", ShowDuration=2000},
  182. {id=109, description="强化成功全服跑马灯", name="strengthen_all_server", messageType={1}, receiver=4, textColor="3007", rollSpeed=10000, text="恭喜%s的%s强化到了%s+级", ShowDuration=2000},
  183. {id=110, description="强化成功个人跑马灯", name="strengthen_cur_role", messageType={1}, textColor="1", rollSpeed=10000, text="恭喜%s的%s强化到了%s+级", ShowDuration=2000},
  184. {id=111, description="掠夺模式击杀提示", name="special_kill_tips", messageType={15}, textColor="1", rollSpeed=10000, text="你击杀了%s", ShowDuration=2000},
  185. {id=112, description="掠夺模式抵御提示", name="defend_against_kill_tips", messageType={15}, textColor="1", rollSpeed=10000, text="你成功抵御住了%s的掠夺", ShowDuration=2000},
  186. {id=113, description="摆摊喊话", name="privateShopTalk_all_server", messageType={1}, receiver=4, textColor="1", rollSpeed=10000, text="<color=#FBD994>%s</color>新货上架,价格实惠,摊位<color=#ED2E2E>%s</color>,欢迎老板们选购", ShowDuration=2000},
  187. {id=114, description="泡点滚动显示经验获取", name="bubbleRollEXP", messageType={11}, textColor="1", textSize=16, rollSpeed=500, text="泡点EXP %d(+%d%%)", ShowDuration=2000},
  188. {id=115, description="追加成功全服跑马灯", name="append_all_server", messageType={1}, receiver=4, textColor="3007", rollSpeed=10000, text="恭喜%s的%s追加到了%s+级", ShowDuration=2000},
  189. {id=116, description="副本中无法传送", name="cantmove", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, text="副本中无法传送", ShowDuration=4000},
  190. {id=117, description="等级不符", name="convey_lvLimit2", rollSpeed=10000, rollCount=8, text="等级不足"},
  191. {id=118, description="等级不符", name="convey_lvLimit3", messageType={13}, rollSpeed=10000, rollCount=8, text="等级不足"},
  192. {id=200, description="果实使用成功", name="fruitSuccess", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="获得属性 %s增加%s", ShowDuration=4000},
  193. {id=201, description="果实使用失败", name="fruitFail", messageType={8}, transparencyB=0, textColor="280", rollSpeed=10000, rollCount=1, text="未获得属性增加", ShowDuration=4000},
  194. {id=202, description="背包已满月卡购买", name="text202", messageType={13}, textColor="265", text="您的背包已满,<color=#1add1f>购买后将直接使用</color>\n是否继续购买?"},
  195. {id=203, description="无法上架道具购买日卡", name="text203", messageType={13}, textColor="265", text="日卡无法上架宝石、翅膀材料、时装材料等道具是否花费<color=#5CE366FF>%s元</color>购买日卡?\n\n当前月卡剩余时间:%s"},
  196. {id=204, description="首次购买月卡", name="text204", messageType={13}, textColor="265", text="首次购买可额外获得<color=#5CE366FF>20小时</color>三倍收益时间\n是否花费<color=#5CE366FF>%s元</color>购买月卡?\n\n当前月卡剩余时间:%s"},
  197. {id=205, description="购买月卡", name="text205", messageType={13}, textColor="265", text="是否花费<color=#5CE366FF>%s元</color>购买月卡?\n\n当前月卡剩余时间:%s"},
  198. {id=206, description="消耗道具扩充仓库", name="text206", messageType={13}, textColor="265", text="是否消耗%s扩充%s页仓库?"},
  199. {id=207, description="消耗道具扩充背包", name="text207", messageType={13}, textColor="265", text="是否消耗背包石扩充背包空间?"},
  200. {id=208, description="任务进度清空", name="text208", messageType={13}, textColor="265", text="当前任务进度将会被清空,是否确认放弃"},
  201. {id=209, description="保存设置", name="text209", messageType={13}, textColor="265", text="保存设置"},
  202. {id=210, description="副本进度丢失", name="text210", messageType={13}, textColor="265", text="离开副本将丢失进度,是否退出"},
  203. {id=211, description="退出副本", name="text211", messageType={13}, textColor="265", text="是否退出副本?"},
  204. {id=212, description="再生词条替换", name="text212", messageType={13}, textColor="265", text="再生的词条将全部进行替换,是否替换?"},
  205. {id=213, description="转移等级超出目标上限", name="text213", messageType={13}, textColor="265", text="转移等级超过目标装备的转移等级上限,转移后只保留上限等级,是否转移"},
  206. {id=214, description="卸下装备", name="text214", messageType={13}, textColor="265", text="是否确认卸下装备"},
  207. {id=215, description="大师之路退出界面未启用天赋", name="text215", messageType={13}, textColor="265", text="您还未启用任何天赋,请启用您想要使用的天赋页。"},
  208. {id=216, description="大师之路未启用职业天赋", name="text216", messageType={13}, textColor="265", text="请先选择职业天赋"},
  209. {id=217, description="启用技能天赋与职业天赋不同", name="text217", messageType={13}, textColor="265", text="与职业天赋选择的分系不同,是否确定选择"},
  210. {id=218, description="激活黄金特权", name="text218", messageType={13}, textColor="265", text="是否消耗%s天点卡激活黄金特权\n\n当前月卡剩余时间:%s"},
  211. {id=219, description="兑换黄金特权月卡时间不足", name="text219", messageType={13}, textColor="265", text="兑换黄金特权卡需要%s天月卡时间,当前月卡时间不足,是否前往充值\n\n当前月卡剩余时间:%s"},
  212. {id=220, description="兑换黄金特权月卡时间不足", name="text220", messageType={13}, textColor="265", text="兑换黄金特权卡需要%s天月卡时间,当前月卡时间不足,是否前往充值"},
  213. {id=221, description="激活钻石特权", name="text221", messageType={13}, textColor="265", text="是否消耗%s天点卡激活钻石特权\n\n当前月卡剩余时间:%s"},
  214. {id=222, description="兑换钻石特权月卡时间不足", name="text222", messageType={13}, textColor="265", text="兑换钻石特权卡需要%s天月卡时间,当前月卡时间不足,是否前往充值\n\n当前月卡剩余时间:%s"},
  215. {id=223, description="兑换钻石特权月卡时间不足", name="text223", messageType={13}, textColor="265", text="兑换钻石特权卡需要%s天月卡时间,当前月卡时间不足,是否前往充值"},
  216. {id=224, description="月卡时间小于24小时", name="text224", messageType={13}, textColor="265", text="您的月卡剩余时间小于24小时,无法获得今日三倍收益时间,是否购买增加月卡时间?"},
  217. {id=225, description="预购商品", name="text225", messageType={13}, textColor="265", text="公示期结束后从预购玩家中<color=#1ADD1F>抽取一位获得该商品</color>\n其他玩家邮件返还预购货币"},
  218. {id=228, description="无法进入黄金怪地图", name="text228", messageType={13}, textColor="265", text="VIP特权等级不足,是否前往开通"},
  219. {id=230, description="战盟拍卖已开启", name="text230", messageType={13}, textColor="265", text="战盟拍卖已开启,是否前往竞拍?"},
  220. {id=231, description="充值开通自动回收", name="text231", messageType={13}, textColor="265", text="充值<color='#FFFF00'>月卡</color>开通自动回收"},
  221. {id=232, description="充值赠送开通自动回收", name="text232", messageType={13}, textColor="265", text="充值<color='#ED2E2E'>328</color>元赠送<color='#FFFF00'>高级特权卡</color>开通自动回收"},
  222. {id=233, description="充值开通自动拾取", name="text233", messageType={13}, textColor="265", text="充值<color='#FFFF00'>月卡</color>开通自动拾取"},
  223. {id=234, description="激活开通自动范围失去", name="text234", messageType={13}, textColor="265", text="充值激活<color='#FFFF00'>特权卡</color>开通自动范围拾取"},
  224. {id=235, description="钻石不足前往充值", name="text235", messageType={13}, textColor="265", text="钻石不足,是否前往充值"},
  225. {id=236, description="您已在队伍中", name="text236", messageType={13}, textColor="265", text="您已在队伍中,无需申请"},
  226. {id=237, description="您已加入其他队伍", name="text237", messageType={13}, textColor="265", text="您已加入其他队伍,无法申请该队伍"},
  227. {id=238, description="请勿重复申请", name="text238", messageType={13}, textColor="265", text="请勿重复申请"},
  228. {id=239, description="盟主退出战盟", name="text239", messageType={13}, textColor="265", text="退出后,该战盟将被解散,所有战盟资源,成长都将被清除!"},
  229. {id=240, description="是否确定退出战盟", name="text240", messageType={13}, textColor="265", text="是否确定退出战盟"},
  230. {id=241, description="战盟任务领取条件", name="text241", text="加入战盟%d小时后可领取"},
  231. {id=242, description="点数不足", name="text242", text="点数不足"},
  232. {id=243, description="前置天赋等级不足", name="text243", text="前置天赋等级不足"},
  233. {id=244, description="在该天赋页内已投入的点数不足", name="text244", text="在该天赋页内已投入的点数不足"},
  234. {id=245, description="任务已在进行中", name="text245", text="任务已在进行中"},
  235. {id=246, description="道具不足,请补充道具!", name="text246", text="道具不足,请补充道具!"},
  236. {id=247, description="任务已完成!", name="text247", text="任务已完成!"},
  237. {id=248, description="请先退出队伍!", name="text248", text="请先退出队伍!"},
  238. {id=249, description="等级不足", name="text249", text="等级不足"},
  239. {id=250, description="活动未开启", name="text250", text="活动未开启"},
  240. {id=251, description="本次活动报名已截止", name="text251", text="本次活动报名已截止"},
  241. {id=252, description="平台边缘即将塌陷,请马上远离!", name="text252", text="平台边缘即将塌陷,请马上远离!"},
  242. {id=253, description="所需道具数量不足", name="text253", text="所需道具数量不足"},
  243. {id=254, description="请选择激活道具", name="text254", text="请选择激活道具"},
  244. {id=255, description="副本中无法传送", name="text255", text="副本中无法传送"},
  245. {id=256, description="次数不足", name="text256", text="次数不足"},
  246. {id=257, description="全身强化追加等级均需达到指定等级方可进入", name="text257", text="全身强化追加等级均需达到指定等级,方可进入"},
  247. {id=258, description="月卡时间不足,无法使用地图传送功能", name="text258", text="<color=#426ECC>月卡时间不足,无法使用地图传送功能</color>"},
  248. {id=259, description="该装备无法被追加", name="text259", text="该装备无法被追加"},
  249. {id=260, description="材料不足!", name="text260", text="材料不足!"},
  250. {id=261, description="请选择首饰装备!", name="text261", text="请选择首饰装备!"},
  251. {id=262, description="pk值较高,无法传送", name="text262", text="pk值较高,无法传送"},
  252. {id=263, description="当前等级不足", name="text263", text="当前等级不足"},
  253. {id=264, description="挑战次数不足", name="text264", text="挑战次数不足"},
  254. {id=265, description="请选择一件装备", name="text265", text="请选择一件装备"},
  255. {id=266, description="没有词条无法进化", name="text266", text="没有词条无法进化"},
  256. {id=267, description="该部位装备无法再生", name="text267", text="该部位装备无法再生"},
  257. {id=268, description="该装备无法被强化", name="text268", text="该装备无法被强化"},
  258. {id=269, description="货币不足", name="text269", text="货币不足"},
  259. {id=270, description="请选择转移项", name="text270", text="请选择转移项"},
  260. {id=271, description="赠送成功", name="text271", text="赠送成功"},
  261. {id=272, description="角色等级不足", name="text272", text="角色等级不足"},
  262. {id=273, description="兑换次数不足", name="text273", text="兑换次数不足"},
  263. {id=274, description="开通月卡后显示", name="text274", text="开通月卡后显示"},
  264. {id=275, description="名称不能为空", name="text275", text="名称不能为空"},
  265. {id=276, description="名称中不能包含空格", name="text276", text="名称中不能包含空格"},
  266. {id=277, description="名称过长", name="text277", text="名称过长"},
  267. {id=278, description="开通月卡后可使用交易行功能", name="text278", text="开通月卡后可使用交易行功能"},
  268. {id=279, description="请将所有点数分配完毕", name="text279", text="请将所有点数分配完毕"},
  269. {id=280, description="请先选择查看的玩家", name="text280", text="请先选择查看的玩家"},
  270. {id=281, description="合成材料不足", name="text281", text="合成材料不足"},
  271. {id=282, description="道具不足", name="text282", text="道具不足"},
  272. {id=283, description="臂章已达到当前等级上限", name="text283", text="臂章已达到当前等级上限"},
  273. {id=284, description="条件不满足", name="text284", text="条件不满足"},
  274. {id=285, description="未开放!请扩容", name="text285", text="未开放!请扩容"},
  275. {id=286, description="锻造中无法使用", name="text286", text="锻造中无法使用"},
  276. {id=287, description="功能未开放", name="text287", text="功能未开放"},
  277. {id=288, description="该道具不可被丢弃", name="text288", text="该道具不可被丢弃"},
  278. {id=289, description="购买并使用月卡或日卡后解锁聊天系统", name="text289", text="购买并使用月卡或日卡后解锁聊天系统"},
  279. {id=290, description="请输入私聊对象", name="text290", text="请输入私聊对象"},
  280. {id=291, description="安全区无法使用道具", name="text291", text="安全区无法使用道具"},
  281. {id=292, description="物品使用冷却中", name="text292", text="物品使用冷却中"},
  282. {id=293, description="消耗材料不足", name="text293", text="消耗材料不足"},
  283. {id=294, description="请选择快捷栏", name="text294", text="请选择快捷栏"},
  284. {id=295, description="被动技能无法放置", name="text295", text="被动技能无法放置"},
  285. {id=296, description="请选择技能栏", name="text296", text="请选择技能栏"},
  286. {id=297, description="您不是队长,不能邀请队员", name="text297", text="您不是队长,不能邀请队员"},
  287. {id=298, description="盟主在位没有超过3天,不能弹劾", name="text298", text="盟主在位没有超过3天,不能弹劾"},
  288. {id=299, description="转移成功", name="text299", text="转移成功"},
  289. {id=300, description="学习技能,未达到条件", name="text300", text="学习技能,未达到条件"},
  290. {id=301, description="pk值较高,无法购买", name="text301", text="pk值较高,无法购买"},
  291. {id=302, description="请输入名字", name="text302", text="请输入名字"},
  292. {id=303, description="药水已耗尽,请及时购买", name="text303", text="药水已耗尽,请及时购买"},
  293. {id=304, description="正在绑定神狼护台, 无法使用道具", name="text304", text="正在绑定神狼护台, 无法使用道具"},
  294. {id=305, description="活动副本中无法传送", name="text305", text="活动副本中无法传送"},
  295. {id=306, description="正在摆摊无法移动", name="text306", text="正在摆摊无法移动"},
  296. {id=307, description="跳跃cd中", name="text307", text="跳跃cd中"},
  297. {id=308, description="叠加失败", name="text308", text="叠加失败"},
  298. {id=309, description="设置均衡状态", name="text309", text="设置均衡状态"},
  299. {id=310, description="您需要获得摊位证道具,否则无法摆摊", name="text310", text="您需要获得摊位证道具,否则无法摆摊"},
  300. {id=311, description="您的等级太低无法摆摊", name="text311", text="您的等级太低无法摆摊"},
  301. {id=312, description="移动的同时不能进行摆摊", name="text312", text="移动的同时不能进行摆摊"},
  302. {id=313, description="请先上传文件", name="text313", text="请先上传文件"},
  303. {id=314, description="正在绑定神狼护台", name="text314", text="正在绑定神狼护台"},
  304. {id=315, description="神狼护台无法攻击", name="text315", text="神狼护台无法攻击"},
  305. {id=316, description="请先创建人物", name="text316", text="请先创建人物"},
  306. {id=317, description="战车与人无法战斗", name="text317", text="战车与人无法战斗"},
  307. {id=318, description="无法攻击", name="text318", text="无法攻击"},
  308. {id=319, description="货币不足,无法自动买药", name="text319", text="货币不足,无法自动买药"},
  309. {id=320, description="输入的变量为空", name="text320", text="输入的变量为空"},
  310. {id=321, description="请重新进入游戏,新手引导修改生效", name="text321", text="请重新进入游戏,新手引导修改生效"},
  311. {id=322, description="下次启动游戏生效", name="text322", text="下次启动游戏生效"},
  312. {id=323, description="已达到可选择上限", name="text323", text="已达到可选择上限"},
  313. {id=324, description="安全区禁止挂机", name="text324", text="安全区禁止挂机"},
  314. {id=325, description="装备无孔位无法镶嵌提示(萤石)", name="text325", text="该部位无法镶嵌萤石"},
  315. {id=326, description="装备无孔位无法镶嵌提示(石板)", name="text326", text="该部位无法镶嵌石板"},
  316. {id=327, description="无装备无法镶嵌提示(萤石)", name="text327", text="该部位暂无装备"},
  317. {id=328, description="无装备无法镶嵌提示(石板)", name="text328", text="该部位暂无装备"},
  318. {id=329, description="未选择装备无法镶嵌提示(石板)", name="text329", text="请先选择装备"},
  319. {id=330, description="摆摊关键词最大限制", name="text330", text="最多选择5条"},
  320. {id=331, description="诸神降临活动开启预告", name="text331", messageType={7}, textColor="1", rollSpeed=10000, text="<color=#E6E600>诸神降临</color>在神之国度随机位置,勇士们赶紧前往寻找并讨伐吧"},
  321. {id=332, description="狼魂要塞召唤守护提示", name="text332", text="召唤次数已满"},
  322. {id=333, description="狼魂要塞召唤守护提示", name="text333", text="准备阶段外不能召唤"},
  323. {id=334, description="买药钱不够", name="text334", text="买药钱不够"},
  324. {id=335, description="没有使用特权卡", name="text335", text="没有使用特权卡"},
  325. {id=336, description="该物品今日拾取达到上限", name="text336", text="该物品今日拾取达到上限"},
  326. {id=337, description="请先击杀BOSS", name="text337", text="请先击杀BOSS"},
  327. {id=338, description="已领取", name="text338", text="已领取"},
  328. {id=339, description="请求数据错误", name="text339", text="请求数据错误"},
  329. {id=340, description="任务未完成", name="text340", text="任务未完成"},
  330. {id=341, description="你没有队伍", name="text341", text="你没有队伍"},
  331. {id=342, description="队伍已满", name="text342", text="队伍已满"},
  332. {id=343, description="招募CD未结束", name="text343", text="招募CD未结束"},
  333. {id=344, description="不能重复进入神之国度", name="text344", text="不能重复进入神之国度"},
  334. {id=345, description="地图传送配置不存在", name="text345", text="地图传送配置不存在"},
  335. {id=346, description="背包道具不足", name="text346", text="背包道具不足"},
  336. {id=347, description="删除道具失败", name="text347", text="删除道具失败"},
  337. {id=348, description="道具不足,无法重置果实属性", name="text348", text="道具不足,无法重置果实属性"},
  338. {id=349, description="请先提交当前任务", name="text349", text="请先提交当前任务"},
  339. {id=350, description="消耗扣除失败", name="text350", text="消耗扣除失败"},
  340. {id=351, description="道具不足,请补充道具", name="text351", text="道具不足,请补充道具"},
  341. {id=352, description="请先刷新任务池", name="text352", text="请先刷新任务池"},
  342. {id=353, description="等级未达到", name="text353", text="等级未达到"},
  343. {id=354, description="活动次数已达上限", name="text354", text="活动次数已达上限"},
  344. {id=355, description="任务不存在", name="text355", text="任务不存在"},
  345. {id=356, description="特殊耗材选择错误", name="text356", text="特殊耗材选择错误"},
  346. {id=357, description="背包内道具数量不够", name="text357", text="背包内道具数量不够"},
  347. {id=358, description="合成失败", name="text358", text="合成失败"},
  348. {id=359, description="该坐骑无法穿戴装备", name="text359", text="该坐骑无法穿戴装备"},
  349. {id=360, description="当前没有默认骑乘坐骑", name="text360", text="当前没有默认骑乘坐骑"},
  350. {id=361, description="当前没有骑乘坐骑", name="text361", text="当前没有骑乘坐骑"},
  351. {id=362, description="首杀数据不存在", name="text362", text="首杀数据不存在"},
  352. {id=363, description="领取错误", name="text363", text="领取错误"},
  353. {id=364, description="奖励已领取", name="text364", text="奖励已领取"},
  354. {id=365, description="奖励领取错误", name="text365", text="奖励领取错误"},
  355. {id=366, description="奖励配置不存在", name="text366", text="奖励配置不存在"},
  356. {id=367, description="活动已关闭", name="text367", text="活动已关闭"},
  357. {id=368, description="购买的商品不存在", name="text368", text="购买的商品不存在,商品ID=%s"},
  358. {id=369, description="该道具不能上架交易行", name="text369", text="该道具不能上架交易行"},
  359. {id=370, description="交易行格子已满,无法上架新的商品", name="text370", text="交易行格子已满,无法上架新的商品"},
  360. {id=371, description="上架失败", name="text371", text="上架失败"},
  361. {id=372, description="世界交易行没有上架商品", name="text372", text="世界交易行没有上架商品"},
  362. {id=373, description="商品已经被购买或已经下架,请重新选择", name="text373", text="商品已经被购买或已经下架,请重新选择"},
  363. {id=374, description="商品还在公示期,无法下架", name="text374", text="商品还在公示期,无法下架"},
  364. {id=375, description="不能下架别人的商品", name="text375", text="不能下架别人的商品"},
  365. {id=376, description="没有那么多商品", name="text376", text="没有那么多商品"},
  366. {id=377, description="商品还在公示期,无法购买", name="text377", text="商品还在公示期,无法购买"},
  367. {id=378, description="不能购买自己的商品", name="text378", text="不能购买自己的商品"},
  368. {id=379, description="当前货币不足", name="text379", text="当前货币不足"},
  369. {id=380, description="商品不在公示期,无法预购", name="text380", text="商品不在公示期,无法预购"},
  370. {id=381, description="不能预购自己的商品", name="text381", text="不能预购自己的商品"},
  371. {id=382, description="您已经预约过,无需再次预约", name="text382", text="您已经预约过,无需再次预约"},
  372. {id=383, description="该道具不能上家交易行", name="text383", text="该道具不能上家交易行"},
  373. {id=384, description="剩余3倍收益时间不足", name="text384", text="剩余3倍收益时间不足"},
  374. {id=385, description="已领奖", name="text385", text="已领奖"},
  375. {id=386, description="请先闯关", name="text386", text="请先闯关"},
  376. {id=387, description="该副本等级不存在", name="text387", text="该副本等级不存在"},
  377. {id=388, description="奖励数据未位置", name="text388", text="奖励数据未位置"},
  378. {id=389, description="奖励数据配置错误", name="text389", text="奖励数据配置错误"},
  379. {id=390, description="活动暂未开启!", name="text390", text="活动暂未开启!"},
  380. {id=391, description="开服天数不足!", name="text391", text="开服天数不足!"},
  381. {id=392, description="请先退出组队!", name="text392", text="请先退出组队!"},
  382. {id=393, description="活动开启,战盟条件不满足", name="text393", text="活动开启,战盟条件不满足"},
  383. {id=394, description="主装备不存在", name="text394", text="主装备不存在"},
  384. {id=395, description="副装备不存在", name="text395", text="副装备不存在"},
  385. {id=396, description="请选择相同装备", name="text396", text="请选择相同装备"},
  386. {id=397, description="主装备或副装备没有卓越词条", name="text397", text="主装备或副装备没有卓越词条"},
  387. {id=398, description="副装备的词条主装备都已拥有", name="text398", text="副装备的词条主装备都已拥有"},
  388. {id=399, description="该装备不能叠加", name="text399", text="该装备不能叠加"},
  389. {id=400, description="最大配置词条为空", name="text400", text="最大配置词条为空"},
  390. {id=401, description="锁定词条数量错误", name="text401", text="锁定词条数量错误"},
  391. {id=402, description="消耗配置为空", name="text402", text="消耗材料不足"},
  392. {id=403, description="消耗叠加道具与配置道具不匹配", name="text403", text="消耗叠加道具与配置道具不匹配"},
  393. {id=404, description="消耗配置小于锁定配置", name="text404", text="消耗配置小于锁定配置"},
  394. {id=405, description="当前未接取任务", name="text405", text="当前未接取任务"},
  395. {id=406, description="职业不符合", name="text406", text="职业不符合"},
  396. {id=407, description="没有达到最低使用要求等级", name="text407", text="没有达到最低使用要求等级"},
  397. {id=408, description="已超过使用等级上限", name="text408", text="已超过使用等级上限"},
  398. {id=409, description="玩家不存在!", name="text409", text="玩家不存在!"},
  399. {id=410, description="玩家模型不存在!", name="text410", text="玩家模型不存在!"},
  400. {id=411, description="玩家已死亡!", name="text411", text="玩家已死亡!"},
  401. {id=412, description="道具不存在!", name="text412", text="道具不存在!"},
  402. {id=413, description="道具不在当前坐标!", name="text413", text="道具不在当前坐标!"},
  403. {id=414, description="道具不在当前角色附近!", name="text414", text="道具不在当前角色附近!"},
  404. {id=415, description="找不到技能", name="text415", text="找不到技能"},
  405. {id=416, description="非主动技能", name="text416", text="非主动技能"},
  406. {id=417, description="玩家信息不存在", name="text417", text="玩家信息不存在"},
  407. {id=418, description="玩家对象不存在", name="text418", text="玩家对象不存在"},
  408. {id=419, description="死亡中", name="text419", text="死亡中"},
  409. {id=420, description="魔法值不足", name="text420", text="魔法值不足"},
  410. {id=421, description="自身血量不足", name="text421", text="自身血量不足"},
  411. {id=422, description="自身技能值不足", name="text422", text="自身技能值不足"},
  412. {id=423, description="方向出错", name="text423", text="方向出错"},
  413. {id=424, description="技能配置错误", name="text424", text="技能配置错误"},
  414. {id=425, description="技能等级配置错误", name="text425", text="技能等级配置错误"},
  415. {id=426, description="没有该技能", name="text426", text="没有该技能"},
  416. {id=427, description="地图信息不存在", name="text427", text="地图信息不存在"},
  417. {id=428, description="安全区内无法攻击", name="text428", text="安全区内无法攻击"},
  418. {id=429, description="无法普通攻击", name="text429", text="当前[\" %s \"]状态, 无法普通攻击"},
  419. {id=430, description="无法使用技能", name="text430", text="当前[\" %s \"]状态, 无法使用技能"},
  420. {id=431, description="狼魂要塞召唤守护提示", name="text431", text="战盟资金不足,无法召唤"},
  421. {id=432, description="狼魂要塞护台被攻击提示", name="text432", text="雕像正在遭受攻击,请前往支援"},
  422. {id=433, description="狼魂要塞未加入战盟进入活动提示", name="text433", text="请先加入战盟"},
  423. {id=434, description="狼魂要塞副本开启提示", name="text434", text="狼魂要塞已开启,请前往守护狼魂雕像!"},
  424. {id=440, description="开通月卡后可交易该种类型材料", name="text440", text="开通月卡后可交易该种类型材料"},
  425. {id=441, description="巡逻提醒", name="text441", text="需开通钻石特权"},
  426. {id=442, description="开通月卡后可交易该种类型材料2", name="text442", text="开通月卡或日卡后才可兑换特权"},
  427. {id=443, description="巡逻提醒", name="text443", text="此地图无黄金怪"},
  428. {id=444, description="黄金特权月卡时间不足(临期)", name="text444", messageType={13}, textColor="265", text="您还剩%s时间黄金特权,为了您的游玩体验请及时兑换特权"},
  429. {id=445, description="钻石特权月卡时间不足(临期)", name="text445", messageType={13}, textColor="265", text="您还剩%s时间钻石特权,为了您的游玩体验请及时兑换特权"},
  430. {id=446, description="黄金特权月卡时间不足(过期)", name="text446", messageType={13}, textColor="265", text="您已无黄金特权时间,是否前往兑换"},
  431. {id=447, description="钻石特权月卡时间不足(过期)", name="text447", messageType={13}, textColor="265", text="您已无钻石特权时间,是否前往兑换"},
  432. {id=448, description="特权点击离线挂机提醒", name="text448", messageType={13}, textColor="265", text="开启离线挂机将<color=#E6E600>退出游戏</color>,保持当前<color=#E6E600>挂机效率和收益</color>,若当前为原地挂机则离线继续<color=#E6E600>原地挂机</color>,当前为巡逻挂机离线继续<color=#E6E600>巡逻挂机</color>是否关闭游戏"},
  433. {id=449, description="tips弹窗跳转等级不足提示", name="text449", text="等级不足,尚未开启此功能"},
  434. {id=450, description="战盟名称字数不在2-7个汉字内(14个字符)", name="text450", text="战盟名称字数不符合要求,请重新输入!"},
  435. {id=451, description="战盟名称不能是纯数字", name="text451", text="战盟名称不能是纯数字,请重新输入!"},
  436. {id=452, description="战盟名称查重:不能与服务器已有战盟名称相同", name="text452", text="已有同名战盟,请重新输入!"},
  437. {id=453, description="战盟名称含有违规字符", name="text453", text="战盟名称中有违规字符,请重新输入!"},
  438. {id=454, description="战盟名称修改权限", name="text454", text="无权限!仅有盟主可修改!"},
  439. {id=455, description="角色名称字数不在2-7个汉字内(14个字符)", name="text455", text="玩家名称字数不符合要求,请重新输入!"},
  440. {id=456, description="角色名称不能是纯数字", name="text456", text="玩家名称不能是纯数字,请重新输入!"},
  441. {id=457, description="角色名称查重:不能与服务器已有角色名称相同", name="text457", text="已有同名玩家,请重新输入!"},
  442. {id=458, description="角色名称含有违规字符", name="text458", text="玩家名称中有违规字符,请重新输入!"},
  443. {id=459, description="请先创建队伍(无队伍点击下拉列表)", name="text459", text="请先创建队伍"},
  444. {id=460, description="仅队长可进行喊话(有队伍但不是队长)", name="text460", text="仅队长可进行喊话"},
  445. {id=461, description="首次购买月卡", name="text461", messageType={13}, textColor="265", text="您的奇迹币额度将在<color=#E6E600>明日凌晨0点</color>时下降,充值任意金额即可保持当前额度!"},
  446. {id=462, description="奇迹币额度不够提示", name="text462", text="剩余奇迹币额度不足,无法购买该商品"},
  447. {id=463, description="龙魂连击技能升级消耗不足", name="text463", text="消耗道具不足,请补充道具!"},
  448. {id=465, description="请输入手机号", name="text465", text="请输入手机号"},
  449. {id=466, description="请输入年份", name="text466", text="请输入年份"},
  450. {id=467, description="请输入正确的手机号", name="text467", text="请输入正确的手机号"},
  451. {id=468, description="已经填写过问卷,无需重复填写", name="text468", text="已经填写过问卷,无需重复填写"},
  452. {id=469, description="抽奖次数不足", name="text469", text="抽奖次数不足"},
  453. {id=470, description="请输入正确的手机号", name="text470", text="请输入正确的手机号"},
  454. {id=471, description="当天抽奖次数已经用完,请明天再来", name="text471", text="当天抽奖次数已经用完,请明天再来"},
  455. {id=472, description="无法跨级开通VIP特权", name="text472", text="无法跨级开通VIP特权,请先开通VIP%s"},
  456. {id=473, description="充值-代币不足", name="text473", text="代币不足"},
  457. {id=474, description="请选择性别", name="text474", text="请选择性别"},
  458. {id=475, description="请填写第三项", name="text475", text="请填写第三项"},
  459. {id=476, description="请填写第四项", name="text476", text="请填写第四项"},
  460. {id=477, description="礼包-持续时间结束", name="text477", text="礼包已过期"},
  461. {id=478, description="黄金地图限制文字提示", name="text478", text="VIP特权等级不足,是否前往开通VIP"},
  462. {id=479, description="自动拾取特权未开启提示", name="text479", messageType={13}, textColor="265", text="充值激活<color=#e6e600>白银特权卡</color>开通自动范围拾取"},
  463. {id=480, description="自动回收特权未开启提示", name="text480", messageType={13}, textColor="265", text="充值激活<color=#e6e600>黄金特权卡</color>开通自动回收"},
  464. {id=481, description="挂机巡逻特权未开启提示", name="text481", messageType={13}, textColor="265", text="充值激活<color=#e6e600>钻石特权卡</color>开通自动巡逻"},
  465. {id=482, description="天赋点数不足", name="text482", text="天赋点数不足"},
  466. {id=483, description="天赋前置点数不足", name="text483", text="天赋前置点数不足"},
  467. {id=484, description="物品不能重复选择", name="text484", text=""},
  468. {id=485, description="请先激活对应等级VIP", name="text485", text="请先激活对应等级VIP"},
  469. {id=486, description="当前累充不足", name="text486", text="当前累充不足"},
  470. {id=487, description="变身后禁止骑乘坐骑", name="text487", text="变身状态禁止骑乘"},
  471. {id=489, description="获得道具跑马灯", name="text489", messageType={1}, receiver=4, textColor="1", rollSpeed=10000, rollCount=1, text="<color=#FFFFFF>让我们恭喜<color=#FFC200>%s</color>玩家获得<color=#ff0000>%s</color>!!!!</color>"},
  472. {id=490, description="转职等级不足", name="text490", text="转职等级不足"},
  473. {id=226, description="随身商店特权未开启提示", name="text226", messageType={13}, textColor="265", text="传送到商店NPC处购买药品"},
  474. {id=227, description="随身仓库特权未开启提示", name="text227", messageType={13}, textColor="265", text="传送到仓库NPC处开启仓库"},
  475. {id=229, description="自动买药特权未开启提示", name="text229", messageType={13}, textColor="265", text="充值激活<color=#e6e600>白银特权卡</color>开通自动买药"},
  476. {id=491, description="交易行寄售特权未开启提示", name="text491", messageType={13}, textColor="265", text="充值激活<color=#e6e600>钻石特权卡</color>开通交易行寄售"},
  477. {id=492, description="连击副本扫荡特权未开启提示", name="text492", messageType={13}, textColor="265", text="充值激活<color=#e6e600>黄金特权卡</color>或<color=#e6e600>钻石特权卡</color>开通连击副本扫荡"},
  478. {id=493, description="连击试炼玩家挑战次数不足", name="text493", transparencyB=0, textColor="280", text="副本挑战次数不足,可开启黄金特权获取次数!"},
  479. {id=494, description="随机坐标传送", name="text494", messageType={13}, textColor="265", text="<color=#acc5fe>移动符咒</color>不足,是否前往商城购买?"},
  480. {id=495, description="大秘境副本道具不足提示", name="text495", transparencyB=0, textColor="280", text="道具不足,请补充道具!"},
  481. {id=496, description="定点传送卷轴", name="text496", text="当前地图不可使用"},
  482. {id=497, description="定点传送卷轴", name="text497", messageType={13}, textColor="265", text="<color=#acc5fe>定点传送卷轴</color>不足,是否前往商城购买?"},
  483. {id=498, description="定点传送卷轴", name="text498", text="阻挡点不可达"},
  484. {id=499, description="大天使装备升级", name="text499", messageType={16}, textColor="265", text="%i等级提升至<color=#1add1f>%d</color>级", ShowDuration=2000},
  485. {id=500, description="连击试炼玩家挑战次数不足", name="text500", transparencyB=0, textColor="280", text="该装备等阶不足,尚未解锁该圣杯位"},
  486. {id=501, description="功能预告频繁点击", name="text501", transparencyB=0, textColor="280", text="奖励派送中,无需重复点击"},
  487. {id=502, description="界面按钮无法使用提示", name="text502", text="当前界面不可使用!"},
  488. {id=601, description="运营活动-抽奖,抽中大奖播报", name="text601", messageType={1}, receiver=4, transparencyB=0, textColor="265", rollSpeed=10000, text="恭喜玩家<color=#e6e600>%s</color>抽中<color=#ff8a00>极品大奖</color>【%s】,战力更上一层!", ShowDuration=3000},
  489. {id=16001, description="攻城战不在活动时间", name="text16001", text="当前不在活动时间"},
  490. {id=16002, description="攻城战未加入战盟", name="text16002", text="当前未处于战盟中,请先加入一个战盟"},
  491. {id=16003, name="text16003", text="攻城战期间内,禁止创建战盟"},
  492. {id=16004, name="text16004", text="攻城战期间内,禁止解散战盟"},
  493. {id=16005, name="text16005", text="攻城战期间内,禁止进入战盟"},
  494. {id=16006, name="text16006", text="攻城战期间内,禁止提出战盟"},
  495. {id=16007, name="text16007", text="攻城战期间内,禁止退出战盟"},
  496. {id=16008, name="text16008", text="攻城战期间内,禁止更换职位"},
  497. {id=16009, name="text16009", text="攻城战期间内,禁止修改战盟名字"},
  498. {id=16010, description="攻城战 守方通知", name="text16010", messageType={5}, textColor="265", text="<color=#ff0000>【%s】</color>正在遭受攻击,请尽快支援!", ShowDuration=5000},
  499. {id=16011, description="攻城战 罗兰之塔通知(同盟)", name="text16011", messageType={5}, textColor="265", text="<color=#ff0000>【%s】</color>已经成功占领罗兰之塔,请做好防守!", ShowDuration=5000},
  500. {id=16012, description="攻城战 罗兰之塔通知(不同盟)", name="text16012", messageType={5}, textColor="265", text="罗兰之塔被<color=#ff0000>【%s】</color>占领,请尽快去抢夺!", ShowDuration=5000},
  501. {id=19001, description="大天使秘境", name="text19001", messageType={13}, textColor="265", text="当前钥匙等级为:%s级。\n此次通关评分为%s,大秘境钥匙可提升%s级是否进行升级?"},
  502. {id=19002, description="大天使秘境", name="text19002", messageType={13}, textColor="265", text="当前可领取奖励次数不足,无法获取通关奖励。达成评分后依旧可升级钥匙,是否进入副本"},
  503. {id=19003, description="大天使秘境", name="text19003", messageType={13}, textColor="265", text="进行扫荡可直接获取当前秘境层数奖励,是否进行扫荡"},
  504. {id=19004, description="大天使秘境", name="text19004", text="奖励次数不足,无法扫荡"},
  505. {id=20001, description="卡牌孔位解锁顺序提示", name="text20001", text="请先解锁前置卡牌槽位"},
  506. {id=20002, description="卡牌孔位解锁失败提示", name="text20002", text="开槽失败,已增加幸运值"},
  507. {id=20003, description="卡牌孔位解锁提示", name="text20003", text="装备阶数不足,无法开启"},
  508. {id=20004, description="卡牌合成材料不足提示", name="text20004", text="卡牌数量不足"},
  509. {id=20005, description="变身技能轮盘技能未解锁提示", name="text20005", text="变身卡牌等级不足,该技能未解锁"},
  510. {id=20006, description="卡牌合成提示弹窗文本", name="text20006", messageType={13}, textColor="265", text="选中的物品包含珍稀物品,确认合成吗"},
  511. {id=20007, description="卡牌合成槽满了再点击提示", name="text20007", text="卡牌合成材料已满"},
  512. {id=20008, description="卡牌突破提示弹窗文本", name="text20008", messageType={13}, textColor="265", text="选中的物品包含珍稀物品,确认突破吗"},
  513. {id=27001, description="猎魔积分争霸赛", name="text27001", messageType={1}, condition={{1,65}}, textColor="3007", rollSpeed=10000, text="目前猎魔积分争霸赛中,<color=#ff0000>%s</color>、<color=#ff0000>%s</color>、<color=#ff0000>%s</color>三位玩家处于领先位置。", ShowDuration=2000},
  514. {id=28001, description="穿戴属性不足时自动脱下弹窗文本", name="text28001", messageType={13}, textColor="265", text="属性发生改变,已将不满足穿戴属性的%s自动脱下"},
  515. {id=28002, description="消费排行tips", name="text28002", messageType={13}, textColor="265", text="充值金额可上榜,活动结束后以邮件的形式发送奖励"},
  516. {id=28003, description="钻石不足提示", name="text28003", textColor="265", text="当前钻石不足"},
  517. {id=28004, description="钻石礼包tips", name="text28004", messageType={13}, textColor="265", text="有已购买的礼包时无法购买一键礼包"},
  518. {id=29001, description="圣杯脱下时背包已满提升", name="text29001", textColor="265", text="当前背包已满,无法卸下"},
  519. {id=30001, description="拾取失败(背包满的情况)", name="text30001", textColor="265", text="当前背包已满,无法拾取,暂停自动巡逻"},
  520. {id=31001, description="成功率最大时提示", name="text31001", textColor="265", text="已达到成功率上限"},
  521. {id=32001, description="合成达到最大数量提示", name="text32001", textColor="265", text="已达到最大数量"},
  522. }
  523. local defaults = {description="攻城战 强制禁止", messageType={14}, subType="系统", condition={{1,1}}, receiver=1, backgroundColor="0", transparencyB=40, textColor="271", transparencyT=0, textSize=20, offsetX=0, offsetY=0, rollSpeed=0, rollCount=0, releaseEffect={}, ShowDuration=0, order=0}
  524. local mt = {__index = defaults}
  525. for _, v in ipairs(cfg_string) do
  526. setmetatable(v, mt)
  527. end
  528. return cfg_string