Schedule.xml 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881
  1. <?xml version="1.0"?>
  2. <?mso-application progid="Excel.Sheet"?>
  3. <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
  4. xmlns:o="urn:schemas-microsoft-com:office:office"
  5. xmlns:x="urn:schemas-microsoft-com:office:excel"
  6. xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
  7. xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
  8. xmlns:html="http://www.w3.org/TR/REC-html40">
  9. <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
  10. <Keywords>各系统次数</Keywords>
  11. <Revision>3</Revision>
  12. <Created>2019-01-07T08:01:00Z</Created>
  13. <Company>微软中国</Company>
  14. <Version>16.00</Version>
  15. </DocumentProperties>
  16. <CustomDocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
  17. <KSOProductBuildVer dt:dt="string">2052-11.1.0.8612</KSOProductBuildVer>
  18. </CustomDocumentProperties>
  19. <OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
  20. <AllowPNG/>
  21. </OfficeDocumentSettings>
  22. <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
  23. <TabRatio>590</TabRatio>
  24. <ProtectStructure>False</ProtectStructure>
  25. <ProtectWindows>False</ProtectWindows>
  26. </ExcelWorkbook>
  27. <Styles>
  28. <Style ss:ID="Default" ss:Name="Normal">
  29. <Alignment ss:Vertical="Center"/>
  30. <Borders/>
  31. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
  32. <Interior/>
  33. <NumberFormat/>
  34. <Protection/>
  35. </Style>
  36. <Style ss:ID="s1" ss:Name="常规 2">
  37. <Alignment ss:Vertical="Center"/>
  38. <Borders/>
  39. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
  40. <Interior/>
  41. <NumberFormat/>
  42. <Protection/>
  43. </Style>
  44. </Styles>
  45. <Worksheet ss:Name="Schedule">
  46. <Table ss:ExpandedColumnCount="23" ss:ExpandedRowCount="21" x:FullColumns="1"
  47. x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
  48. <Row ss:AutoFitHeight="0" ss:StyleID="s1">
  49. <Cell><Data ss:Type="String">任务ID</Data></Cell>
  50. <Cell><Data ss:Type="String">任务名称</Data></Cell>
  51. <Cell><Data ss:Type="String">活动类型</Data><Comment ss:Author="YLMFENG"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9">YLMFENG:</Font></B><Font html:Size="9">&#10;活动分类&#10;开放时段,开放周期必填,节日时间只节日活动填,开服时间只开服填)&#10;1:今日活动()&#10;2:周日活动()&#10;3:开服活动(开服两个时间必填)&#10;4:节日活动(节日4个时间必填)&#10;5:每日更多活动(只开启活动,不显示在活动预览界面内)</Font></ss:Data></Comment></Cell>
  52. <Cell><Data ss:Type="String">排序</Data></Cell>
  53. <Cell><Data ss:Type="String">是否有效</Data><Comment ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">陈绍治:</Font></B><Font html:Size="9" html:Color="#000000">&#10;&#10;0:无效,不出现在列表种,也不计算活跃度&#10;1:有效</Font></ss:Data></Comment></Cell>
  54. <Cell><Data ss:Type="String">时间描述</Data><Comment ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9" html:Color="#000000">&#10;&#10;文本描述,只做客户端UI显示用</Font></ss:Data></Comment></Cell>
  55. <Cell><Data ss:Type="String">开放时段</Data><Comment ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9" html:Color="#000000">&#10;&#10;活动内容开始的时间,格式为hh:mm&#10;多个时间段以分号;分割</Font></ss:Data></Comment></Cell>
  56. <Cell><Data ss:Type="String">开放周期</Data><Comment ss:Author="王扬"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:活动预览右侧分页签推送显示</Font></B><Font html:Size="9" html:Color="#000000">&#10;0= 每天推送&#10;1~7 分别表示 周一至周日开放;如果活动不在开放周期内,则当日活动列表内不显示该活动&#10;&#10;多个时间段以分号;分割</Font></ss:Data></Comment></Cell>
  57. <Cell><Data ss:Type="String">节日展示开始时间</Data><Comment ss:Author="陆盛"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">时间格式为&#10;ZZZZ-XX-YY AA:BB:CC</Font></ss:Data></Comment></Cell>
  58. <Cell><Data ss:Type="String">节日展示结束时间</Data><Comment ss:Author="陆盛"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">时间格式为&#10;ZZZZ-XX-YY AA:BB:CC&#10;&#10;填3016-01-01 23:59:59为永久&#10;</Font></ss:Data></Comment></Cell>
  59. <Cell><Data ss:Type="String">节日实际开始时间</Data><Comment ss:Author="陆盛"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">时间格式为&#10;ZZZZ-XX-YY AA:BB:CC</Font></ss:Data></Comment></Cell>
  60. <Cell><Data ss:Type="String">节日实际结束时间</Data><Comment ss:Author="陆盛"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">时间格式为&#10;ZZZZ-XX-YY AA:BB:CC&#10;&#10;填3016-01-01 23:59:59为永久&#10;</Font></ss:Data></Comment></Cell>
  61. <Cell><Data ss:Type="String">开服后第几天开始</Data></Cell>
  62. <Cell><Data ss:Type="String">开服后第几天结束</Data><Comment ss:Author="陆盛"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">按自然天数的23:59:59结束,即同一天早7点和晚7点开服的区,活动结束时间都相同&#10;没有填代表</Font></ss:Data></Comment></Cell>
  63. <Cell><Data ss:Type="String">任务图标</Data></Cell>
  64. <Cell><Data ss:Type="String">参与等级</Data></Cell>
  65. <Cell><Data ss:Type="String">活动形式</Data></Cell>
  66. <Cell><Data ss:Type="String">活动入口</Data></Cell>
  67. <Cell><Data ss:Type="String">入口备注</Data></Cell>
  68. <Cell><Data ss:Type="String">活动描述</Data></Cell>
  69. <Cell><Data ss:Type="String">奖励预览</Data></Cell>
  70. <Cell><Data ss:Type="String">跟随状态下是否可以前往</Data><Comment ss:Author="王扬"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:</Font></B><Font html:Size="9" html:Color="#000000">&#10;1=是&#10;0=否</Font></ss:Data></Comment></Cell>
  71. <Cell><Data ss:Type="String">玩法说明</Data></Cell>
  72. </Row>
  73. <Row ss:AutoFitHeight="0" ss:StyleID="s1">
  74. <Cell><Data ss:Type="String">SchID</Data></Cell>
  75. <Cell><Data ss:Type="String">SchName</Data></Cell>
  76. <Cell><Data ss:Type="String">Type</Data></Cell>
  77. <Cell><Data ss:Type="String">Sort</Data></Cell>
  78. <Cell><Data ss:Type="String">IsValid</Data></Cell>
  79. <Cell><Data ss:Type="String">TimeDesc</Data></Cell>
  80. <Cell><Data ss:Type="String">OpenPeriod</Data></Cell>
  81. <Cell><Data ss:Type="String">Openday</Data></Cell>
  82. <Cell><Data ss:Type="String">OpenShowTime</Data></Cell>
  83. <Cell><Data ss:Type="String">CloseShowTime</Data></Cell>
  84. <Cell><Data ss:Type="String">OpenTime</Data></Cell>
  85. <Cell><Data ss:Type="String">CloseTime</Data></Cell>
  86. <Cell><Data ss:Type="String">OpenDateStart</Data></Cell>
  87. <Cell><Data ss:Type="String">OpenDateClose</Data></Cell>
  88. <Cell><Data ss:Type="String">Icon</Data></Cell>
  89. <Cell><Data ss:Type="String">_LvLimit</Data></Cell>
  90. <Cell><Data ss:Type="String">Form</Data></Cell>
  91. <Cell><Data ss:Type="String">Entrance</Data></Cell>
  92. <Cell><Data ss:Type="String">EntryNotes</Data></Cell>
  93. <Cell><Data ss:Type="String">ActivDesc</Data></Cell>
  94. <Cell><Data ss:Type="String">RewardPre</Data></Cell>
  95. <Cell><Data ss:Type="String">GoForInFollowingState</Data></Cell>
  96. <Cell><Data ss:Type="String">Explain</Data></Cell>
  97. </Row>
  98. <Row ss:AutoFitHeight="0" ss:StyleID="s1">
  99. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  100. <Cell><Data ss:Type="String">STRING</Data></Cell>
  101. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  102. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  103. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  104. <Cell><Data ss:Type="String">STRING</Data></Cell>
  105. <Cell><Data ss:Type="String">STRING</Data></Cell>
  106. <Cell><Data ss:Type="String">STRING</Data></Cell>
  107. <Cell><Data ss:Type="String">STRING</Data></Cell>
  108. <Cell><Data ss:Type="String">STRING</Data></Cell>
  109. <Cell><Data ss:Type="String">STRING</Data></Cell>
  110. <Cell><Data ss:Type="String">STRING</Data></Cell>
  111. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  112. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  113. <Cell><Data ss:Type="String">STRING</Data></Cell>
  114. <Cell><Data ss:Type="String">STRING</Data></Cell>
  115. <Cell><Data ss:Type="String">STRING</Data></Cell>
  116. <Cell><Data ss:Type="String">STRING</Data></Cell>
  117. <Cell><Data ss:Type="String">STRING</Data></Cell>
  118. <Cell><Data ss:Type="String">STRING</Data></Cell>
  119. <Cell><Data ss:Type="String">STRING</Data></Cell>
  120. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  121. <Cell><Data ss:Type="String">STRING</Data></Cell>
  122. </Row>
  123. <Row ss:AutoFitHeight="0" ss:Height="27">
  124. <Cell><Data ss:Type="Number">1</Data></Cell>
  125. <Cell><Data ss:Type="String">福娃</Data></Cell>
  126. <Cell><Data ss:Type="Number">1</Data></Cell>
  127. <Cell><Data ss:Type="Number">1</Data></Cell>
  128. <Cell><Data ss:Type="Number">1</Data></Cell>
  129. <Cell><Data ss:Type="String">20:00-20:30</Data></Cell>
  130. <Cell><Data ss:Type="String">20:00-20:30</Data></Cell>
  131. <Cell><Data ss:Type="String">1;3</Data></Cell>
  132. <Cell ss:Index="15"><Data ss:Type="String">mobai</Data></Cell>
  133. <Cell><Data ss:Type="String">炼气一层</Data></Cell>
  134. <Cell><Data ss:Type="String">不限</Data></Cell>
  135. <Cell><Data ss:Type="String">青城山主城</Data></Cell>
  136. <Cell ss:Index="20"><Data ss:Type="String">活动时间内,每5分钟会在主城刷新出大量福娃,可前往寻找并跟福娃互动,获得灵玉奖励</Data></Cell>
  137. <Cell><Data ss:Type="String">cash</Data></Cell>
  138. <Cell><Data ss:Type="Number">0</Data></Cell>
  139. <Cell><Data ss:Type="String">1.每周一、三下午20:00-20:30,会在主城内大量刷新出福娃\n2.活动时间内跟福娃互动可以获得奖励,互动次数没有限制\n3.活动时间结束后不会再刷新出来福娃,已刷新的福娃不会消失</Data></Cell>
  140. </Row>
  141. <Row ss:AutoFitHeight="0" ss:Height="81">
  142. <Cell><Data ss:Type="Number">2</Data></Cell>
  143. <Cell><Data ss:Type="String">多服无名镇</Data></Cell>
  144. <Cell><Data ss:Type="Number">1</Data></Cell>
  145. <Cell><Data ss:Type="Number">1</Data></Cell>
  146. <Cell><Data ss:Type="Number">1</Data></Cell>
  147. <Cell><Data ss:Type="String">19:50-20:40</Data></Cell>
  148. <Cell><Data ss:Type="String">19:50-20:40</Data></Cell>
  149. <Cell><Data ss:Type="Number">2</Data></Cell>
  150. <Cell ss:Index="15"><Data ss:Type="String">zhanyao</Data></Cell>
  151. <Cell><Data ss:Type="String">一阶筑基</Data></Cell>
  152. <Cell><Data ss:Type="String">不限</Data></Cell>
  153. <Cell><Data ss:Type="String">传送点混元灯</Data></Cell>
  154. <Cell><Data ss:Type="String">(传送灯位于青城山中央的小石台边)</Data></Cell>
  155. <Cell><Data ss:Type="String">活动时间内,可前往主城混元灯传送,参加无名镇活动,传送进入活动地图后等待开启&#10;&#10;开启时间(可提前10分钟进入备战区)&#10;20:00-20:10开始第一场&#10;20:30-20:40开始第二场</Data></Cell>
  156. <Cell><Data ss:Type="String">kill;solopoint;skcl</Data></Cell>
  157. <Cell><Data ss:Type="Number">0</Data></Cell>
  158. <Cell><Data ss:Type="String">1.击败你的敌人有几率掉落装备,掉落的装备可被任何人拾取\n2.装备掉落的几率随着时间、角色死亡数量越变越高,若被击败后掉落了装备,则该角色的掉率会一定程度降低\n3.如果你被敌人击败并掉落装备,在你的装备未被爆给其他人之前你击败了该敌人,则有更大概率爆回你自己的装备\n4.角色掉落了装备,在多服无名镇结束前,该装备的属性都是在身上的,不会随着装备被爆出而损失\n5.在爆出并获取他人装备一定时间内,强制退出或离线一段时间未在游戏结束前上线,则会有一定概率归还部分爆出其他角色获得的装备。如未在此时间段内退出,则只记一次死亡的装备掉落概率&#10;</Data></Cell>
  159. </Row>
  160. <Row ss:AutoFitHeight="0" ss:Height="81">
  161. <Cell><Data ss:Type="Number">3</Data></Cell>
  162. <Cell><Data ss:Type="String">双服战</Data></Cell>
  163. <Cell><Data ss:Type="Number">1</Data></Cell>
  164. <Cell><Data ss:Type="Number">1</Data></Cell>
  165. <Cell><Data ss:Type="Number">1</Data></Cell>
  166. <Cell><Data ss:Type="String">19:50-20:40</Data></Cell>
  167. <Cell><Data ss:Type="String">19:50-20:40</Data></Cell>
  168. <Cell><Data ss:Type="Number">4</Data></Cell>
  169. <Cell ss:Index="15"><Data ss:Type="String">jishaboss</Data></Cell>
  170. <Cell><Data ss:Type="String">一阶筑基</Data></Cell>
  171. <Cell><Data ss:Type="String">不限</Data></Cell>
  172. <Cell><Data ss:Type="String">传送点混元灯</Data></Cell>
  173. <Cell><Data ss:Type="String">(传送灯位于青城山中央的小石台边)</Data></Cell>
  174. <Cell><Data ss:Type="String">活动时间内,可前往主城混元灯传送,参加无名镇活动,传送进入活动地图后等待开启&#10;&#10;开启时间(可提前10分钟进入备战区)&#10;20:00-20:10开始第一场&#10;20:30-20:40开始第二场</Data></Cell>
  175. <Cell><Data ss:Type="String">kill;solopoint;skcl</Data></Cell>
  176. <Cell><Data ss:Type="Number">0</Data></Cell>
  177. <Cell><Data ss:Type="String">1.双服无名镇是大服内每两个小服随机匹配靠占点得分取胜的玩法\n2.地图内有一大两小三个机制点,大的占60%,小的各占20%。当有一方占点达到100%或时间结束时得分多的一方获胜,如时间结束两边打平,则为平局\n3.占点方式为踩在机制点范围内,如范围内没有敌方存在则开始占据,10秒后完全占据开始得分。如有敌方在机制点内则占据进度不会增加,而当敌方占领一部分进度或完全占领机制点后,区域内敌方死亡或离开,己方占领会先清理掉敌方的占据进度,再开始己方的占据进度&#10;</Data></Cell>
  178. </Row>
  179. <Row ss:AutoFitHeight="0" ss:Height="40.5">
  180. <Cell><Data ss:Type="Number">4</Data></Cell>
  181. <Cell><Data ss:Type="String">星瀚殿</Data></Cell>
  182. <Cell><Data ss:Type="Number">1</Data></Cell>
  183. <Cell><Data ss:Type="Number">1</Data></Cell>
  184. <Cell><Data ss:Type="Number">1</Data></Cell>
  185. <Cell><Data ss:Type="String">20:00-20:20</Data></Cell>
  186. <Cell><Data ss:Type="String">20:00-20:20</Data></Cell>
  187. <Cell><Data ss:Type="Number">6</Data></Cell>
  188. <Cell ss:Index="15"><Data ss:Type="String">xingkong</Data></Cell>
  189. <Cell><Data ss:Type="String">一阶筑基</Data></Cell>
  190. <Cell><Data ss:Type="String">不限</Data></Cell>
  191. <Cell><Data ss:Type="String">星瀚殿长老</Data></Cell>
  192. <Cell><Data ss:Type="String">(星瀚殿长老位于青城山右下角的台子上)</Data></Cell>
  193. <Cell><Data ss:Type="String">于浩瀚星空中漂流的大能遗府,蕴藏各种奇珍异宝,全服修士共同挑战!&#10;20:00-20:20为报名时间,报名结束后开始战斗,20:20后无法进入</Data></Cell>
  194. <Cell><Data ss:Type="String">sequip;cash;gold</Data></Cell>
  195. <Cell><Data ss:Type="Number">0</Data></Cell>
  196. <Cell><Data ss:Type="String">1.每周六开启星瀚殿团队副本,需要提前报名参加\n2.与副本NPC对话进入战斗场地,开战1分钟内可自由进出副本,1分钟后再退出视为放弃副本,无法再次进入,组队情况下默认退出队伍&#10;</Data></Cell>
  197. </Row>
  198. <Row ss:AutoFitHeight="0" ss:Height="40.5">
  199. <Cell><Data ss:Type="Number">5</Data></Cell>
  200. <Cell><Data ss:Type="String">封神战</Data></Cell>
  201. <Cell><Data ss:Type="Number">2</Data></Cell>
  202. <Cell><Data ss:Type="Number">1</Data></Cell>
  203. <Cell><Data ss:Type="Number">1</Data></Cell>
  204. <Cell><Data ss:Type="String">20:00-20:15</Data></Cell>
  205. <Cell><Data ss:Type="String">20:00-20:15</Data></Cell>
  206. <Cell><Data ss:Type="Number">0</Data></Cell>
  207. <Cell ss:Index="15"><Data ss:Type="String">kuafuboss</Data></Cell>
  208. <Cell><Data ss:Type="String">一阶筑基</Data></Cell>
  209. <Cell><Data ss:Type="String">不限</Data></Cell>
  210. <Cell><Data ss:Type="String">传送点混元灯</Data></Cell>
  211. <Cell><Data ss:Type="String">(传送灯位于青城山中央的小石台边)</Data></Cell>
  212. <Cell><Data ss:Type="String">活动时间内,可前往主城混元灯传送,参加封神战活动,传送进入活动地图后等待开启</Data></Cell>
  213. <Cell><Data ss:Type="String">cash;skcl;overview_petskill7</Data></Cell>
  214. <Cell><Data ss:Type="Number">0</Data></Cell>
  215. <Cell><Data ss:Type="String">1.为缓解无量量劫,阻止诸法灭尽,文昌帝君与众多星宿帝君,前往天外魔域斩除外道天魔,护持三界和平。现今仙界职位空缺,为纠察诸天,使日月星宿如常运行\n2.天宫开辟万界盛会,邀请各界的仙盟势力,汇聚于仙界一地,斗法论道承天封神,万界中斗法论道第一仙盟,其盟主将继任文昌帝君之神位,分封神职于众人.</Data></Cell>
  216. </Row>
  217. <Row ss:AutoFitHeight="0" ss:Height="27">
  218. <Cell><Data ss:Type="Number">6</Data></Cell>
  219. <Cell><Data ss:Type="String">小世界</Data></Cell>
  220. <Cell><Data ss:Type="Number">0</Data></Cell>
  221. <Cell><Data ss:Type="Number">1</Data></Cell>
  222. <Cell><Data ss:Type="Number">0</Data></Cell>
  223. <Cell><Data ss:Type="String">all</Data></Cell>
  224. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  225. <Cell><Data ss:Type="Number">0</Data></Cell>
  226. <Cell ss:Index="15"><Data ss:Type="String">shilianmijing</Data></Cell>
  227. <Cell><Data ss:Type="String">1级</Data></Cell>
  228. <Cell><Data ss:Type="String">不限</Data></Cell>
  229. <Cell ss:Index="20"><Data ss:Type="String">拥有挑战令可进入,挑战不可能完成的任务,进入下一层吧!</Data></Cell>
  230. <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
  231. </Row>
  232. <Row ss:AutoFitHeight="0">
  233. <Cell><Data ss:Type="Number">7</Data></Cell>
  234. <Cell><Data ss:Type="String">除魔</Data></Cell>
  235. <Cell><Data ss:Type="Number">0</Data></Cell>
  236. <Cell><Data ss:Type="Number">1</Data></Cell>
  237. <Cell><Data ss:Type="Number">0</Data></Cell>
  238. <Cell><Data ss:Type="String">all</Data></Cell>
  239. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  240. <Cell><Data ss:Type="Number">0</Data></Cell>
  241. <Cell ss:Index="15"><Data ss:Type="String">zhanyao</Data></Cell>
  242. <Cell><Data ss:Type="String">1级</Data></Cell>
  243. <Cell><Data ss:Type="String">不限</Data></Cell>
  244. <Cell ss:Index="20"><Data ss:Type="String">击败成魔修士可获得大量修为。</Data></Cell>
  245. <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
  246. </Row>
  247. <Row ss:AutoFitHeight="0" ss:Height="27">
  248. <Cell><Data ss:Type="Number">8</Data></Cell>
  249. <Cell><Data ss:Type="String">通天灯</Data></Cell>
  250. <Cell><Data ss:Type="Number">0</Data></Cell>
  251. <Cell><Data ss:Type="Number">1</Data></Cell>
  252. <Cell><Data ss:Type="Number">0</Data></Cell>
  253. <Cell><Data ss:Type="String">09:00-23:00</Data></Cell>
  254. <Cell><Data ss:Type="String">09:00-23:00</Data></Cell>
  255. <Cell><Data ss:Type="Number">0</Data></Cell>
  256. <Cell ss:Index="15"><Data ss:Type="String">kuafuboss</Data></Cell>
  257. <Cell><Data ss:Type="String">1级</Data></Cell>
  258. <Cell><Data ss:Type="String">不限</Data></Cell>
  259. <Cell ss:Index="20"><Data ss:Type="String">在通天灯处前往将军陵,观星台和灵域,击败强大的妖王获得奖励</Data></Cell>
  260. <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
  261. </Row>
  262. <Row ss:AutoFitHeight="0" ss:Height="27">
  263. <Cell><Data ss:Type="Number">9</Data></Cell>
  264. <Cell><Data ss:Type="String">镇妖塔</Data></Cell>
  265. <Cell><Data ss:Type="Number">0</Data></Cell>
  266. <Cell><Data ss:Type="Number">1</Data></Cell>
  267. <Cell><Data ss:Type="Number">0</Data></Cell>
  268. <Cell><Data ss:Type="String">all</Data></Cell>
  269. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  270. <Cell><Data ss:Type="Number">0</Data></Cell>
  271. <Cell ss:Index="15"><Data ss:Type="String">zhenyaota</Data></Cell>
  272. <Cell><Data ss:Type="String">炼气4</Data></Cell>
  273. <Cell><Data ss:Type="String">单人</Data></Cell>
  274. <Cell><Data ss:Type="String">镇妖塔守卫</Data></Cell>
  275. <Cell><Data ss:Type="String">(位于青城山右上方石桥边的平台上)</Data></Cell>
  276. <Cell><Data ss:Type="String">前往青城山找镇妖塔守卫进入,挑战次数不限,通关层数越高,奖励越丰厚。</Data></Cell>
  277. <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
  278. </Row>
  279. <Row ss:AutoFitHeight="0" ss:Height="27">
  280. <Cell><Data ss:Type="Number">10</Data></Cell>
  281. <Cell><Data ss:Type="String">采莲</Data></Cell>
  282. <Cell><Data ss:Type="Number">0</Data></Cell>
  283. <Cell><Data ss:Type="Number">1</Data></Cell>
  284. <Cell><Data ss:Type="Number">0</Data></Cell>
  285. <Cell><Data ss:Type="String">all</Data></Cell>
  286. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  287. <Cell><Data ss:Type="Number">0</Data></Cell>
  288. <Cell ss:Index="15"><Data ss:Type="String">haoyuejing</Data></Cell>
  289. <Cell><Data ss:Type="String">30级</Data></Cell>
  290. <Cell><Data ss:Type="String">单人/组队</Data></Cell>
  291. <Cell ss:Index="20"><Data ss:Type="String">消耗采莲通行令可前往采莲,完成后可以获得大量经验、灵石和强化材料,与其他修士组队后更加轻松。</Data></Cell>
  292. <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
  293. </Row>
  294. <Row ss:AutoFitHeight="0">
  295. <Cell><Data ss:Type="Number">11</Data></Cell>
  296. <Cell><Data ss:Type="String">练气</Data></Cell>
  297. <Cell><Data ss:Type="Number">0</Data></Cell>
  298. <Cell><Data ss:Type="Number">1</Data></Cell>
  299. <Cell><Data ss:Type="Number">0</Data></Cell>
  300. <Cell><Data ss:Type="String">all</Data></Cell>
  301. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  302. <Cell><Data ss:Type="Number">0</Data></Cell>
  303. <Cell ss:Index="15"><Data ss:Type="String">shimenrenwu</Data></Cell>
  304. <Cell><Data ss:Type="String">20级</Data></Cell>
  305. <Cell><Data ss:Type="String">不限</Data></Cell>
  306. <Cell ss:Index="20"><Data ss:Type="String">每日完成3次练气任务可以获得大量经验和灵玉</Data></Cell>
  307. <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
  308. </Row>
  309. <Row ss:AutoFitHeight="0">
  310. <Cell><Data ss:Type="Number">12</Data></Cell>
  311. <Cell><Data ss:Type="String">斩妖</Data></Cell>
  312. <Cell><Data ss:Type="Number">0</Data></Cell>
  313. <Cell><Data ss:Type="Number">1</Data></Cell>
  314. <Cell><Data ss:Type="Number">0</Data></Cell>
  315. <Cell><Data ss:Type="String">all</Data></Cell>
  316. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  317. <Cell><Data ss:Type="Number">0</Data></Cell>
  318. <Cell ss:Index="15"><Data ss:Type="String">zhanyao</Data></Cell>
  319. <Cell><Data ss:Type="String">炼气4</Data></Cell>
  320. <Cell><Data ss:Type="String">不限</Data></Cell>
  321. <Cell ss:Index="20"><Data ss:Type="String">击败或者参与击败世界领主将获得极品装备材料奖励!</Data></Cell>
  322. <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
  323. </Row>
  324. <Row ss:AutoFitHeight="0" ss:Height="40.5">
  325. <Cell><Data ss:Type="Number">13</Data></Cell>
  326. <Cell><Data ss:Type="String">仙盟妖尊</Data></Cell>
  327. <Cell><Data ss:Type="Number">1</Data></Cell>
  328. <Cell><Data ss:Type="Number">1</Data></Cell>
  329. <Cell><Data ss:Type="Number">1</Data></Cell>
  330. <Cell><Data ss:Type="String">20:00-20:30</Data></Cell>
  331. <Cell><Data ss:Type="String">20:00-20:30</Data></Cell>
  332. <Cell><Data ss:Type="Number">5</Data></Cell>
  333. <Cell ss:Index="15"><Data ss:Type="String">xianmengboss</Data></Cell>
  334. <Cell><Data ss:Type="String">炼气五层</Data></Cell>
  335. <Cell><Data ss:Type="String">不限</Data></Cell>
  336. <Cell><Data ss:Type="String">仙盟-活动</Data></Cell>
  337. <Cell><Data ss:Type="String">(位于仙盟系统的活动界面内)</Data></Cell>
  338. <Cell><Data ss:Type="String">在活动期间全仙盟修士共同抵御仙盟妖尊的入侵,结束后按照个人伤害和仙盟总伤害排名发放奖励,伤害越高奖励越丰厚,使用鼓舞可以大幅提升伤害值。</Data></Cell>
  339. <Cell><Data ss:Type="String">guildPoints;xq1;xq2;xq3</Data></Cell>
  340. <Cell><Data ss:Type="Number">0</Data></Cell>
  341. <Cell><Data ss:Type="String">1.活动开放时间为每周五晚上的20:00-20:30,总共30分钟。\n2.同一仙盟的修士可以组队或者单人进入BOSS场景,携手仙盟成员共同抵御仙盟妖尊的进攻。\n3.活动结束后个人奖励会根据个人伤害的世界排名,通过传书发放给修士,排名越靠前奖励越丰厚。\n4.击败仙盟妖尊后,仙盟本身能获得额外丰厚资源奖励和加成。</Data></Cell>
  342. </Row>
  343. <Row ss:AutoFitHeight="0" ss:Height="27">
  344. <Cell><Data ss:Type="Number">14</Data></Cell>
  345. <Cell><Data ss:Type="String">天降红包</Data></Cell>
  346. <Cell><Data ss:Type="Number">0</Data></Cell>
  347. <Cell><Data ss:Type="Number">1</Data></Cell>
  348. <Cell><Data ss:Type="Number">0</Data></Cell>
  349. <Cell><Data ss:Type="String">12:00-13:00;20:00-21:00</Data></Cell>
  350. <Cell><Data ss:Type="String">12:00-13:00;20:00-21:00</Data></Cell>
  351. <Cell><Data ss:Type="Number">0</Data></Cell>
  352. <Cell ss:Index="15"><Data ss:Type="String">hongbao</Data></Cell>
  353. <Cell><Data ss:Type="String">炼气五层</Data></Cell>
  354. <Cell><Data ss:Type="String">不限</Data></Cell>
  355. <Cell ss:Index="20"><Data ss:Type="String">活动期间系统每过6分钟就会发放巨额的灵石红包,先抢先得,记得在线哦!</Data></Cell>
  356. <Cell><Data ss:Type="String">exp;gold;asst1</Data></Cell>
  357. <Cell><Data ss:Type="Number">0</Data></Cell>
  358. </Row>
  359. <Row ss:AutoFitHeight="0" ss:Height="27">
  360. <Cell><Data ss:Type="Number">15</Data></Cell>
  361. <Cell><Data ss:Type="String">开服7天</Data></Cell>
  362. <Cell><Data ss:Type="Number">0</Data></Cell>
  363. <Cell><Data ss:Type="Number">1</Data></Cell>
  364. <Cell><Data ss:Type="Number">1</Data></Cell>
  365. <Cell><Data ss:Type="String">all</Data></Cell>
  366. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  367. <Cell><Data ss:Type="Number">0</Data></Cell>
  368. <Cell ss:Index="13"><Data ss:Type="Number">1</Data></Cell>
  369. <Cell><Data ss:Type="Number">7</Data></Cell>
  370. <Cell><Data ss:Type="String">hongbao</Data></Cell>
  371. <Cell><Data ss:Type="String">炼气五层</Data></Cell>
  372. <Cell><Data ss:Type="String">不限</Data></Cell>
  373. <Cell ss:Index="20"><Data ss:Type="String">活动期间系统每过6分钟就会发放巨额的灵石红包,先抢先得,记得在线哦!</Data></Cell>
  374. <Cell><Data ss:Type="String">exp;gold;asst1</Data></Cell>
  375. <Cell><Data ss:Type="Number">0</Data></Cell>
  376. </Row>
  377. <Row ss:AutoFitHeight="0" ss:Height="27">
  378. <Cell><Data ss:Type="Number">16</Data></Cell>
  379. <Cell><Data ss:Type="String">中秋</Data></Cell>
  380. <Cell><Data ss:Type="Number">4</Data></Cell>
  381. <Cell><Data ss:Type="Number">1</Data></Cell>
  382. <Cell><Data ss:Type="Number">1</Data></Cell>
  383. <Cell><Data ss:Type="String">20:00-20:30</Data></Cell>
  384. <Cell><Data ss:Type="String">19:30-20:00</Data></Cell>
  385. <Cell><Data ss:Type="Number">0</Data></Cell>
  386. <Cell><Data ss:Type="String">2020-10-29 20:00:00 </Data></Cell>
  387. <Cell><Data ss:Type="String">2020-10-29 20:29:59</Data></Cell>
  388. <Cell><Data ss:Type="String">2020-10-29 20:00:00 </Data></Cell>
  389. <Cell><Data ss:Type="String">2020-10-29 20:29:59</Data></Cell>
  390. <Cell ss:Index="15"><Data ss:Type="String">haoyuejing</Data></Cell>
  391. <Cell><Data ss:Type="String">1级</Data></Cell>
  392. <Cell><Data ss:Type="String">不限</Data></Cell>
  393. <Cell><Data ss:Type="String">活动界面</Data></Cell>
  394. <Cell ss:Index="20"><Data ss:Type="String">中秋祭活动,完成任务可获得丰厚奖励和节日道具,可以用来兑换珍贵物品</Data></Cell>
  395. <Cell><Data ss:Type="String">exp;gold;asst1</Data></Cell>
  396. <Cell><Data ss:Type="Number">0</Data></Cell>
  397. <Cell><Data ss:Type="String">用来测试节日活动,暂时没有什么说明</Data></Cell>
  398. </Row>
  399. <Row ss:AutoFitHeight="0" ss:Height="27">
  400. <Cell><Data ss:Type="Number">17</Data></Cell>
  401. <Cell><Data ss:Type="String">元旦</Data></Cell>
  402. <Cell><Data ss:Type="Number">4</Data></Cell>
  403. <Cell><Data ss:Type="Number">1</Data></Cell>
  404. <Cell><Data ss:Type="Number">1</Data></Cell>
  405. <Cell><Data ss:Type="String">10:00-12:00</Data></Cell>
  406. <Cell><Data ss:Type="String">10:00-12:00</Data></Cell>
  407. <Cell><Data ss:Type="Number">0</Data></Cell>
  408. <Cell><Data ss:Type="String">2020-10-30 10:00:00 </Data></Cell>
  409. <Cell><Data ss:Type="String">2020-10-30 11:59:59</Data></Cell>
  410. <Cell><Data ss:Type="String">2020-10-30 10:00:00 </Data></Cell>
  411. <Cell><Data ss:Type="String">2020-10-30 11:59:59</Data></Cell>
  412. <Cell ss:Index="15"><Data ss:Type="String">kuafuboss</Data></Cell>
  413. <Cell><Data ss:Type="String">1级</Data></Cell>
  414. <Cell><Data ss:Type="String">不限</Data></Cell>
  415. <Cell><Data ss:Type="String">活动界面</Data></Cell>
  416. <Cell ss:Index="20"><Data ss:Type="String">元旦活动,完成任务可获得丰厚奖励和节日道具,可以用来兑换珍贵物品</Data></Cell>
  417. <Cell><Data ss:Type="String">exp;gold;asst1</Data></Cell>
  418. <Cell><Data ss:Type="Number">0</Data></Cell>
  419. <Cell><Data ss:Type="String">用来测试节日活动,暂时没有什么说明</Data></Cell>
  420. </Row>
  421. <Row ss:AutoFitHeight="0" ss:Height="40.5"/>
  422. </Table>
  423. <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"><Unsynced/> <FrozenNoSplit/> <SplitHorizontal>3</SplitHorizontal> <TopRowBottomPane>3</TopRowBottomPane> <SplitVertical>1</SplitVertical><LeftColumnRightPane>1</LeftColumnRightPane> <ActivePane>0</ActivePane>
  424. </WorksheetOptions>
  425. </Worksheet>
  426. <Worksheet ss:Name="VitBonus">
  427. <Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="8" x:FullColumns="1"
  428. x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
  429. <Row ss:AutoFitHeight="0" ss:StyleID="s1">
  430. <Cell><Data ss:Type="String">编号</Data></Cell>
  431. <Cell><Data ss:Type="String">奖励礼包名称</Data></Cell>
  432. <Cell><Data ss:Type="String">礼包代码</Data><Comment ss:Author="王扬"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:</Font></B><Font html:Size="9" html:Color="#000000">&#10;cord:num,cord:num</Font></ss:Data></Comment></Cell>
  433. <Cell><Data ss:Type="String">需要活跃度</Data></Cell>
  434. <Cell><Data ss:Type="String">邮件id</Data></Cell>
  435. </Row>
  436. <Row ss:AutoFitHeight="0" ss:StyleID="s1">
  437. <Cell><Data ss:Type="String">ID</Data></Cell>
  438. <Cell><Data ss:Type="String">ChestName</Data></Cell>
  439. <Cell><Data ss:Type="String">ChestCode</Data></Cell>
  440. <Cell><Data ss:Type="String">ReqVit</Data></Cell>
  441. <Cell><Data ss:Type="String">mailId</Data></Cell>
  442. </Row>
  443. <Row ss:AutoFitHeight="0" ss:StyleID="s1">
  444. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  445. <Cell><Data ss:Type="String">STRING</Data></Cell>
  446. <Cell><Data ss:Type="String">STRING</Data></Cell>
  447. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  448. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  449. </Row>
  450. <Row ss:AutoFitHeight="0">
  451. <Cell><Data ss:Type="Number">1</Data></Cell>
  452. <Cell><Data ss:Type="String">1级活跃度礼包</Data></Cell>
  453. <Cell><Data ss:Type="String">en1:5,asst1:5,gold1w:5</Data></Cell>
  454. <Cell><Data ss:Type="Number">30</Data></Cell>
  455. <Cell><Data ss:Type="Number">20228</Data></Cell>
  456. </Row>
  457. <Row ss:AutoFitHeight="0" ss:Height="27">
  458. <Cell><Data ss:Type="Number">2</Data></Cell>
  459. <Cell><Data ss:Type="String">2级活跃度礼包</Data></Cell>
  460. <Cell><Data ss:Type="String">en1:10,asst1:10,ptexp1:10,gold1w:10</Data></Cell>
  461. <Cell><Data ss:Type="Number">60</Data></Cell>
  462. <Cell><Data ss:Type="Number">20228</Data></Cell>
  463. </Row>
  464. <Row ss:AutoFitHeight="0" ss:Height="27">
  465. <Cell><Data ss:Type="Number">3</Data></Cell>
  466. <Cell><Data ss:Type="String">3级活跃度礼包</Data></Cell>
  467. <Cell><Data ss:Type="String">hp3:2,rvs:1,ptexp2:10,gold1w:15</Data></Cell>
  468. <Cell><Data ss:Type="Number">100</Data></Cell>
  469. <Cell><Data ss:Type="Number">20228</Data></Cell>
  470. </Row>
  471. <Row ss:AutoFitHeight="0" ss:Height="27">
  472. <Cell><Data ss:Type="Number">4</Data></Cell>
  473. <Cell><Data ss:Type="String">4级活跃度礼包</Data></Cell>
  474. <Cell><Data ss:Type="String">rbn1:3,rbd1:3,gold1w:20,cash1:50</Data></Cell>
  475. <Cell><Data ss:Type="Number">150</Data></Cell>
  476. <Cell><Data ss:Type="Number">20228</Data></Cell>
  477. </Row>
  478. <Row ss:AutoFitHeight="0" ss:Height="40.5">
  479. <Cell><Data ss:Type="Number">5</Data></Cell>
  480. <Cell><Data ss:Type="String">5级活跃度礼包</Data></Cell>
  481. <Cell><Data ss:Type="String">gold1w:30,ptexp2:20,asst2:5,cash1:100,abysskey:1</Data></Cell>
  482. <Cell><Data ss:Type="Number">200</Data></Cell>
  483. <Cell><Data ss:Type="Number">20228</Data></Cell>
  484. </Row>
  485. </Table>
  486. <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"><Unsynced/> <FrozenNoSplit/> <SplitHorizontal>3</SplitHorizontal> <TopRowBottomPane>3</TopRowBottomPane> <SplitVertical>1</SplitVertical><LeftColumnRightPane>1</LeftColumnRightPane> <ActivePane>0</ActivePane>
  487. </WorksheetOptions>
  488. </Worksheet>
  489. <Worksheet ss:Name="RecomPlay">
  490. <Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="52" x:FullColumns="1"
  491. x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
  492. <Row ss:AutoFitHeight="0" ss:Height="14.25" ss:StyleID="s1">
  493. <Cell><Data ss:Type="String">玩法ID</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;此id不可插只可往后加,否则会导致前后端数据不一致报错。</Font></ss:Data></Comment></Cell>
  494. <Cell><Data ss:Type="String">玩法名称</Data></Cell>
  495. <Cell><Data ss:Type="String">是否组队</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;只做前端显示用&#10;0:单人&#10;1:多人</Font></ss:Data></Comment></Cell>
  496. <Cell><Data ss:Type="String">产出分类</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;产出分类用于用户在界面操作时的筛选功能。&#10;0:全部&#10;1:产出装备&#10;2:产出经验&#10;3:产出金币&#10;4:产出钻石&#10;5:产出材料&#10;6:挑战类&#10;调用OutPutType的OutPut字段</Font></ss:Data></Comment></Cell>
  497. <Cell><Data ss:Type="String">是否有效</Data><Comment ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">陈绍治:</Font></B><Font html:Size="9" html:Color="#000000">&#10;&#10;0:无效,不出现在列表种,也不计算活跃度&#10;1:有效</Font></ss:Data></Comment></Cell>
  498. <Cell><Data ss:Type="String">功能类型</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;用于后端判断次数的字段,不同功能需填不同的序号,同功能可以相同,例:副本类均为1。</Font></ss:Data></Comment></Cell>
  499. <Cell><Data ss:Type="String">日常分类</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;当推荐玩法为日常环时需填写QuestData中的ShowNUMBER字段。</Font></ss:Data></Comment></Cell>
  500. <Cell><Data ss:Type="String">菜单名称</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;等于OpenLv里的FunSTRING,当功能满足开启条件时,在推荐界面显示。</Font></ss:Data></Comment></Cell>
  501. <Cell><Data ss:Type="String">快捷入口</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;同Functions脚本中的FunID。</Font></ss:Data></Comment></Cell>
  502. <Cell><Data ss:Type="String">副本ID</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;若为副本跳转需填写副本ID。</Font></ss:Data></Comment></Cell>
  503. <Cell><Data ss:Type="String">推荐进阶等级</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;这两个字段表示系统推荐进阶等级和等级。&#10;填写时注意闭区间</Font></ss:Data></Comment></Cell>
  504. <Cell><Data ss:Type="String">需要等级</Data></Cell>
  505. <Cell><Data ss:Type="String">进阶等级上限</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;这两个字段表示超过该进阶等级和等级将无法推荐。&#10;填写时注意闭区间。</Font></ss:Data></Comment></Cell>
  506. <Cell><Data ss:Type="String">等级上限</Data></Cell>
  507. <Cell><Data ss:Type="String">产出描述</Data><Comment ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">陈绍治:</Font></B><Font html:Size="9" html:Color="#000000">&#10;一段文字,支持富文本</Font></ss:Data></Comment></Cell>
  508. </Row>
  509. <Row ss:AutoFitHeight="0" ss:Height="14.25" ss:StyleID="s1">
  510. <Cell><Data ss:Type="String">PlayID</Data></Cell>
  511. <Cell><Data ss:Type="String">PlayName</Data></Cell>
  512. <Cell><Data ss:Type="String">BeParty</Data></Cell>
  513. <Cell><Data ss:Type="String">OutPut</Data></Cell>
  514. <Cell><Data ss:Type="String">IsValid</Data></Cell>
  515. <Cell><Data ss:Type="String">FunType</Data></Cell>
  516. <Cell><Data ss:Type="String">TaskCycle</Data></Cell>
  517. <Cell><Data ss:Type="String">Fun</Data></Cell>
  518. <Cell><Data ss:Type="String">FunID</Data></Cell>
  519. <Cell><Data ss:Type="String">MapID</Data></Cell>
  520. <Cell><Data ss:Type="String">UpOrder</Data></Cell>
  521. <Cell><Data ss:Type="String">Level</Data></Cell>
  522. <Cell><Data ss:Type="String">UpLimit</Data></Cell>
  523. <Cell><Data ss:Type="String">LevelLimit</Data></Cell>
  524. <Cell><Data ss:Type="String">BonusDesc</Data></Cell>
  525. </Row>
  526. <Row ss:AutoFitHeight="0" ss:Height="14.25" ss:StyleID="s1">
  527. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  528. <Cell><Data ss:Type="String">STRING</Data></Cell>
  529. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  530. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  531. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  532. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  533. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  534. <Cell><Data ss:Type="String">STRING</Data></Cell>
  535. <Cell><Data ss:Type="String">STRING</Data></Cell>
  536. <Cell><Data ss:Type="String">STRING</Data></Cell>
  537. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  538. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  539. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  540. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  541. <Cell><Data ss:Type="String">STRING</Data></Cell>
  542. </Row>
  543. <Row ss:AutoFitHeight="0">
  544. <Cell><Data ss:Type="Number">1</Data></Cell>
  545. <Cell><Data ss:Type="String">首领之家</Data></Cell>
  546. <Cell><Data ss:Type="Number">0</Data></Cell>
  547. <Cell><Data ss:Type="Number">1</Data></Cell>
  548. <Cell><Data ss:Type="Number">1</Data></Cell>
  549. <Cell><Data ss:Type="Number">5</Data></Cell>
  550. <Cell ss:Index="8"><Data ss:Type="String">BossHome</Data></Cell>
  551. <Cell><Data ss:Type="String">BossHome</Data></Cell>
  552. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  553. <Cell><Data ss:Type="Number">10</Data></Cell>
  554. <Cell><Data ss:Type="Number">120</Data></Cell>
  555. <Cell><Data ss:Type="String">高级&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  556. </Row>
  557. <Row ss:AutoFitHeight="0">
  558. <Cell><Data ss:Type="Number">2</Data></Cell>
  559. <Cell><Data ss:Type="String">VIP之家</Data></Cell>
  560. <Cell><Data ss:Type="Number">0</Data></Cell>
  561. <Cell><Data ss:Type="Number">1</Data></Cell>
  562. <Cell><Data ss:Type="Number">1</Data></Cell>
  563. <Cell><Data ss:Type="Number">6</Data></Cell>
  564. <Cell ss:Index="8"><Data ss:Type="String">BossHome</Data></Cell>
  565. <Cell><Data ss:Type="String">BossHome_VIP</Data></Cell>
  566. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  567. <Cell><Data ss:Type="Number">10</Data></Cell>
  568. <Cell><Data ss:Type="Number">120</Data></Cell>
  569. <Cell><Data ss:Type="String">高级&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  570. </Row>
  571. <Row ss:AutoFitHeight="0">
  572. <Cell><Data ss:Type="Number">3</Data></Cell>
  573. <Cell><Data ss:Type="String">深入地宫</Data></Cell>
  574. <Cell><Data ss:Type="Number">0</Data></Cell>
  575. <Cell><Data ss:Type="Number">1</Data></Cell>
  576. <Cell><Data ss:Type="Number">1</Data></Cell>
  577. <Cell><Data ss:Type="Number">2</Data></Cell>
  578. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  579. <Cell><Data ss:Type="String">Maze</Data></Cell>
  580. <Cell ss:Index="11"><Data ss:Type="Number">1</Data></Cell>
  581. <Cell><Data ss:Type="Number">70</Data></Cell>
  582. <Cell><Data ss:Type="Number">10</Data></Cell>
  583. <Cell><Data ss:Type="Number">120</Data></Cell>
  584. <Cell><Data ss:Type="String">高级&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  585. </Row>
  586. <Row ss:AutoFitHeight="0">
  587. <Cell><Data ss:Type="Number">4</Data></Cell>
  588. <Cell><Data ss:Type="String">连服夺宝</Data></Cell>
  589. <Cell><Data ss:Type="Number">0</Data></Cell>
  590. <Cell><Data ss:Type="Number">1</Data></Cell>
  591. <Cell><Data ss:Type="Number">1</Data></Cell>
  592. <Cell><Data ss:Type="Number">3</Data></Cell>
  593. <Cell ss:Index="8"><Data ss:Type="String">Servers</Data></Cell>
  594. <Cell><Data ss:Type="String">CrossServer</Data></Cell>
  595. <Cell ss:Index="11"><Data ss:Type="Number">1</Data></Cell>
  596. <Cell><Data ss:Type="Number">70</Data></Cell>
  597. <Cell><Data ss:Type="Number">10</Data></Cell>
  598. <Cell><Data ss:Type="Number">120</Data></Cell>
  599. <Cell><Data ss:Type="String">高级&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  600. </Row>
  601. <Row ss:AutoFitHeight="0">
  602. <Cell><Data ss:Type="Number">5</Data></Cell>
  603. <Cell><Data ss:Type="String">公会副本</Data></Cell>
  604. <Cell><Data ss:Type="Number">1</Data></Cell>
  605. <Cell><Data ss:Type="Number">1</Data></Cell>
  606. <Cell><Data ss:Type="Number">1</Data></Cell>
  607. <Cell><Data ss:Type="Number">4</Data></Cell>
  608. <Cell ss:Index="8"><Data ss:Type="String">Guild</Data></Cell>
  609. <Cell><Data ss:Type="String">Guild</Data></Cell>
  610. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  611. <Cell><Data ss:Type="Number">10</Data></Cell>
  612. <Cell><Data ss:Type="Number">120</Data></Cell>
  613. <Cell><Data ss:Type="String">高级&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  614. </Row>
  615. <Row ss:AutoFitHeight="0">
  616. <Cell><Data ss:Type="Number">6</Data></Cell>
  617. <Cell><Data ss:Type="String">蛮石据点(普通)</Data></Cell>
  618. <Cell><Data ss:Type="Number">0</Data></Cell>
  619. <Cell><Data ss:Type="Number">1</Data></Cell>
  620. <Cell><Data ss:Type="Number">1</Data></Cell>
  621. <Cell><Data ss:Type="Number">1</Data></Cell>
  622. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  623. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  624. <Cell><Data ss:Type="Number">21001</Data></Cell>
  625. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  626. <Cell ss:Index="14"><Data ss:Type="Number">120</Data></Cell>
  627. <Cell><Data ss:Type="String">50级&lt;font color='fff403db'&gt;紫装&lt;/font&gt;</Data></Cell>
  628. </Row>
  629. <Row ss:AutoFitHeight="0">
  630. <Cell><Data ss:Type="Number">7</Data></Cell>
  631. <Cell><Data ss:Type="String">蛮石据点(精英)</Data></Cell>
  632. <Cell><Data ss:Type="Number">0</Data></Cell>
  633. <Cell><Data ss:Type="Number">1</Data></Cell>
  634. <Cell><Data ss:Type="Number">1</Data></Cell>
  635. <Cell><Data ss:Type="Number">1</Data></Cell>
  636. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  637. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  638. <Cell><Data ss:Type="Number">22001</Data></Cell>
  639. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  640. <Cell ss:Index="14"><Data ss:Type="Number">120</Data></Cell>
  641. <Cell><Data ss:Type="String">60级&lt;font color='fff403db'&gt;紫装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  642. </Row>
  643. <Row ss:AutoFitHeight="0">
  644. <Cell><Data ss:Type="Number">8</Data></Cell>
  645. <Cell><Data ss:Type="String">熔岩洞窟(普通)</Data></Cell>
  646. <Cell><Data ss:Type="Number">0</Data></Cell>
  647. <Cell><Data ss:Type="Number">1</Data></Cell>
  648. <Cell><Data ss:Type="Number">1</Data></Cell>
  649. <Cell><Data ss:Type="Number">1</Data></Cell>
  650. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  651. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  652. <Cell><Data ss:Type="Number">21006</Data></Cell>
  653. <Cell><Data ss:Type="Number">1</Data></Cell>
  654. <Cell><Data ss:Type="Number">70</Data></Cell>
  655. <Cell><Data ss:Type="Number">1</Data></Cell>
  656. <Cell><Data ss:Type="Number">120</Data></Cell>
  657. <Cell><Data ss:Type="String">一阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  658. </Row>
  659. <Row ss:AutoFitHeight="0">
  660. <Cell><Data ss:Type="Number">9</Data></Cell>
  661. <Cell><Data ss:Type="String">蛮石据点(英雄)</Data></Cell>
  662. <Cell><Data ss:Type="Number">0</Data></Cell>
  663. <Cell><Data ss:Type="Number">1</Data></Cell>
  664. <Cell><Data ss:Type="Number">1</Data></Cell>
  665. <Cell><Data ss:Type="Number">1</Data></Cell>
  666. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  667. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  668. <Cell><Data ss:Type="Number">23001</Data></Cell>
  669. <Cell><Data ss:Type="Number">1</Data></Cell>
  670. <Cell><Data ss:Type="Number">70</Data></Cell>
  671. <Cell><Data ss:Type="Number">1</Data></Cell>
  672. <Cell><Data ss:Type="Number">120</Data></Cell>
  673. <Cell><Data ss:Type="String">一阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  674. </Row>
  675. <Row ss:AutoFitHeight="0">
  676. <Cell><Data ss:Type="Number">10</Data></Cell>
  677. <Cell><Data ss:Type="String">废弃矿坑(普通)</Data></Cell>
  678. <Cell><Data ss:Type="Number">0</Data></Cell>
  679. <Cell><Data ss:Type="Number">1</Data></Cell>
  680. <Cell><Data ss:Type="Number">1</Data></Cell>
  681. <Cell><Data ss:Type="Number">1</Data></Cell>
  682. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  683. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  684. <Cell><Data ss:Type="Number">21007</Data></Cell>
  685. <Cell><Data ss:Type="Number">2</Data></Cell>
  686. <Cell><Data ss:Type="Number">70</Data></Cell>
  687. <Cell><Data ss:Type="Number">2</Data></Cell>
  688. <Cell><Data ss:Type="Number">120</Data></Cell>
  689. <Cell><Data ss:Type="String">二阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  690. </Row>
  691. <Row ss:AutoFitHeight="0">
  692. <Cell><Data ss:Type="Number">11</Data></Cell>
  693. <Cell><Data ss:Type="String">熔岩洞窟(精英)</Data></Cell>
  694. <Cell><Data ss:Type="Number">0</Data></Cell>
  695. <Cell><Data ss:Type="Number">1</Data></Cell>
  696. <Cell><Data ss:Type="Number">1</Data></Cell>
  697. <Cell><Data ss:Type="Number">1</Data></Cell>
  698. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  699. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  700. <Cell><Data ss:Type="Number">22006</Data></Cell>
  701. <Cell><Data ss:Type="Number">2</Data></Cell>
  702. <Cell><Data ss:Type="Number">70</Data></Cell>
  703. <Cell><Data ss:Type="Number">2</Data></Cell>
  704. <Cell><Data ss:Type="Number">120</Data></Cell>
  705. <Cell><Data ss:Type="String">二阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  706. </Row>
  707. <Row ss:AutoFitHeight="0">
  708. <Cell><Data ss:Type="Number">12</Data></Cell>
  709. <Cell><Data ss:Type="String">废弃矿坑(精英)</Data></Cell>
  710. <Cell><Data ss:Type="Number">0</Data></Cell>
  711. <Cell><Data ss:Type="Number">1</Data></Cell>
  712. <Cell><Data ss:Type="Number">1</Data></Cell>
  713. <Cell><Data ss:Type="Number">1</Data></Cell>
  714. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  715. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  716. <Cell><Data ss:Type="Number">22007</Data></Cell>
  717. <Cell><Data ss:Type="Number">3</Data></Cell>
  718. <Cell><Data ss:Type="Number">70</Data></Cell>
  719. <Cell><Data ss:Type="Number">3</Data></Cell>
  720. <Cell><Data ss:Type="Number">120</Data></Cell>
  721. <Cell><Data ss:Type="String">三阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  722. </Row>
  723. <Row ss:AutoFitHeight="0">
  724. <Cell><Data ss:Type="Number">13</Data></Cell>
  725. <Cell><Data ss:Type="String">熔岩洞窟(英雄)</Data></Cell>
  726. <Cell><Data ss:Type="Number">0</Data></Cell>
  727. <Cell><Data ss:Type="Number">1</Data></Cell>
  728. <Cell><Data ss:Type="Number">1</Data></Cell>
  729. <Cell><Data ss:Type="Number">1</Data></Cell>
  730. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  731. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  732. <Cell><Data ss:Type="Number">23006</Data></Cell>
  733. <Cell><Data ss:Type="Number">3</Data></Cell>
  734. <Cell><Data ss:Type="Number">70</Data></Cell>
  735. <Cell><Data ss:Type="Number">4</Data></Cell>
  736. <Cell><Data ss:Type="Number">120</Data></Cell>
  737. <Cell><Data ss:Type="String">三到四阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  738. </Row>
  739. <Row ss:AutoFitHeight="0">
  740. <Cell><Data ss:Type="Number">14</Data></Cell>
  741. <Cell><Data ss:Type="String">废弃矿坑(英雄)</Data></Cell>
  742. <Cell><Data ss:Type="Number">0</Data></Cell>
  743. <Cell><Data ss:Type="Number">1</Data></Cell>
  744. <Cell><Data ss:Type="Number">1</Data></Cell>
  745. <Cell><Data ss:Type="Number">1</Data></Cell>
  746. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  747. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  748. <Cell><Data ss:Type="Number">23007</Data></Cell>
  749. <Cell><Data ss:Type="Number">4</Data></Cell>
  750. <Cell><Data ss:Type="Number">70</Data></Cell>
  751. <Cell><Data ss:Type="Number">10</Data></Cell>
  752. <Cell><Data ss:Type="Number">120</Data></Cell>
  753. <Cell><Data ss:Type="String">四阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  754. </Row>
  755. <Row ss:AutoFitHeight="0">
  756. <Cell><Data ss:Type="Number">15</Data></Cell>
  757. <Cell><Data ss:Type="String">海格市(普通)</Data></Cell>
  758. <Cell><Data ss:Type="Number">1</Data></Cell>
  759. <Cell><Data ss:Type="Number">1</Data></Cell>
  760. <Cell><Data ss:Type="Number">1</Data></Cell>
  761. <Cell><Data ss:Type="Number">1</Data></Cell>
  762. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  763. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  764. <Cell><Data ss:Type="Number">31006</Data></Cell>
  765. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  766. <Cell ss:Index="14"><Data ss:Type="Number">120</Data></Cell>
  767. <Cell><Data ss:Type="String">60级&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  768. </Row>
  769. <Row ss:AutoFitHeight="0">
  770. <Cell><Data ss:Type="Number">16</Data></Cell>
  771. <Cell><Data ss:Type="String">熔岩虫穴(普通)</Data></Cell>
  772. <Cell><Data ss:Type="Number">1</Data></Cell>
  773. <Cell><Data ss:Type="Number">1</Data></Cell>
  774. <Cell><Data ss:Type="Number">1</Data></Cell>
  775. <Cell><Data ss:Type="Number">1</Data></Cell>
  776. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  777. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  778. <Cell><Data ss:Type="Number">31002</Data></Cell>
  779. <Cell><Data ss:Type="Number">1</Data></Cell>
  780. <Cell><Data ss:Type="Number">70</Data></Cell>
  781. <Cell><Data ss:Type="Number">1</Data></Cell>
  782. <Cell><Data ss:Type="Number">120</Data></Cell>
  783. <Cell><Data ss:Type="String">一阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  784. </Row>
  785. <Row ss:AutoFitHeight="0">
  786. <Cell><Data ss:Type="Number">17</Data></Cell>
  787. <Cell><Data ss:Type="String">血色城堡(普通)</Data></Cell>
  788. <Cell><Data ss:Type="Number">1</Data></Cell>
  789. <Cell><Data ss:Type="Number">1</Data></Cell>
  790. <Cell><Data ss:Type="Number">1</Data></Cell>
  791. <Cell><Data ss:Type="Number">1</Data></Cell>
  792. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  793. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  794. <Cell><Data ss:Type="Number">31007</Data></Cell>
  795. <Cell><Data ss:Type="Number">2</Data></Cell>
  796. <Cell><Data ss:Type="Number">70</Data></Cell>
  797. <Cell><Data ss:Type="Number">2</Data></Cell>
  798. <Cell><Data ss:Type="Number">120</Data></Cell>
  799. <Cell><Data ss:Type="String">二阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  800. </Row>
  801. <Row ss:AutoFitHeight="0">
  802. <Cell><Data ss:Type="Number">18</Data></Cell>
  803. <Cell><Data ss:Type="String">海格市(精英)</Data></Cell>
  804. <Cell><Data ss:Type="Number">1</Data></Cell>
  805. <Cell><Data ss:Type="Number">1</Data></Cell>
  806. <Cell><Data ss:Type="Number">1</Data></Cell>
  807. <Cell><Data ss:Type="Number">1</Data></Cell>
  808. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  809. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  810. <Cell><Data ss:Type="Number">32006</Data></Cell>
  811. <Cell><Data ss:Type="Number">2</Data></Cell>
  812. <Cell><Data ss:Type="Number">70</Data></Cell>
  813. <Cell><Data ss:Type="Number">2</Data></Cell>
  814. <Cell><Data ss:Type="Number">120</Data></Cell>
  815. <Cell><Data ss:Type="String">二阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  816. </Row>
  817. <Row ss:AutoFitHeight="0">
  818. <Cell><Data ss:Type="Number">19</Data></Cell>
  819. <Cell><Data ss:Type="String">熔岩虫穴(精英)</Data></Cell>
  820. <Cell><Data ss:Type="Number">1</Data></Cell>
  821. <Cell><Data ss:Type="Number">1</Data></Cell>
  822. <Cell><Data ss:Type="Number">1</Data></Cell>
  823. <Cell><Data ss:Type="Number">1</Data></Cell>
  824. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  825. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  826. <Cell><Data ss:Type="Number">32002</Data></Cell>
  827. <Cell><Data ss:Type="Number">3</Data></Cell>
  828. <Cell><Data ss:Type="Number">70</Data></Cell>
  829. <Cell><Data ss:Type="Number">3</Data></Cell>
  830. <Cell><Data ss:Type="Number">120</Data></Cell>
  831. <Cell><Data ss:Type="String">三阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  832. </Row>
  833. <Row ss:AutoFitHeight="0">
  834. <Cell><Data ss:Type="Number">20</Data></Cell>
  835. <Cell><Data ss:Type="String">血色城堡(精英)</Data></Cell>
  836. <Cell><Data ss:Type="Number">1</Data></Cell>
  837. <Cell><Data ss:Type="Number">1</Data></Cell>
  838. <Cell><Data ss:Type="Number">1</Data></Cell>
  839. <Cell><Data ss:Type="Number">1</Data></Cell>
  840. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  841. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  842. <Cell><Data ss:Type="Number">32007</Data></Cell>
  843. <Cell><Data ss:Type="Number">3</Data></Cell>
  844. <Cell><Data ss:Type="Number">70</Data></Cell>
  845. <Cell><Data ss:Type="Number">3</Data></Cell>
  846. <Cell><Data ss:Type="Number">120</Data></Cell>
  847. <Cell><Data ss:Type="String">三阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  848. </Row>
  849. <Row ss:AutoFitHeight="0">
  850. <Cell><Data ss:Type="Number">21</Data></Cell>
  851. <Cell><Data ss:Type="String">海格市(英雄)</Data></Cell>
  852. <Cell><Data ss:Type="Number">1</Data></Cell>
  853. <Cell><Data ss:Type="Number">1</Data></Cell>
  854. <Cell><Data ss:Type="Number">1</Data></Cell>
  855. <Cell><Data ss:Type="Number">1</Data></Cell>
  856. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  857. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  858. <Cell><Data ss:Type="Number">33006</Data></Cell>
  859. <Cell><Data ss:Type="Number">4</Data></Cell>
  860. <Cell><Data ss:Type="Number">70</Data></Cell>
  861. <Cell><Data ss:Type="Number">10</Data></Cell>
  862. <Cell><Data ss:Type="Number">120</Data></Cell>
  863. <Cell><Data ss:Type="String">四到五阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  864. </Row>
  865. <Row ss:AutoFitHeight="0">
  866. <Cell><Data ss:Type="Number">22</Data></Cell>
  867. <Cell><Data ss:Type="String">熔岩虫穴(英雄)</Data></Cell>
  868. <Cell><Data ss:Type="Number">1</Data></Cell>
  869. <Cell><Data ss:Type="Number">1</Data></Cell>
  870. <Cell><Data ss:Type="Number">1</Data></Cell>
  871. <Cell><Data ss:Type="Number">1</Data></Cell>
  872. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  873. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  874. <Cell><Data ss:Type="Number">33002</Data></Cell>
  875. <Cell><Data ss:Type="Number">4</Data></Cell>
  876. <Cell><Data ss:Type="Number">70</Data></Cell>
  877. <Cell><Data ss:Type="Number">10</Data></Cell>
  878. <Cell><Data ss:Type="Number">120</Data></Cell>
  879. <Cell><Data ss:Type="String">四到五阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  880. </Row>
  881. <Row ss:AutoFitHeight="0">
  882. <Cell><Data ss:Type="Number">23</Data></Cell>
  883. <Cell><Data ss:Type="String">血色城堡(英雄)</Data></Cell>
  884. <Cell><Data ss:Type="Number">1</Data></Cell>
  885. <Cell><Data ss:Type="Number">1</Data></Cell>
  886. <Cell><Data ss:Type="Number">1</Data></Cell>
  887. <Cell><Data ss:Type="Number">1</Data></Cell>
  888. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  889. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  890. <Cell><Data ss:Type="Number">33007</Data></Cell>
  891. <Cell><Data ss:Type="Number">5</Data></Cell>
  892. <Cell><Data ss:Type="Number">70</Data></Cell>
  893. <Cell><Data ss:Type="Number">10</Data></Cell>
  894. <Cell><Data ss:Type="Number">120</Data></Cell>
  895. <Cell><Data ss:Type="String">五阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;和&lt;font color='ffef880e'&gt;橙装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  896. </Row>
  897. <Row ss:AutoFitHeight="0">
  898. <Cell><Data ss:Type="Number">24</Data></Cell>
  899. <Cell><Data ss:Type="String">经验农场(普通)</Data></Cell>
  900. <Cell><Data ss:Type="Number">0</Data></Cell>
  901. <Cell><Data ss:Type="Number">2</Data></Cell>
  902. <Cell><Data ss:Type="Number">1</Data></Cell>
  903. <Cell><Data ss:Type="Number">1</Data></Cell>
  904. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  905. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  906. <Cell><Data ss:Type="Number">110001</Data></Cell>
  907. <Cell ss:Index="12"><Data ss:Type="Number">64</Data></Cell>
  908. <Cell><Data ss:Type="Number">10</Data></Cell>
  909. <Cell><Data ss:Type="Number">120</Data></Cell>
  910. <Cell><Data ss:Type="String">海量&lt;font color='ff00d600'&gt;经验&lt;/font&gt;</Data></Cell>
  911. </Row>
  912. <Row ss:AutoFitHeight="0">
  913. <Cell><Data ss:Type="Number">25</Data></Cell>
  914. <Cell><Data ss:Type="String">经验农场(精英)</Data></Cell>
  915. <Cell><Data ss:Type="Number">0</Data></Cell>
  916. <Cell><Data ss:Type="Number">2</Data></Cell>
  917. <Cell><Data ss:Type="Number">1</Data></Cell>
  918. <Cell><Data ss:Type="Number">1</Data></Cell>
  919. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  920. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  921. <Cell><Data ss:Type="Number">110002</Data></Cell>
  922. <Cell><Data ss:Type="Number">1</Data></Cell>
  923. <Cell><Data ss:Type="Number">70</Data></Cell>
  924. <Cell><Data ss:Type="Number">10</Data></Cell>
  925. <Cell><Data ss:Type="Number">120</Data></Cell>
  926. <Cell><Data ss:Type="String">海量&lt;font color='ff00d600'&gt;经验&lt;/font&gt;</Data></Cell>
  927. </Row>
  928. <Row ss:AutoFitHeight="0">
  929. <Cell><Data ss:Type="Number">26</Data></Cell>
  930. <Cell><Data ss:Type="String">经验农场(英雄)</Data></Cell>
  931. <Cell><Data ss:Type="Number">0</Data></Cell>
  932. <Cell><Data ss:Type="Number">2</Data></Cell>
  933. <Cell><Data ss:Type="Number">1</Data></Cell>
  934. <Cell><Data ss:Type="Number">1</Data></Cell>
  935. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  936. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  937. <Cell><Data ss:Type="Number">110003</Data></Cell>
  938. <Cell><Data ss:Type="Number">3</Data></Cell>
  939. <Cell><Data ss:Type="Number">70</Data></Cell>
  940. <Cell><Data ss:Type="Number">10</Data></Cell>
  941. <Cell><Data ss:Type="Number">120</Data></Cell>
  942. <Cell><Data ss:Type="String">海量&lt;font color='ff00d600'&gt;经验&lt;/font&gt;</Data></Cell>
  943. </Row>
  944. <Row ss:AutoFitHeight="0">
  945. <Cell><Data ss:Type="Number">27</Data></Cell>
  946. <Cell><Data ss:Type="String">炼魂日常</Data></Cell>
  947. <Cell><Data ss:Type="Number">0</Data></Cell>
  948. <Cell><Data ss:Type="Number">2</Data></Cell>
  949. <Cell><Data ss:Type="Number">1</Data></Cell>
  950. <Cell><Data ss:Type="Number">7</Data></Cell>
  951. <Cell><Data ss:Type="Number">2</Data></Cell>
  952. <Cell><Data ss:Type="String">Daily</Data></Cell>
  953. <Cell><Data ss:Type="String">DailyTask</Data></Cell>
  954. <Cell ss:Index="11"><Data ss:Type="Number">1</Data></Cell>
  955. <Cell><Data ss:Type="Number">70</Data></Cell>
  956. <Cell><Data ss:Type="Number">10</Data></Cell>
  957. <Cell><Data ss:Type="Number">120</Data></Cell>
  958. <Cell><Data ss:Type="String">大量&lt;font color='ff00d600'&gt;经验&lt;/font&gt;</Data></Cell>
  959. </Row>
  960. <Row ss:AutoFitHeight="0">
  961. <Cell><Data ss:Type="Number">28</Data></Cell>
  962. <Cell><Data ss:Type="String">钓鱼日常</Data></Cell>
  963. <Cell><Data ss:Type="Number">0</Data></Cell>
  964. <Cell><Data ss:Type="Number">3</Data></Cell>
  965. <Cell><Data ss:Type="Number">1</Data></Cell>
  966. <Cell><Data ss:Type="Number">8</Data></Cell>
  967. <Cell><Data ss:Type="Number">3</Data></Cell>
  968. <Cell><Data ss:Type="String">Daily</Data></Cell>
  969. <Cell><Data ss:Type="String">DailyTask</Data></Cell>
  970. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  971. <Cell><Data ss:Type="Number">10</Data></Cell>
  972. <Cell><Data ss:Type="Number">120</Data></Cell>
  973. <Cell><Data ss:Type="String">大量&lt;font color='ffffba00'&gt;金币&lt;/font&gt;</Data></Cell>
  974. </Row>
  975. <Row ss:AutoFitHeight="0">
  976. <Cell><Data ss:Type="Number">29</Data></Cell>
  977. <Cell><Data ss:Type="String">钻石商城-常用</Data></Cell>
  978. <Cell><Data ss:Type="Number">0</Data></Cell>
  979. <Cell><Data ss:Type="Number">3</Data></Cell>
  980. <Cell><Data ss:Type="Number">1</Data></Cell>
  981. <Cell><Data ss:Type="Number">16</Data></Cell>
  982. <Cell ss:Index="8"><Data ss:Type="String">Mall</Data></Cell>
  983. <Cell><Data ss:Type="String">DiamondShop_103</Data></Cell>
  984. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  985. <Cell><Data ss:Type="Number">10</Data></Cell>
  986. <Cell><Data ss:Type="Number">120</Data></Cell>
  987. <Cell><Data ss:Type="String">消耗&lt;font color='ff68efff'&gt;钻石&lt;/font&gt;兑换&lt;font color='ffffba00'&gt;金币&lt;/font&gt;</Data></Cell>
  988. </Row>
  989. <Row ss:AutoFitHeight="0">
  990. <Cell><Data ss:Type="Number">30</Data></Cell>
  991. <Cell><Data ss:Type="String">寄卖行</Data></Cell>
  992. <Cell><Data ss:Type="Number">0</Data></Cell>
  993. <Cell><Data ss:Type="Number">4</Data></Cell>
  994. <Cell><Data ss:Type="Number">1</Data></Cell>
  995. <Cell><Data ss:Type="Number">9</Data></Cell>
  996. <Cell ss:Index="8"><Data ss:Type="String">Consignment</Data></Cell>
  997. <Cell><Data ss:Type="String">Consignment</Data></Cell>
  998. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  999. <Cell><Data ss:Type="Number">10</Data></Cell>
  1000. <Cell><Data ss:Type="Number">120</Data></Cell>
  1001. <Cell><Data ss:Type="String">勇士间交易装备和材料</Data></Cell>
  1002. </Row>
  1003. <Row ss:AutoFitHeight="0">
  1004. <Cell><Data ss:Type="Number">31</Data></Cell>
  1005. <Cell><Data ss:Type="String">充值</Data></Cell>
  1006. <Cell><Data ss:Type="Number">0</Data></Cell>
  1007. <Cell><Data ss:Type="Number">4</Data></Cell>
  1008. <Cell><Data ss:Type="Number">1</Data></Cell>
  1009. <Cell><Data ss:Type="Number">15</Data></Cell>
  1010. <Cell ss:Index="8"><Data ss:Type="String">Pay</Data></Cell>
  1011. <Cell><Data ss:Type="String">Pay</Data></Cell>
  1012. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  1013. <Cell><Data ss:Type="Number">10</Data></Cell>
  1014. <Cell><Data ss:Type="Number">120</Data></Cell>
  1015. <Cell><Data ss:Type="String">获得&lt;font color='ff68efff'&gt;钻石&lt;/font&gt;优惠多多</Data></Cell>
  1016. </Row>
  1017. <Row ss:AutoFitHeight="0">
  1018. <Cell><Data ss:Type="Number">32</Data></Cell>
  1019. <Cell><Data ss:Type="String">单挑王</Data></Cell>
  1020. <Cell><Data ss:Type="Number">0</Data></Cell>
  1021. <Cell><Data ss:Type="Number">5</Data></Cell>
  1022. <Cell><Data ss:Type="Number">1</Data></Cell>
  1023. <Cell><Data ss:Type="Number">13</Data></Cell>
  1024. <Cell ss:Index="8"><Data ss:Type="String">Solo</Data></Cell>
  1025. <Cell><Data ss:Type="String">NpcSolo1</Data></Cell>
  1026. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  1027. <Cell><Data ss:Type="Number">10</Data></Cell>
  1028. <Cell><Data ss:Type="Number">120</Data></Cell>
  1029. <Cell><Data ss:Type="String">&lt;font color='fff43a1c'&gt;对战其他玩家&lt;/font&gt;</Data></Cell>
  1030. </Row>
  1031. <Row ss:AutoFitHeight="0">
  1032. <Cell><Data ss:Type="Number">33</Data></Cell>
  1033. <Cell><Data ss:Type="String">竞技场</Data></Cell>
  1034. <Cell><Data ss:Type="Number">0</Data></Cell>
  1035. <Cell><Data ss:Type="Number">5</Data></Cell>
  1036. <Cell><Data ss:Type="Number">1</Data></Cell>
  1037. <Cell><Data ss:Type="Number">12</Data></Cell>
  1038. <Cell ss:Index="8"><Data ss:Type="String">JJC</Data></Cell>
  1039. <Cell><Data ss:Type="String">Arena</Data></Cell>
  1040. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  1041. <Cell><Data ss:Type="Number">10</Data></Cell>
  1042. <Cell><Data ss:Type="Number">120</Data></Cell>
  1043. <Cell><Data ss:Type="String">&lt;font color='fff43a1c'&gt;对战其他玩家&lt;/font&gt;</Data></Cell>
  1044. </Row>
  1045. <Row ss:AutoFitHeight="0">
  1046. <Cell><Data ss:Type="Number">34</Data></Cell>
  1047. <Cell><Data ss:Type="String">盟战</Data></Cell>
  1048. <Cell><Data ss:Type="Number">1</Data></Cell>
  1049. <Cell><Data ss:Type="Number">5</Data></Cell>
  1050. <Cell><Data ss:Type="Number">1</Data></Cell>
  1051. <Cell><Data ss:Type="Number">14</Data></Cell>
  1052. <Cell ss:Index="8"><Data ss:Type="String">Ally</Data></Cell>
  1053. <Cell><Data ss:Type="String">NpcWar1</Data></Cell>
  1054. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  1055. <Cell><Data ss:Type="Number">10</Data></Cell>
  1056. <Cell><Data ss:Type="Number">120</Data></Cell>
  1057. <Cell><Data ss:Type="String">&lt;font color='fff43a1c'&gt;结盟对抗其他盟和怪物&lt;/font&gt;</Data></Cell>
  1058. </Row>
  1059. <Row ss:AutoFitHeight="0">
  1060. <Cell><Data ss:Type="Number">35</Data></Cell>
  1061. <Cell><Data ss:Type="String">巨树之眼(普通)</Data></Cell>
  1062. <Cell><Data ss:Type="Number">0</Data></Cell>
  1063. <Cell><Data ss:Type="Number">6</Data></Cell>
  1064. <Cell><Data ss:Type="Number">1</Data></Cell>
  1065. <Cell><Data ss:Type="Number">1</Data></Cell>
  1066. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  1067. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  1068. <Cell><Data ss:Type="Number">41001</Data></Cell>
  1069. <Cell ss:Index="12"><Data ss:Type="Number">65</Data></Cell>
  1070. <Cell><Data ss:Type="Number">1</Data></Cell>
  1071. <Cell><Data ss:Type="Number">120</Data></Cell>
  1072. <Cell><Data ss:Type="String">&lt;font color='ff00d600'&gt;坐骑培养材料&lt;/font&gt;</Data></Cell>
  1073. </Row>
  1074. <Row ss:AutoFitHeight="0">
  1075. <Cell><Data ss:Type="Number">36</Data></Cell>
  1076. <Cell><Data ss:Type="String">巨树之眼(精英)</Data></Cell>
  1077. <Cell><Data ss:Type="Number">0</Data></Cell>
  1078. <Cell><Data ss:Type="Number">6</Data></Cell>
  1079. <Cell><Data ss:Type="Number">1</Data></Cell>
  1080. <Cell><Data ss:Type="Number">1</Data></Cell>
  1081. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  1082. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  1083. <Cell><Data ss:Type="Number">42001</Data></Cell>
  1084. <Cell><Data ss:Type="Number">2</Data></Cell>
  1085. <Cell><Data ss:Type="Number">70</Data></Cell>
  1086. <Cell><Data ss:Type="Number">3</Data></Cell>
  1087. <Cell><Data ss:Type="Number">120</Data></Cell>
  1088. <Cell><Data ss:Type="String">&lt;font color='ff00d600'&gt;坐骑培养材料&lt;/font&gt;</Data></Cell>
  1089. </Row>
  1090. <Row ss:AutoFitHeight="0">
  1091. <Cell><Data ss:Type="Number">37</Data></Cell>
  1092. <Cell><Data ss:Type="String">巨树之眼(英雄)</Data></Cell>
  1093. <Cell><Data ss:Type="Number">0</Data></Cell>
  1094. <Cell><Data ss:Type="Number">6</Data></Cell>
  1095. <Cell><Data ss:Type="Number">1</Data></Cell>
  1096. <Cell><Data ss:Type="Number">1</Data></Cell>
  1097. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  1098. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  1099. <Cell><Data ss:Type="Number">43001</Data></Cell>
  1100. <Cell><Data ss:Type="Number">4</Data></Cell>
  1101. <Cell><Data ss:Type="Number">70</Data></Cell>
  1102. <Cell><Data ss:Type="Number">10</Data></Cell>
  1103. <Cell><Data ss:Type="Number">120</Data></Cell>
  1104. <Cell><Data ss:Type="String">&lt;font color='ff00d600'&gt;坐骑培养材料&lt;/font&gt;</Data></Cell>
  1105. </Row>
  1106. <Row ss:AutoFitHeight="0">
  1107. <Cell><Data ss:Type="Number">38</Data></Cell>
  1108. <Cell><Data ss:Type="String">炙热之魂(普通)</Data></Cell>
  1109. <Cell><Data ss:Type="Number">0</Data></Cell>
  1110. <Cell><Data ss:Type="Number">6</Data></Cell>
  1111. <Cell><Data ss:Type="Number">1</Data></Cell>
  1112. <Cell><Data ss:Type="Number">1</Data></Cell>
  1113. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  1114. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  1115. <Cell><Data ss:Type="Number">41002</Data></Cell>
  1116. <Cell ss:Index="12"><Data ss:Type="Number">65</Data></Cell>
  1117. <Cell><Data ss:Type="Number">1</Data></Cell>
  1118. <Cell><Data ss:Type="Number">120</Data></Cell>
  1119. <Cell><Data ss:Type="String">&lt;font color='ff00d600'&gt;翅膀培养材料&lt;/font&gt;</Data></Cell>
  1120. </Row>
  1121. <Row ss:AutoFitHeight="0">
  1122. <Cell><Data ss:Type="Number">39</Data></Cell>
  1123. <Cell><Data ss:Type="String">炙热之魂(精英)</Data></Cell>
  1124. <Cell><Data ss:Type="Number">0</Data></Cell>
  1125. <Cell><Data ss:Type="Number">6</Data></Cell>
  1126. <Cell><Data ss:Type="Number">1</Data></Cell>
  1127. <Cell><Data ss:Type="Number">1</Data></Cell>
  1128. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  1129. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  1130. <Cell><Data ss:Type="Number">42002</Data></Cell>
  1131. <Cell><Data ss:Type="Number">2</Data></Cell>
  1132. <Cell><Data ss:Type="Number">70</Data></Cell>
  1133. <Cell><Data ss:Type="Number">3</Data></Cell>
  1134. <Cell><Data ss:Type="Number">120</Data></Cell>
  1135. <Cell><Data ss:Type="String">&lt;font color='ff00d600'&gt;翅膀培养材料&lt;/font&gt;</Data></Cell>
  1136. </Row>
  1137. <Row ss:AutoFitHeight="0">
  1138. <Cell><Data ss:Type="Number">40</Data></Cell>
  1139. <Cell><Data ss:Type="String">炙热之魂(英雄)</Data></Cell>
  1140. <Cell><Data ss:Type="Number">0</Data></Cell>
  1141. <Cell><Data ss:Type="Number">6</Data></Cell>
  1142. <Cell><Data ss:Type="Number">1</Data></Cell>
  1143. <Cell><Data ss:Type="Number">1</Data></Cell>
  1144. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  1145. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  1146. <Cell><Data ss:Type="Number">43002</Data></Cell>
  1147. <Cell><Data ss:Type="Number">4</Data></Cell>
  1148. <Cell><Data ss:Type="Number">70</Data></Cell>
  1149. <Cell><Data ss:Type="Number">10</Data></Cell>
  1150. <Cell><Data ss:Type="Number">120</Data></Cell>
  1151. <Cell><Data ss:Type="String">&lt;font color='ff00d600'&gt;翅膀培养材料&lt;/font&gt;</Data></Cell>
  1152. </Row>
  1153. <Row ss:AutoFitHeight="0">
  1154. <Cell><Data ss:Type="Number">41</Data></Cell>
  1155. <Cell><Data ss:Type="String">秘境日常</Data></Cell>
  1156. <Cell><Data ss:Type="Number">0</Data></Cell>
  1157. <Cell><Data ss:Type="Number">6</Data></Cell>
  1158. <Cell><Data ss:Type="Number">1</Data></Cell>
  1159. <Cell><Data ss:Type="Number">8</Data></Cell>
  1160. <Cell><Data ss:Type="Number">6</Data></Cell>
  1161. <Cell><Data ss:Type="String">Daily</Data></Cell>
  1162. <Cell><Data ss:Type="String">DailyTask</Data></Cell>
  1163. <Cell ss:Index="11"><Data ss:Type="Number">1</Data></Cell>
  1164. <Cell><Data ss:Type="Number">70</Data></Cell>
  1165. <Cell><Data ss:Type="Number">10</Data></Cell>
  1166. <Cell><Data ss:Type="Number">120</Data></Cell>
  1167. <Cell><Data ss:Type="String">&lt;font color='ff00d600'&gt;附魔图纸&lt;/font&gt;、&lt;font color='ff00d600'&gt;附魔材料&lt;/font&gt;、&lt;font color='ff00d600'&gt;宠物技能书&lt;/font&gt;</Data></Cell>
  1168. </Row>
  1169. <Row ss:AutoFitHeight="0">
  1170. <Cell><Data ss:Type="Number">42</Data></Cell>
  1171. <Cell><Data ss:Type="String">装备熔炼</Data></Cell>
  1172. <Cell><Data ss:Type="Number">0</Data></Cell>
  1173. <Cell><Data ss:Type="Number">6</Data></Cell>
  1174. <Cell><Data ss:Type="Number">1</Data></Cell>
  1175. <Cell><Data ss:Type="Number">10</Data></Cell>
  1176. <Cell ss:Index="8"><Data ss:Type="String">Smelting</Data></Cell>
  1177. <Cell><Data ss:Type="String">Bag</Data></Cell>
  1178. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  1179. <Cell><Data ss:Type="Number">10</Data></Cell>
  1180. <Cell><Data ss:Type="Number">120</Data></Cell>
  1181. <Cell><Data ss:Type="String">强化材料、精炼材料、&lt;font color='ff00d600'&gt;经验&lt;/font&gt;</Data></Cell>
  1182. </Row>
  1183. <Row ss:AutoFitHeight="0">
  1184. <Cell><Data ss:Type="Number">43</Data></Cell>
  1185. <Cell><Data ss:Type="String">公会科技</Data></Cell>
  1186. <Cell><Data ss:Type="Number">0</Data></Cell>
  1187. <Cell><Data ss:Type="Number">6</Data></Cell>
  1188. <Cell><Data ss:Type="Number">1</Data></Cell>
  1189. <Cell><Data ss:Type="Number">11</Data></Cell>
  1190. <Cell ss:Index="8"><Data ss:Type="String">Guild</Data></Cell>
  1191. <Cell><Data ss:Type="String">Guild</Data></Cell>
  1192. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  1193. <Cell><Data ss:Type="Number">10</Data></Cell>
  1194. <Cell><Data ss:Type="Number">120</Data></Cell>
  1195. <Cell><Data ss:Type="String">&lt;font color='fff403db'&gt;天赋书&lt;/font&gt;、&lt;font color='fff403db'&gt;宠物技能书&lt;/font&gt;</Data></Cell>
  1196. </Row>
  1197. <Row ss:AutoFitHeight="0">
  1198. <Cell><Data ss:Type="Number">44</Data></Cell>
  1199. <Cell><Data ss:Type="String">钻石商城-材料</Data></Cell>
  1200. <Cell><Data ss:Type="Number">0</Data></Cell>
  1201. <Cell><Data ss:Type="Number">6</Data></Cell>
  1202. <Cell><Data ss:Type="Number">1</Data></Cell>
  1203. <Cell><Data ss:Type="Number">16</Data></Cell>
  1204. <Cell ss:Index="8"><Data ss:Type="String">Mall</Data></Cell>
  1205. <Cell><Data ss:Type="String">DiamondShop_104</Data></Cell>
  1206. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  1207. <Cell><Data ss:Type="Number">10</Data></Cell>
  1208. <Cell><Data ss:Type="Number">120</Data></Cell>
  1209. <Cell><Data ss:Type="String">消耗&lt;font color='ff68efff'&gt;钻石&lt;/font&gt;兑换材料</Data></Cell>
  1210. </Row>
  1211. <Row ss:AutoFitHeight="0">
  1212. <Cell><Data ss:Type="Number">45</Data></Cell>
  1213. <Cell><Data ss:Type="String">森林矿洞(普通)</Data></Cell>
  1214. <Cell><Data ss:Type="Number">0</Data></Cell>
  1215. <Cell><Data ss:Type="Number">7</Data></Cell>
  1216. <Cell><Data ss:Type="Number">1</Data></Cell>
  1217. <Cell><Data ss:Type="Number">1</Data></Cell>
  1218. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  1219. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  1220. <Cell><Data ss:Type="Number">21003</Data></Cell>
  1221. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  1222. <Cell ss:Index="14"><Data ss:Type="Number">120</Data></Cell>
  1223. <Cell><Data ss:Type="String">宝石、60级&lt;font color='fff403db'&gt;紫装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  1224. </Row>
  1225. <Row ss:AutoFitHeight="0">
  1226. <Cell><Data ss:Type="Number">46</Data></Cell>
  1227. <Cell><Data ss:Type="String">森林矿洞(精英)</Data></Cell>
  1228. <Cell><Data ss:Type="Number">0</Data></Cell>
  1229. <Cell><Data ss:Type="Number">7</Data></Cell>
  1230. <Cell><Data ss:Type="Number">1</Data></Cell>
  1231. <Cell><Data ss:Type="Number">1</Data></Cell>
  1232. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  1233. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  1234. <Cell><Data ss:Type="Number">22003</Data></Cell>
  1235. <Cell><Data ss:Type="Number">1</Data></Cell>
  1236. <Cell><Data ss:Type="Number">70</Data></Cell>
  1237. <Cell><Data ss:Type="Number">1</Data></Cell>
  1238. <Cell><Data ss:Type="Number">120</Data></Cell>
  1239. <Cell><Data ss:Type="String">宝石、一阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  1240. </Row>
  1241. <Row ss:AutoFitHeight="0">
  1242. <Cell><Data ss:Type="Number">47</Data></Cell>
  1243. <Cell><Data ss:Type="String">森林矿洞(英雄)</Data></Cell>
  1244. <Cell><Data ss:Type="Number">0</Data></Cell>
  1245. <Cell><Data ss:Type="Number">7</Data></Cell>
  1246. <Cell><Data ss:Type="Number">1</Data></Cell>
  1247. <Cell><Data ss:Type="Number">1</Data></Cell>
  1248. <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
  1249. <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
  1250. <Cell><Data ss:Type="Number">23003</Data></Cell>
  1251. <Cell><Data ss:Type="Number">2</Data></Cell>
  1252. <Cell><Data ss:Type="Number">70</Data></Cell>
  1253. <Cell><Data ss:Type="Number">10</Data></Cell>
  1254. <Cell><Data ss:Type="Number">120</Data></Cell>
  1255. <Cell><Data ss:Type="String">宝石、二阶&lt;font color='fff403db'&gt;紫装&lt;/font&gt;、&lt;font color='ffef880e'&gt;传说徽章&lt;/font&gt;</Data></Cell>
  1256. </Row>
  1257. <Row ss:AutoFitHeight="0">
  1258. <Cell><Data ss:Type="Number">48</Data></Cell>
  1259. <Cell><Data ss:Type="String">钻石商城-宝石</Data></Cell>
  1260. <Cell><Data ss:Type="Number">0</Data></Cell>
  1261. <Cell><Data ss:Type="Number">7</Data></Cell>
  1262. <Cell><Data ss:Type="Number">1</Data></Cell>
  1263. <Cell><Data ss:Type="Number">16</Data></Cell>
  1264. <Cell ss:Index="8"><Data ss:Type="String">Mall</Data></Cell>
  1265. <Cell><Data ss:Type="String">DiamondShop_106</Data></Cell>
  1266. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  1267. <Cell><Data ss:Type="Number">10</Data></Cell>
  1268. <Cell><Data ss:Type="Number">120</Data></Cell>
  1269. <Cell><Data ss:Type="String">消耗&lt;font color='ff68efff'&gt;钻石&lt;/font&gt;兑换&lt;font color='ff00d600'&gt;宝石&lt;/font&gt;</Data></Cell>
  1270. </Row>
  1271. <Row ss:AutoFitHeight="0">
  1272. <Cell><Data ss:Type="Number">49</Data></Cell>
  1273. <Cell><Data ss:Type="String">金票商城-宝石</Data></Cell>
  1274. <Cell><Data ss:Type="Number">0</Data></Cell>
  1275. <Cell><Data ss:Type="Number">7</Data></Cell>
  1276. <Cell><Data ss:Type="Number">1</Data></Cell>
  1277. <Cell><Data ss:Type="Number">16</Data></Cell>
  1278. <Cell ss:Index="8"><Data ss:Type="String">Mall</Data></Cell>
  1279. <Cell><Data ss:Type="String">TicketShop_204</Data></Cell>
  1280. <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
  1281. <Cell><Data ss:Type="Number">10</Data></Cell>
  1282. <Cell><Data ss:Type="Number">120</Data></Cell>
  1283. <Cell><Data ss:Type="String">消耗金票兑换&lt;font color='ff00d600'&gt;宝石&lt;/font&gt;</Data></Cell>
  1284. </Row>
  1285. </Table>
  1286. <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"><Unsynced/> <FrozenNoSplit/> <SplitHorizontal>3</SplitHorizontal> <TopRowBottomPane>3</TopRowBottomPane> <SplitVertical>1</SplitVertical><LeftColumnRightPane>1</LeftColumnRightPane> <ActivePane>0</ActivePane>
  1287. </WorksheetOptions>
  1288. </Worksheet>
  1289. <Worksheet ss:Name="OutPutType">
  1290. <Table ss:ExpandedColumnCount="2" ss:ExpandedRowCount="11" x:FullColumns="1"
  1291. x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
  1292. <Row ss:AutoFitHeight="0">
  1293. <Cell><Data ss:Type="String">产出分类</Data></Cell>
  1294. <Cell><Data ss:Type="String">分类名称</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;用于显示在界面上的筛选功能</Font></ss:Data></Comment></Cell>
  1295. </Row>
  1296. <Row ss:AutoFitHeight="0">
  1297. <Cell><Data ss:Type="String">OutPutID</Data></Cell>
  1298. <Cell><Data ss:Type="String">TypeName</Data></Cell>
  1299. </Row>
  1300. <Row ss:AutoFitHeight="0">
  1301. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1302. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1303. </Row>
  1304. <Row ss:AutoFitHeight="0">
  1305. <Cell><Data ss:Type="Number">0</Data></Cell>
  1306. <Cell><Data ss:Type="String">总览</Data></Cell>
  1307. </Row>
  1308. <Row ss:AutoFitHeight="0">
  1309. <Cell><Data ss:Type="Number">1</Data></Cell>
  1310. <Cell><Data ss:Type="String">装备</Data></Cell>
  1311. </Row>
  1312. <Row ss:AutoFitHeight="0">
  1313. <Cell><Data ss:Type="Number">2</Data></Cell>
  1314. <Cell><Data ss:Type="String">经验</Data></Cell>
  1315. </Row>
  1316. <Row ss:AutoFitHeight="0">
  1317. <Cell><Data ss:Type="Number">3</Data></Cell>
  1318. <Cell><Data ss:Type="String">金币</Data></Cell>
  1319. </Row>
  1320. <Row ss:AutoFitHeight="0">
  1321. <Cell><Data ss:Type="Number">4</Data></Cell>
  1322. <Cell><Data ss:Type="String">交易</Data></Cell>
  1323. </Row>
  1324. <Row ss:AutoFitHeight="0">
  1325. <Cell><Data ss:Type="Number">5</Data></Cell>
  1326. <Cell><Data ss:Type="String">挑战</Data></Cell>
  1327. </Row>
  1328. <Row ss:AutoFitHeight="0">
  1329. <Cell><Data ss:Type="Number">6</Data></Cell>
  1330. <Cell><Data ss:Type="String">材料</Data></Cell>
  1331. </Row>
  1332. <Row ss:AutoFitHeight="0">
  1333. <Cell><Data ss:Type="Number">7</Data></Cell>
  1334. <Cell><Data ss:Type="String">宝石</Data></Cell>
  1335. </Row>
  1336. </Table>
  1337. <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"><Unsynced/> <FrozenNoSplit/> <SplitHorizontal>3</SplitHorizontal> <TopRowBottomPane>3</TopRowBottomPane> <SplitVertical>1</SplitVertical><LeftColumnRightPane>1</LeftColumnRightPane> <ActivePane>0</ActivePane>
  1338. </WorksheetOptions>
  1339. </Worksheet>
  1340. <Worksheet ss:Name="TaskCycleType">
  1341. <Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="12" x:FullColumns="1"
  1342. x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
  1343. <Row ss:AutoFitHeight="0">
  1344. <Cell><Data ss:Type="String">Task分类</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;与QuestData的TaskCycle字段对应&#10;日常任务界面左边页签分类排序顺序。</Font></ss:Data></Comment></Cell>
  1345. <Cell><Data ss:Type="String">分类名称</Data></Cell>
  1346. <Cell><Data ss:Type="String">是否有效</Data><Comment ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">陈绍治:</Font></B><Font html:Size="9" html:Color="#000000">&#10;&#10;0:无效,不出现在列表种,也不计算活跃度&#10;1:有效</Font></ss:Data></Comment></Cell>
  1347. <Cell><Data ss:Type="String">追回单价</Data></Cell>
  1348. </Row>
  1349. <Row ss:AutoFitHeight="0">
  1350. <Cell><Data ss:Type="String">TaskCycle</Data></Cell>
  1351. <Cell><Data ss:Type="String">TypeName</Data></Cell>
  1352. <Cell><Data ss:Type="String">IsValid</Data></Cell>
  1353. <Cell><Data ss:Type="String">PerPrice</Data></Cell>
  1354. </Row>
  1355. <Row ss:AutoFitHeight="0">
  1356. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1357. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1358. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1359. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1360. </Row>
  1361. <Row ss:AutoFitHeight="0">
  1362. <Cell><Data ss:Type="Number">1</Data></Cell>
  1363. <Cell><Data ss:Type="String">经验农场</Data></Cell>
  1364. <Cell><Data ss:Type="Number">1</Data></Cell>
  1365. <Cell><Data ss:Type="Number">5</Data></Cell>
  1366. </Row>
  1367. <Row ss:AutoFitHeight="0">
  1368. <Cell><Data ss:Type="Number">2</Data></Cell>
  1369. <Cell><Data ss:Type="String">炼魂任务</Data></Cell>
  1370. <Cell><Data ss:Type="Number">1</Data></Cell>
  1371. <Cell><Data ss:Type="Number">5</Data></Cell>
  1372. </Row>
  1373. <Row ss:AutoFitHeight="0">
  1374. <Cell><Data ss:Type="Number">3</Data></Cell>
  1375. <Cell><Data ss:Type="String">钓鱼大师</Data></Cell>
  1376. <Cell><Data ss:Type="Number">1</Data></Cell>
  1377. <Cell><Data ss:Type="Number">5</Data></Cell>
  1378. </Row>
  1379. <Row ss:AutoFitHeight="0">
  1380. <Cell><Data ss:Type="Number">4</Data></Cell>
  1381. <Cell><Data ss:Type="String">声望爵位</Data></Cell>
  1382. <Cell><Data ss:Type="Number">1</Data></Cell>
  1383. <Cell><Data ss:Type="Number">5</Data></Cell>
  1384. </Row>
  1385. <Row ss:AutoFitHeight="0">
  1386. <Cell><Data ss:Type="Number">5</Data></Cell>
  1387. <Cell><Data ss:Type="String">世界首领</Data></Cell>
  1388. <Cell><Data ss:Type="Number">1</Data></Cell>
  1389. <Cell><Data ss:Type="Number">5</Data></Cell>
  1390. </Row>
  1391. <Row ss:AutoFitHeight="0">
  1392. <Cell><Data ss:Type="Number">6</Data></Cell>
  1393. <Cell><Data ss:Type="String">挑战秘境</Data></Cell>
  1394. <Cell><Data ss:Type="Number">1</Data></Cell>
  1395. <Cell><Data ss:Type="Number">5</Data></Cell>
  1396. </Row>
  1397. <Row ss:AutoFitHeight="0">
  1398. <Cell><Data ss:Type="Number">7</Data></Cell>
  1399. <Cell><Data ss:Type="String">培养坐骑</Data></Cell>
  1400. <Cell><Data ss:Type="Number">1</Data></Cell>
  1401. <Cell><Data ss:Type="Number">5</Data></Cell>
  1402. </Row>
  1403. <Row ss:AutoFitHeight="0">
  1404. <Cell><Data ss:Type="Number">8</Data></Cell>
  1405. <Cell><Data ss:Type="String">培养翅膀</Data></Cell>
  1406. <Cell><Data ss:Type="Number">1</Data></Cell>
  1407. <Cell><Data ss:Type="Number">5</Data></Cell>
  1408. </Row>
  1409. <Row ss:AutoFitHeight="0">
  1410. <Cell><Data ss:Type="Number">9</Data></Cell>
  1411. <Cell><Data ss:Type="String">公会任务</Data></Cell>
  1412. <Cell><Data ss:Type="Number">1</Data></Cell>
  1413. <Cell><Data ss:Type="Number">5</Data></Cell>
  1414. </Row>
  1415. </Table>
  1416. <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"><Unsynced/> <FrozenNoSplit/> <SplitHorizontal>3</SplitHorizontal> <TopRowBottomPane>3</TopRowBottomPane> <SplitVertical>1</SplitVertical><LeftColumnRightPane>1</LeftColumnRightPane> <ActivePane>0</ActivePane>
  1417. </WorksheetOptions>
  1418. </Worksheet>
  1419. <Worksheet ss:Name="(Schedule备份)">
  1420. <Table ss:ExpandedColumnCount="24" ss:ExpandedRowCount="19" x:FullColumns="1"
  1421. x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
  1422. <Row ss:AutoFitHeight="0" ss:StyleID="s1">
  1423. <Cell><Data ss:Type="String">任务ID</Data></Cell>
  1424. <Cell><Data ss:Type="String">任务名称</Data></Cell>
  1425. <Cell><Data ss:Type="String">排序</Data></Cell>
  1426. <Cell><Data ss:Type="String">是否有效</Data><Comment ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">陈绍治:</Font></B><Font html:Size="9" html:Color="#000000">&#10;&#10;0:无效,不出现在列表种,也不计算活跃度&#10;1:有效</Font></ss:Data></Comment></Cell>
  1427. <Cell><Data ss:Type="String">活跃度次数上限</Data><Comment ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:</Font></B><Font html:Size="9" html:Color="#000000">&#10;表示该活动每日活跃次数上限&#10;0=不计算活跃</Font></ss:Data></Comment></Cell>
  1428. <Cell><Data ss:Type="String">可参与次数上限</Data><Comment ss:Author="王扬"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:</Font></B><Font html:Size="9" html:Color="#000000">&#10;标识该活动每日可参加次数上限&#10;0=无限制</Font></ss:Data></Comment></Cell>
  1429. <Cell><Data ss:Type="String">事件类型</Data><Comment ss:Author="王扬"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:服务器专用</Font></B><Font html:Size="9" html:Color="#000000">&#10;类型绑定功能</Font></ss:Data></Comment></Cell>
  1430. <Cell><Data ss:Type="String">目标</Data><Comment ss:Author="王扬"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:</Font></B><Font html:Size="9" html:Color="#000000">&#10;事件类型的子类,如果没有则默认填写0</Font></ss:Data></Comment></Cell>
  1431. <Cell><Data ss:Type="String">时间描述</Data><Comment ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9" html:Color="#000000">&#10;&#10;文本描述,只做客户端UI显示用</Font></ss:Data></Comment></Cell>
  1432. <Cell><Data ss:Type="String">开放时段</Data><Comment ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9" html:Color="#000000">&#10;&#10;活动内容开始的时间,格式为hh:mm&#10;多个时间段以分号;分割</Font></ss:Data></Comment></Cell>
  1433. <Cell><Data ss:Type="String">开放周期</Data><Comment ss:Author="王扬"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:</Font></B><Font html:Size="9" html:Color="#000000">&#10;0= 每天开放&#10;1~7 分别表示 周一至周日开放;如果活动不在开放周期内,则当日活动列表内不显示该活动&#10;&#10;多个时间段以分号;分割</Font></ss:Data></Comment></Cell>
  1434. <Cell><Data ss:Type="String">周历内展示时间</Data><Comment ss:Author="Administrator"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Face="Tahoma" html:Size="9" html:Color="#000000">&#10;</Font></B><Font html:Size="9" html:Color="#000000">活动内容开始的时间,格式为</Font><Font html:Face="Tahoma" html:Size="9" html:Color="#000000">hh:mm&#10;</Font><Font html:Size="9" html:Color="#000000">多个时间段以分号</Font><Font html:Face="Tahoma" html:Size="9" html:Color="#000000">;</Font><Font html:Size="9" html:Color="#000000">分割</Font><Font html:Face="Tahoma" html:Size="9" html:Color="#000000">&#10;</Font></ss:Data></Comment></Cell>
  1435. <Cell><Data ss:Type="String">是否在周历内展示</Data><Comment ss:Author="王扬"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:</Font></B><Font html:Size="9" html:Color="#000000">&#10;1=是&#10;0=否</Font></ss:Data></Comment></Cell>
  1436. <Cell><Data ss:Type="String">奖励活跃度</Data></Cell>
  1437. <Cell><Data ss:Type="String">副本ID</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">康麒:</Font></B><Font html:Size="9" html:Color="#000000">&#10;为副本项时填写可进入计数的所有场景id。&#10;例:若需求经验农场2次,则进入3个难度的经验农场均算完成次数。</Font></ss:Data></Comment></Cell>
  1438. <Cell><Data ss:Type="String">事件类型</Data><Comment ss:Author="王扬"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:客户端专用</Font></B><Font html:Size="9" html:Color="#000000">&#10;1=打开界面&#10;2=自动寻路&#10;3=资源副本专用&#10;4=跳转到活动自身界面专用&#10;5=跳到斩妖界面</Font></ss:Data></Comment></Cell>
  1439. <Cell><Data ss:Type="String">快捷入口</Data><Comment ss:Author="康麒"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:&#10;</Font></B><Font html:Size="9" html:Color="#000000">客户端自定义的功能编号</Font></ss:Data></Comment></Cell>
  1440. <Cell><Data ss:Type="String">任务图标</Data></Cell>
  1441. <Cell><Data ss:Type="String">任务角标</Data><Comment ss:Author="王扬"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:</Font></B><Font html:Size="9" html:Color="#000000">&#10;0=无角标&#10;1=推荐&#10;2=限时&#10;3=周常&#10;4=经验</Font></ss:Data></Comment></Cell>
  1442. <Cell><Data ss:Type="String">参与等级</Data></Cell>
  1443. <Cell><Data ss:Type="String">活动形式</Data></Cell>
  1444. <Cell><Data ss:Type="String">活动描述</Data></Cell>
  1445. <Cell><Data ss:Type="String">奖励预览</Data></Cell>
  1446. <Cell><Data ss:Type="String">跟随状态下是否可以前往</Data><Comment ss:Author="王扬"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9" html:Color="#000000">王扬:</Font></B><Font html:Size="9" html:Color="#000000">&#10;1=是&#10;0=否</Font></ss:Data></Comment></Cell>
  1447. </Row>
  1448. <Row ss:AutoFitHeight="0" ss:StyleID="s1">
  1449. <Cell><Data ss:Type="String">SchID</Data></Cell>
  1450. <Cell><Data ss:Type="String">SchName</Data></Cell>
  1451. <Cell><Data ss:Type="String">Sort</Data></Cell>
  1452. <Cell><Data ss:Type="String">IsValid</Data></Cell>
  1453. <Cell><Data ss:Type="String">MaxCount</Data></Cell>
  1454. <Cell><Data ss:Type="String">MaxAttend</Data></Cell>
  1455. <Cell><Data ss:Type="String">Type</Data></Cell>
  1456. <Cell><Data ss:Type="String">Target</Data></Cell>
  1457. <Cell><Data ss:Type="String">TimeDesc</Data></Cell>
  1458. <Cell><Data ss:Type="String">OpenPeriod</Data></Cell>
  1459. <Cell><Data ss:Type="String">Openday</Data></Cell>
  1460. <Cell><Data ss:Type="String">PeriodInCalendar</Data></Cell>
  1461. <Cell><Data ss:Type="String">IsShowInCalendar</Data></Cell>
  1462. <Cell><Data ss:Type="String">VitBonus</Data></Cell>
  1463. <Cell><Data ss:Type="String">MapID</Data></Cell>
  1464. <Cell><Data ss:Type="String">FunType</Data></Cell>
  1465. <Cell><Data ss:Type="String">FunID</Data></Cell>
  1466. <Cell><Data ss:Type="String">Icon</Data></Cell>
  1467. <Cell><Data ss:Type="String">Script</Data></Cell>
  1468. <Cell><Data ss:Type="String">LvLimit</Data></Cell>
  1469. <Cell><Data ss:Type="String">Form</Data></Cell>
  1470. <Cell><Data ss:Type="String">ActivDesc</Data></Cell>
  1471. <Cell><Data ss:Type="String">RewardPre</Data></Cell>
  1472. <Cell><Data ss:Type="String">GoForInFollowingState</Data></Cell>
  1473. </Row>
  1474. <Row ss:AutoFitHeight="0" ss:StyleID="s1">
  1475. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1476. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1477. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1478. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1479. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1480. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1481. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1482. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1483. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1484. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1485. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1486. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1487. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1488. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1489. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1490. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1491. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1492. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1493. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1494. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1495. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1496. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1497. <Cell><Data ss:Type="String">STRING</Data></Cell>
  1498. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  1499. </Row>
  1500. <Row ss:AutoFitHeight="0">
  1501. <Cell><Data ss:Type="Number">1</Data></Cell>
  1502. <Cell><Data ss:Type="String">镇妖塔</Data></Cell>
  1503. <Cell><Data ss:Type="Number">9</Data></Cell>
  1504. <Cell><Data ss:Type="Number">1</Data></Cell>
  1505. <Cell><Data ss:Type="Number">1</Data></Cell>
  1506. <Cell><Data ss:Type="Number">0</Data></Cell>
  1507. <Cell><Data ss:Type="Number">1</Data></Cell>
  1508. <Cell><Data ss:Type="Number">0</Data></Cell>
  1509. <Cell><Data ss:Type="String">全天</Data></Cell>
  1510. <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
  1511. <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
  1512. <Cell><Data ss:Type="Number">10</Data></Cell>
  1513. <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
  1514. <Cell><Data ss:Type="String">DemonTower</Data></Cell>
  1515. <Cell><Data ss:Type="String">zhenyaota</Data></Cell>
  1516. <Cell><Data ss:Type="Number">0</Data></Cell>
  1517. <Cell><Data ss:Type="Number">45</Data></Cell>
  1518. <Cell><Data ss:Type="String">单人</Data></Cell>
  1519. <Cell><Data ss:Type="String">镇妖塔挑战次数不限,通关层数越高,奖励越丰厚。</Data></Cell>
  1520. <Cell><Data ss:Type="String">gems;vmate6</Data></Cell>
  1521. <Cell><Data ss:Type="Number">1</Data></Cell>
  1522. </Row>
  1523. <Row ss:AutoFitHeight="0" ss:Height="27">
  1524. <Cell><Data ss:Type="Number">2</Data></Cell>
  1525. <Cell><Data ss:Type="String">幻境</Data></Cell>
  1526. <Cell><Data ss:Type="Number">10</Data></Cell>
  1527. <Cell><Data ss:Type="Number">1</Data></Cell>
  1528. <Cell><Data ss:Type="Number">0</Data></Cell>
  1529. <Cell><Data ss:Type="Number">0</Data></Cell>
  1530. <Cell><Data ss:Type="Number">2</Data></Cell>
  1531. <Cell><Data ss:Type="Number">0</Data></Cell>
  1532. <Cell><Data ss:Type="String">全天</Data></Cell>
  1533. <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
  1534. <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
  1535. <Cell><Data ss:Type="Number">0</Data></Cell>
  1536. <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
  1537. <Cell><Data ss:Type="String">Dreamland</Data></Cell>
  1538. <Cell><Data ss:Type="String">huanjing</Data></Cell>
  1539. <Cell><Data ss:Type="Number">4</Data></Cell>
  1540. <Cell><Data ss:Type="Number">32</Data></Cell>
  1541. <Cell><Data ss:Type="String">不限</Data></Cell>
  1542. <Cell><Data ss:Type="String">挂机刷怪可获得大量经验和银币、消灭首领还可获得极品装备。</Data></Cell>
  1543. <Cell><Data ss:Type="String">gold;exp</Data></Cell>
  1544. <Cell><Data ss:Type="Number">0</Data></Cell>
  1545. </Row>
  1546. <Row ss:AutoFitHeight="0" ss:Height="27">
  1547. <Cell><Data ss:Type="Number">3</Data></Cell>
  1548. <Cell><Data ss:Type="String">采莲</Data></Cell>
  1549. <Cell><Data ss:Type="Number">3</Data></Cell>
  1550. <Cell><Data ss:Type="Number">1</Data></Cell>
  1551. <Cell><Data ss:Type="Number">1</Data></Cell>
  1552. <Cell><Data ss:Type="Number">0</Data></Cell>
  1553. <Cell><Data ss:Type="Number">17</Data></Cell>
  1554. <Cell><Data ss:Type="Number">0</Data></Cell>
  1555. <Cell><Data ss:Type="String">全天</Data></Cell>
  1556. <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
  1557. <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
  1558. <Cell><Data ss:Type="Number">15</Data></Cell>
  1559. <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
  1560. <Cell><Data ss:Type="String">PickLotus</Data></Cell>
  1561. <Cell><Data ss:Type="String">haoyuejing</Data></Cell>
  1562. <Cell><Data ss:Type="Number">4</Data></Cell>
  1563. <Cell><Data ss:Type="Number">30</Data></Cell>
  1564. <Cell><Data ss:Type="String">单人/组队</Data></Cell>
  1565. <Cell><Data ss:Type="String">每日完成10次采莲任务可以获得大量经验、银两和强化材料,与其他玩家组队可获得40%经验加成哦~</Data></Cell>
  1566. <Cell><Data ss:Type="String">exp;gold;asst1</Data></Cell>
  1567. <Cell><Data ss:Type="Number">1</Data></Cell>
  1568. </Row>
  1569. <Row ss:AutoFitHeight="0">
  1570. <Cell><Data ss:Type="Number">4</Data></Cell>
  1571. <Cell><Data ss:Type="String">练气</Data></Cell>
  1572. <Cell><Data ss:Type="Number">2</Data></Cell>
  1573. <Cell><Data ss:Type="Number">1</Data></Cell>
  1574. <Cell><Data ss:Type="Number">3</Data></Cell>
  1575. <Cell><Data ss:Type="Number">3</Data></Cell>
  1576. <Cell><Data ss:Type="Number">4</Data></Cell>
  1577. <Cell><Data ss:Type="Number">0</Data></Cell>
  1578. <Cell><Data ss:Type="String">全天</Data></Cell>
  1579. <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
  1580. <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
  1581. <Cell><Data ss:Type="Number">20</Data></Cell>
  1582. <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
  1583. <Cell><Data ss:Type="String">teacher</Data></Cell>
  1584. <Cell><Data ss:Type="String">shimenrenwu</Data></Cell>
  1585. <Cell><Data ss:Type="Number">4</Data></Cell>
  1586. <Cell><Data ss:Type="Number">20</Data></Cell>
  1587. <Cell><Data ss:Type="String">不限</Data></Cell>
  1588. <Cell><Data ss:Type="String">每日完成20次练气任务可以获得大量经验和元宝</Data></Cell>
  1589. <Cell><Data ss:Type="String">cash;exp</Data></Cell>
  1590. <Cell><Data ss:Type="Number">0</Data></Cell>
  1591. </Row>
  1592. <Row ss:AutoFitHeight="0">
  1593. <Cell><Data ss:Type="Number">9</Data></Cell>
  1594. <Cell><Data ss:Type="String">通关遗迹</Data></Cell>
  1595. <Cell><Data ss:Type="Number">11</Data></Cell>
  1596. <Cell><Data ss:Type="Number">1</Data></Cell>
  1597. <Cell><Data ss:Type="Number">6</Data></Cell>
  1598. <Cell><Data ss:Type="Number">1</Data></Cell>
  1599. <Cell><Data ss:Type="Number">3</Data></Cell>
  1600. <Cell><Data ss:Type="Number">0</Data></Cell>
  1601. <Cell><Data ss:Type="String">全天</Data></Cell>
  1602. <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
  1603. <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
  1604. <Cell><Data ss:Type="Number">20</Data></Cell>
  1605. <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
  1606. <Cell><Data ss:Type="String">Dungeon</Data></Cell>
  1607. <Cell><Data ss:Type="String">tongguanfuben</Data></Cell>
  1608. <Cell><Data ss:Type="Number">0</Data></Cell>
  1609. <Cell><Data ss:Type="Number">40</Data></Cell>
  1610. <Cell><Data ss:Type="String">单人/组队</Data></Cell>
  1611. <Cell><Data ss:Type="String">击杀强大的怪物,夺取极品装备</Data></Cell>
  1612. <Cell><Data ss:Type="String">sequip;vmate6;yqz</Data></Cell>
  1613. <Cell><Data ss:Type="Number">1</Data></Cell>
  1614. </Row>
  1615. <Row ss:AutoFitHeight="0" ss:Height="40.5">
  1616. <Cell><Data ss:Type="Number">11</Data></Cell>
  1617. <Cell><Data ss:Type="String">护灵 (单人)</Data></Cell>
  1618. <Cell><Data ss:Type="Number">5</Data></Cell>
  1619. <Cell><Data ss:Type="Number">1</Data></Cell>
  1620. <Cell><Data ss:Type="Number">1</Data></Cell>
  1621. <Cell><Data ss:Type="Number">2</Data></Cell>
  1622. <Cell><Data ss:Type="Number">11</Data></Cell>
  1623. <Cell><Data ss:Type="Number">0</Data></Cell>
  1624. <Cell><Data ss:Type="String">全天</Data></Cell>
  1625. <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
  1626. <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
  1627. <Cell><Data ss:Type="Number">10</Data></Cell>
  1628. <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
  1629. <Cell><Data ss:Type="String">PetDungeons</Data></Cell>
  1630. <Cell><Data ss:Type="String">shenchong</Data></Cell>
  1631. <Cell><Data ss:Type="Number">1</Data></Cell>
  1632. <Cell><Data ss:Type="Number">45</Data></Cell>
  1633. <Cell><Data ss:Type="String">单人</Data></Cell>
  1634. <Cell><Data ss:Type="String">保护场景中的神宠蛋,不要让其死亡,场景中有概率出现增益道具。守护成功可获得宠物碎片和宠物升级道具,守护失败只能获得宠物升级道具。</Data></Cell>
  1635. <Cell><Data ss:Type="String">vmate7;vmate8</Data></Cell>
  1636. <Cell><Data ss:Type="Number">1</Data></Cell>
  1637. </Row>
  1638. <Row ss:AutoFitHeight="0" ss:Height="27">
  1639. <Cell><Data ss:Type="Number">12</Data></Cell>
  1640. <Cell><Data ss:Type="String">灵石秘境 (单人)</Data></Cell>
  1641. <Cell><Data ss:Type="Number">6</Data></Cell>
  1642. <Cell><Data ss:Type="Number">1</Data></Cell>
  1643. <Cell><Data ss:Type="Number">1</Data></Cell>
  1644. <Cell><Data ss:Type="Number">2</Data></Cell>
  1645. <Cell><Data ss:Type="Number">12</Data></Cell>
  1646. <Cell><Data ss:Type="Number">0</Data></Cell>
  1647. <Cell><Data ss:Type="String">全天</Data></Cell>
  1648. <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
  1649. <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
  1650. <Cell><Data ss:Type="Number">10</Data></Cell>
  1651. <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
  1652. <Cell><Data ss:Type="String">FarmDungeons</Data></Cell>
  1653. <Cell><Data ss:Type="String">zuoqimij</Data></Cell>
  1654. <Cell><Data ss:Type="Number">1</Data></Cell>
  1655. <Cell><Data ss:Type="Number">60</Data></Cell>
  1656. <Cell><Data ss:Type="String">单人</Data></Cell>
  1657. <Cell><Data ss:Type="String">在灵石秘境里可获得大量灵石,秘境中有多个BOSS在等待你的挑战。击杀怪物可获得大量灵石。</Data></Cell>
  1658. <Cell><Data ss:Type="String">mstar;mup</Data></Cell>
  1659. <Cell><Data ss:Type="Number">1</Data></Cell>
  1660. </Row>
  1661. <Row ss:AutoFitHeight="0" ss:Height="27">
  1662. <Cell><Data ss:Type="Number">13</Data></Cell>
  1663. <Cell><Data ss:Type="String">妖族入侵</Data></Cell>
  1664. <Cell><Data ss:Type="Number">7</Data></Cell>
  1665. <Cell><Data ss:Type="Number">1</Data></Cell>
  1666. <Cell><Data ss:Type="Number">0</Data></Cell>
  1667. <Cell><Data ss:Type="Number">0</Data></Cell>
  1668. <Cell><Data ss:Type="Number">13</Data></Cell>
  1669. <Cell><Data ss:Type="Number">0</Data></Cell>
  1670. <Cell><Data ss:Type="String">每天\n12:00-12:30及18:30-19:00</Data></Cell>
  1671. <Cell><Data ss:Type="String">12:00-12:30;18:30-19:00</Data></Cell>
  1672. <Cell><Data ss:Type="Number">0</Data></Cell>
  1673. <Cell><Data ss:Type="String">12:00-12:30;18:30-19:00</Data></Cell>
  1674. <Cell><Data ss:Type="Number">1</Data></Cell>
  1675. <Cell><Data ss:Type="Number">10</Data></Cell>
  1676. <Cell ss:Index="16"><Data ss:Type="Number">4</Data></Cell>
  1677. <Cell><Data ss:Type="String">Lingzhu</Data></Cell>
  1678. <Cell><Data ss:Type="String">jishaboss</Data></Cell>
  1679. <Cell><Data ss:Type="Number">2</Data></Cell>
  1680. <Cell><Data ss:Type="Number">60</Data></Cell>
  1681. <Cell><Data ss:Type="String">不限</Data></Cell>
  1682. <Cell><Data ss:Type="String">活动期间击杀入侵五岳仙盟主城的妖族BOSS,可以获得丰厚奖励和极品装备!</Data></Cell>
  1683. <Cell><Data ss:Type="String">sequip;vmate6;yqz</Data></Cell>
  1684. <Cell><Data ss:Type="Number">0</Data></Cell>
  1685. </Row>
  1686. <Row ss:AutoFitHeight="0">
  1687. <Cell><Data ss:Type="Number">14</Data></Cell>
  1688. <Cell><Data ss:Type="String">斩妖</Data></Cell>
  1689. <Cell><Data ss:Type="Number">12</Data></Cell>
  1690. <Cell><Data ss:Type="Number">1</Data></Cell>
  1691. <Cell><Data ss:Type="Number">5</Data></Cell>
  1692. <Cell><Data ss:Type="Number">0</Data></Cell>
  1693. <Cell><Data ss:Type="Number">16</Data></Cell>
  1694. <Cell><Data ss:Type="Number">0</Data></Cell>
  1695. <Cell><Data ss:Type="String">全天</Data></Cell>
  1696. <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
  1697. <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
  1698. <Cell><Data ss:Type="Number">10</Data></Cell>
  1699. <Cell ss:Index="16"><Data ss:Type="Number">5</Data></Cell>
  1700. <Cell><Data ss:Type="String">Zeus.UI.FairyGUIStrongerMain.ExorciseEvil</Data></Cell>
  1701. <Cell><Data ss:Type="String">zhanyao</Data></Cell>
  1702. <Cell><Data ss:Type="Number">0</Data></Cell>
  1703. <Cell><Data ss:Type="Number">40</Data></Cell>
  1704. <Cell><Data ss:Type="String">不限</Data></Cell>
  1705. <Cell><Data ss:Type="String">击杀或者参与击杀世界领主将获得极品装备材料奖励!</Data></Cell>
  1706. <Cell><Data ss:Type="String">sequip;vmate6;yqz</Data></Cell>
  1707. <Cell><Data ss:Type="Number">0</Data></Cell>
  1708. </Row>
  1709. <Row ss:AutoFitHeight="0" ss:Height="40.5">
  1710. <Cell><Data ss:Type="Number">15</Data></Cell>
  1711. <Cell><Data ss:Type="String">秘境夺宝</Data></Cell>
  1712. <Cell><Data ss:Type="Number">16</Data></Cell>
  1713. <Cell><Data ss:Type="Number">0</Data></Cell>
  1714. <Cell><Data ss:Type="Number">0</Data></Cell>
  1715. <Cell><Data ss:Type="Number">0</Data></Cell>
  1716. <Cell><Data ss:Type="Number">14</Data></Cell>
  1717. <Cell><Data ss:Type="Number">0</Data></Cell>
  1718. <Cell><Data ss:Type="String">每天\n11:00-11:15及18:00-18:15</Data></Cell>
  1719. <Cell><Data ss:Type="String">11:00-11:15;18:00-18:15</Data></Cell>
  1720. <Cell><Data ss:Type="Number">0</Data></Cell>
  1721. <Cell><Data ss:Type="String">11:00-11:15;18:00-18:15</Data></Cell>
  1722. <Cell><Data ss:Type="Number">0</Data></Cell>
  1723. <Cell><Data ss:Type="Number">20</Data></Cell>
  1724. <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
  1725. <Cell><Data ss:Type="String">Mysterious</Data></Cell>
  1726. <Cell><Data ss:Type="String">duobao</Data></Cell>
  1727. <Cell><Data ss:Type="Number">0</Data></Cell>
  1728. <Cell><Data ss:Type="Number">35</Data></Cell>
  1729. <Cell><Data ss:Type="String">不限</Data></Cell>
  1730. <Cell><Data ss:Type="String">采集秘境中不同品质的宝箱,开启后可获得大量珍贵宝物,秘境中默认为公会PK模式,击杀玩家不增加善恶值,多加小心!</Data></Cell>
  1731. <Cell><Data ss:Type="String">mjbx-1;mjbx-2;mjbx-3</Data></Cell>
  1732. <Cell><Data ss:Type="Number">0</Data></Cell>
  1733. </Row>
  1734. <Row ss:AutoFitHeight="0" ss:Height="40.5">
  1735. <Cell><Data ss:Type="Number">16</Data></Cell>
  1736. <Cell><Data ss:Type="String">仙盟Boss</Data></Cell>
  1737. <Cell><Data ss:Type="Number">17</Data></Cell>
  1738. <Cell><Data ss:Type="Number">0</Data></Cell>
  1739. <Cell><Data ss:Type="Number">0</Data></Cell>
  1740. <Cell><Data ss:Type="Number">0</Data></Cell>
  1741. <Cell><Data ss:Type="Number">14</Data></Cell>
  1742. <Cell><Data ss:Type="Number">0</Data></Cell>
  1743. <Cell><Data ss:Type="String">每周一到周六\n20:00-20:30</Data></Cell>
  1744. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  1745. <Cell><Data ss:Type="Number">0</Data></Cell>
  1746. <Cell><Data ss:Type="String">10:00-10:20;10:30-10:50;11:00-11:20;11:30-11:50;13:30-13:50;14:00-14:20;14:30-14:50;15:00-15:20;15:30-15:50;16:00-16:20;16:30-16:50;17:00-17:20;17:30-17:50;18:00-18:20;18:30-18:50;19:00-19:20;19:30-19:50</Data></Cell>
  1747. <Cell><Data ss:Type="Number">1</Data></Cell>
  1748. <Cell><Data ss:Type="Number">0</Data></Cell>
  1749. <Cell ss:Index="16"><Data ss:Type="Number">1</Data></Cell>
  1750. <Cell><Data ss:Type="Number">3330</Data></Cell>
  1751. <Cell><Data ss:Type="String">xianmengboss</Data></Cell>
  1752. <Cell><Data ss:Type="Number">0</Data></Cell>
  1753. <Cell><Data ss:Type="Number">40</Data></Cell>
  1754. <Cell><Data ss:Type="String">不限</Data></Cell>
  1755. <Cell><Data ss:Type="String">在活动期间全仙盟玩家共同抵御BOSS的入侵,结束后按照个人伤害和仙盟总伤害排名发放奖励,伤害越高奖励越丰厚,使用鼓舞可以大幅提升伤害值。</Data></Cell>
  1756. <Cell><Data ss:Type="String">mount09;sequip;guild</Data></Cell>
  1757. <Cell><Data ss:Type="Number">0</Data></Cell>
  1758. </Row>
  1759. <Row ss:AutoFitHeight="0" ss:Height="27">
  1760. <Cell><Data ss:Type="Number">17</Data></Cell>
  1761. <Cell><Data ss:Type="String">天降红包</Data></Cell>
  1762. <Cell><Data ss:Type="Number">19</Data></Cell>
  1763. <Cell><Data ss:Type="Number">1</Data></Cell>
  1764. <Cell><Data ss:Type="Number">10</Data></Cell>
  1765. <Cell><Data ss:Type="Number">10</Data></Cell>
  1766. <Cell><Data ss:Type="Number">15</Data></Cell>
  1767. <Cell><Data ss:Type="Number">0</Data></Cell>
  1768. <Cell><Data ss:Type="String">每天\n12:00-13:00及20:00-21:00</Data></Cell>
  1769. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  1770. <Cell><Data ss:Type="Number">0</Data></Cell>
  1771. <Cell><Data ss:Type="String">12:00-13:00;20:00-21:00</Data></Cell>
  1772. <Cell><Data ss:Type="Number">1</Data></Cell>
  1773. <Cell><Data ss:Type="Number">10</Data></Cell>
  1774. <Cell ss:Index="16"><Data ss:Type="Number">4</Data></Cell>
  1775. <Cell ss:Index="18"><Data ss:Type="String">hongbao</Data></Cell>
  1776. <Cell><Data ss:Type="Number">2</Data></Cell>
  1777. <Cell><Data ss:Type="Number">40</Data></Cell>
  1778. <Cell><Data ss:Type="String">不限</Data></Cell>
  1779. <Cell><Data ss:Type="String">活动期间系统每过6分钟就会发放巨额的银币红包,先抢先得,记得在线哦!</Data></Cell>
  1780. <Cell><Data ss:Type="String">cash;gold</Data></Cell>
  1781. <Cell><Data ss:Type="Number">0</Data></Cell>
  1782. </Row>
  1783. <Row ss:AutoFitHeight="0" ss:Height="27">
  1784. <Cell><Data ss:Type="Number">18</Data></Cell>
  1785. <Cell><Data ss:Type="String">星瀚殿</Data></Cell>
  1786. <Cell><Data ss:Type="Number">20</Data></Cell>
  1787. <Cell><Data ss:Type="Number">1</Data></Cell>
  1788. <Cell><Data ss:Type="Number">0</Data></Cell>
  1789. <Cell><Data ss:Type="Number">0</Data></Cell>
  1790. <Cell ss:Index="8"><Data ss:Type="Number">0</Data></Cell>
  1791. <Cell><Data ss:Type="String">全天</Data></Cell>
  1792. <Cell><Data ss:Type="String">10:00-20:00</Data></Cell>
  1793. <Cell><Data ss:Type="Number">0</Data></Cell>
  1794. <Cell><Data ss:Type="String">10:00-20:00</Data></Cell>
  1795. <Cell><Data ss:Type="Number">1</Data></Cell>
  1796. <Cell><Data ss:Type="Number">0</Data></Cell>
  1797. <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
  1798. <Cell><Data ss:Type="String">GoToStarDungeon</Data></Cell>
  1799. <Cell><Data ss:Type="String">xingkong</Data></Cell>
  1800. <Cell><Data ss:Type="Number">2</Data></Cell>
  1801. <Cell><Data ss:Type="Number">1</Data></Cell>
  1802. <Cell><Data ss:Type="String">不限</Data></Cell>
  1803. <Cell><Data ss:Type="String">于浩瀚星空中漂流的大能遗府,蕴藏各种奇珍异宝,仅在每周日开放,全服修士共同挑战!</Data></Cell>
  1804. <Cell><Data ss:Type="String">cash;gold</Data></Cell>
  1805. <Cell><Data ss:Type="Number">0</Data></Cell>
  1806. </Row>
  1807. <Row ss:AutoFitHeight="0" ss:Height="27">
  1808. <Cell><Data ss:Type="Number">19</Data></Cell>
  1809. <Cell><Data ss:Type="String">小世界</Data></Cell>
  1810. <Cell><Data ss:Type="Number">20</Data></Cell>
  1811. <Cell><Data ss:Type="Number">1</Data></Cell>
  1812. <Cell><Data ss:Type="Number">0</Data></Cell>
  1813. <Cell><Data ss:Type="Number">0</Data></Cell>
  1814. <Cell ss:Index="8"><Data ss:Type="Number">0</Data></Cell>
  1815. <Cell><Data ss:Type="String">全天</Data></Cell>
  1816. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  1817. <Cell><Data ss:Type="Number">0</Data></Cell>
  1818. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  1819. <Cell><Data ss:Type="Number">1</Data></Cell>
  1820. <Cell><Data ss:Type="Number">0</Data></Cell>
  1821. <Cell ss:Index="16"><Data ss:Type="Number">1</Data></Cell>
  1822. <Cell><Data ss:Type="String">GoToAbyssDungeon</Data></Cell>
  1823. <Cell><Data ss:Type="String">shilianmijing</Data></Cell>
  1824. <Cell><Data ss:Type="Number">2</Data></Cell>
  1825. <Cell><Data ss:Type="Number">1</Data></Cell>
  1826. <Cell><Data ss:Type="String">不限</Data></Cell>
  1827. <Cell><Data ss:Type="String">拥有挑战令的玩家可进入,挑战不可能完成的任务,进入下一层吧!</Data></Cell>
  1828. <Cell><Data ss:Type="String">shenqi1;shenqi2</Data></Cell>
  1829. <Cell><Data ss:Type="Number">0</Data></Cell>
  1830. </Row>
  1831. <Row ss:AutoFitHeight="0">
  1832. <Cell><Data ss:Type="Number">20</Data></Cell>
  1833. <Cell><Data ss:Type="String">除魔</Data></Cell>
  1834. <Cell><Data ss:Type="Number">21</Data></Cell>
  1835. <Cell><Data ss:Type="Number">1</Data></Cell>
  1836. <Cell><Data ss:Type="Number">0</Data></Cell>
  1837. <Cell><Data ss:Type="Number">0</Data></Cell>
  1838. <Cell ss:Index="8"><Data ss:Type="Number">0</Data></Cell>
  1839. <Cell><Data ss:Type="String">全天</Data></Cell>
  1840. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  1841. <Cell><Data ss:Type="Number">0</Data></Cell>
  1842. <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
  1843. <Cell><Data ss:Type="Number">1</Data></Cell>
  1844. <Cell><Data ss:Type="Number">0</Data></Cell>
  1845. <Cell ss:Index="16"><Data ss:Type="Number">1</Data></Cell>
  1846. <Cell><Data ss:Type="String">Chumo</Data></Cell>
  1847. <Cell><Data ss:Type="String">zhanyao</Data></Cell>
  1848. <Cell><Data ss:Type="Number">2</Data></Cell>
  1849. <Cell><Data ss:Type="Number">1</Data></Cell>
  1850. <Cell><Data ss:Type="String">不限</Data></Cell>
  1851. <Cell><Data ss:Type="String">击杀成魔玩家可获得大量修为。</Data></Cell>
  1852. <Cell><Data ss:Type="String">gold;exp</Data></Cell>
  1853. <Cell><Data ss:Type="Number">0</Data></Cell>
  1854. </Row>
  1855. <Row ss:AutoFitHeight="0">
  1856. <Cell><Data ss:Type="Number">21</Data></Cell>
  1857. <Cell><Data ss:Type="String">跨服Boss</Data></Cell>
  1858. <Cell ss:Index="4"><Data ss:Type="Number">0</Data></Cell>
  1859. <Cell><Data ss:Type="Number">0</Data></Cell>
  1860. <Cell><Data ss:Type="Number">0</Data></Cell>
  1861. <Cell ss:Index="9"><Data ss:Type="String">开放时间:每周三09:00-23:00;每周六09:00-23:00</Data></Cell>
  1862. <Cell><Data ss:Type="String">09:00-23:08</Data></Cell>
  1863. <Cell><Data ss:Type="Number">0</Data></Cell>
  1864. <Cell><Data ss:Type="String">09:00-23:08</Data></Cell>
  1865. <Cell><Data ss:Type="Number">0</Data></Cell>
  1866. <Cell><Data ss:Type="Number">0</Data></Cell>
  1867. <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
  1868. <Cell><Data ss:Type="String">GoToMapJJL</Data></Cell>
  1869. <Cell><Data ss:Type="String">kuafuboss</Data></Cell>
  1870. <Cell><Data ss:Type="Number">2</Data></Cell>
  1871. <Cell><Data ss:Type="Number">1</Data></Cell>
  1872. <Cell><Data ss:Type="String">不限</Data></Cell>
  1873. <Cell><Data ss:Type="String">跨服击杀boss</Data></Cell>
  1874. <Cell><Data ss:Type="String">cash;gold</Data></Cell>
  1875. <Cell><Data ss:Type="Number">0</Data></Cell>
  1876. </Row>
  1877. </Table>
  1878. <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"><Unsynced/> <FrozenNoSplit/> <SplitHorizontal>3</SplitHorizontal> <TopRowBottomPane>3</TopRowBottomPane> <SplitVertical>1</SplitVertical><LeftColumnRightPane>1</LeftColumnRightPane> <ActivePane>0</ActivePane>
  1879. </WorksheetOptions>
  1880. </Worksheet>
  1881. </Workbook>