123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881 |
- <?xml version="1.0"?>
- <?mso-application progid="Excel.Sheet"?>
- <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:x="urn:schemas-microsoft-com:office:excel"
- xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
- xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
- xmlns:html="http://www.w3.org/TR/REC-html40">
- <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
- <Keywords>各系统次数</Keywords>
- <Revision>3</Revision>
- <Created>2019-01-07T08:01:00Z</Created>
- <Company>微软中国</Company>
- <Version>16.00</Version>
- </DocumentProperties>
- <CustomDocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
- <KSOProductBuildVer dt:dt="string">2052-11.1.0.8612</KSOProductBuildVer>
- </CustomDocumentProperties>
- <OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
- <AllowPNG/>
- </OfficeDocumentSettings>
- <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
- <TabRatio>590</TabRatio>
- <ProtectStructure>False</ProtectStructure>
- <ProtectWindows>False</ProtectWindows>
- </ExcelWorkbook>
- <Styles>
- <Style ss:ID="Default" ss:Name="Normal">
- <Alignment ss:Vertical="Center"/>
- <Borders/>
- <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
- <Interior/>
- <NumberFormat/>
- <Protection/>
- </Style>
- <Style ss:ID="s1" ss:Name="常规 2">
- <Alignment ss:Vertical="Center"/>
- <Borders/>
- <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
- <Interior/>
- <NumberFormat/>
- <Protection/>
- </Style>
- </Styles>
- <Worksheet ss:Name="Schedule">
- <Table ss:ExpandedColumnCount="23" ss:ExpandedRowCount="21" x:FullColumns="1"
- x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
- <Row ss:AutoFitHeight="0" ss:StyleID="s1">
- <Cell><Data ss:Type="String">任务ID</Data></Cell>
- <Cell><Data ss:Type="String">任务名称</Data></Cell>
- <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"> 活动分类 开放时段,开放周期必填,节日时间只节日活动填,开服时间只开服填) 1:今日活动() 2:周日活动() 3:开服活动(开服两个时间必填) 4:节日活动(节日4个时间必填) 5:每日更多活动(只开启活动,不显示在活动预览界面内)</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">排序</Data></Cell>
- <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"> 0:无效,不出现在列表种,也不计算活跃度 1:有效</Font></ss:Data></Comment></Cell>
- <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"> 文本描述,只做客户端UI显示用</Font></ss:Data></Comment></Cell>
- <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"> 活动内容开始的时间,格式为hh:mm 多个时间段以分号;分割</Font></ss:Data></Comment></Cell>
- <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"> 0= 每天推送 1~7 分别表示 周一至周日开放;如果活动不在开放周期内,则当日活动列表内不显示该活动 多个时间段以分号;分割</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">节日展示开始时间</Data><Comment ss:Author="陆盛"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">时间格式为 ZZZZ-XX-YY AA:BB:CC</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">节日展示结束时间</Data><Comment ss:Author="陆盛"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">时间格式为 ZZZZ-XX-YY AA:BB:CC 填3016-01-01 23:59:59为永久 </Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">节日实际开始时间</Data><Comment ss:Author="陆盛"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">时间格式为 ZZZZ-XX-YY AA:BB:CC</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">节日实际结束时间</Data><Comment ss:Author="陆盛"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">时间格式为 ZZZZ-XX-YY AA:BB:CC 填3016-01-01 23:59:59为永久 </Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">开服后第几天开始</Data></Cell>
- <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点开服的区,活动结束时间都相同 没有填代表</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">任务图标</Data></Cell>
- <Cell><Data ss:Type="String">参与等级</Data></Cell>
- <Cell><Data ss:Type="String">活动形式</Data></Cell>
- <Cell><Data ss:Type="String">活动入口</Data></Cell>
- <Cell><Data ss:Type="String">入口备注</Data></Cell>
- <Cell><Data ss:Type="String">活动描述</Data></Cell>
- <Cell><Data ss:Type="String">奖励预览</Data></Cell>
- <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"> 1=是 0=否</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">玩法说明</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:StyleID="s1">
- <Cell><Data ss:Type="String">SchID</Data></Cell>
- <Cell><Data ss:Type="String">SchName</Data></Cell>
- <Cell><Data ss:Type="String">Type</Data></Cell>
- <Cell><Data ss:Type="String">Sort</Data></Cell>
- <Cell><Data ss:Type="String">IsValid</Data></Cell>
- <Cell><Data ss:Type="String">TimeDesc</Data></Cell>
- <Cell><Data ss:Type="String">OpenPeriod</Data></Cell>
- <Cell><Data ss:Type="String">Openday</Data></Cell>
- <Cell><Data ss:Type="String">OpenShowTime</Data></Cell>
- <Cell><Data ss:Type="String">CloseShowTime</Data></Cell>
- <Cell><Data ss:Type="String">OpenTime</Data></Cell>
- <Cell><Data ss:Type="String">CloseTime</Data></Cell>
- <Cell><Data ss:Type="String">OpenDateStart</Data></Cell>
- <Cell><Data ss:Type="String">OpenDateClose</Data></Cell>
- <Cell><Data ss:Type="String">Icon</Data></Cell>
- <Cell><Data ss:Type="String">_LvLimit</Data></Cell>
- <Cell><Data ss:Type="String">Form</Data></Cell>
- <Cell><Data ss:Type="String">Entrance</Data></Cell>
- <Cell><Data ss:Type="String">EntryNotes</Data></Cell>
- <Cell><Data ss:Type="String">ActivDesc</Data></Cell>
- <Cell><Data ss:Type="String">RewardPre</Data></Cell>
- <Cell><Data ss:Type="String">GoForInFollowingState</Data></Cell>
- <Cell><Data ss:Type="String">Explain</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:StyleID="s1">
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">福娃</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">20:00-20:30</Data></Cell>
- <Cell><Data ss:Type="String">20:00-20:30</Data></Cell>
- <Cell><Data ss:Type="String">1;3</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">mobai</Data></Cell>
- <Cell><Data ss:Type="String">炼气一层</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">青城山主城</Data></Cell>
- <Cell ss:Index="20"><Data ss:Type="String">活动时间内,每5分钟会在主城刷新出大量福娃,可前往寻找并跟福娃互动,获得灵玉奖励</Data></Cell>
- <Cell><Data ss:Type="String">cash</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">1.每周一、三下午20:00-20:30,会在主城内大量刷新出福娃\n2.活动时间内跟福娃互动可以获得奖励,互动次数没有限制\n3.活动时间结束后不会再刷新出来福娃,已刷新的福娃不会消失</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="81">
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">多服无名镇</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">19:50-20:40</Data></Cell>
- <Cell><Data ss:Type="String">19:50-20:40</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">zhanyao</Data></Cell>
- <Cell><Data ss:Type="String">一阶筑基</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">传送点混元灯</Data></Cell>
- <Cell><Data ss:Type="String">(传送灯位于青城山中央的小石台边)</Data></Cell>
- <Cell><Data ss:Type="String">活动时间内,可前往主城混元灯传送,参加无名镇活动,传送进入活动地图后等待开启 开启时间(可提前10分钟进入备战区) 20:00-20:10开始第一场 20:30-20:40开始第二场</Data></Cell>
- <Cell><Data ss:Type="String">kill;solopoint;skcl</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">1.击败你的敌人有几率掉落装备,掉落的装备可被任何人拾取\n2.装备掉落的几率随着时间、角色死亡数量越变越高,若被击败后掉落了装备,则该角色的掉率会一定程度降低\n3.如果你被敌人击败并掉落装备,在你的装备未被爆给其他人之前你击败了该敌人,则有更大概率爆回你自己的装备\n4.角色掉落了装备,在多服无名镇结束前,该装备的属性都是在身上的,不会随着装备被爆出而损失\n5.在爆出并获取他人装备一定时间内,强制退出或离线一段时间未在游戏结束前上线,则会有一定概率归还部分爆出其他角色获得的装备。如未在此时间段内退出,则只记一次死亡的装备掉落概率 </Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="81">
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="String">双服战</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">19:50-20:40</Data></Cell>
- <Cell><Data ss:Type="String">19:50-20:40</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">jishaboss</Data></Cell>
- <Cell><Data ss:Type="String">一阶筑基</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">传送点混元灯</Data></Cell>
- <Cell><Data ss:Type="String">(传送灯位于青城山中央的小石台边)</Data></Cell>
- <Cell><Data ss:Type="String">活动时间内,可前往主城混元灯传送,参加无名镇活动,传送进入活动地图后等待开启 开启时间(可提前10分钟进入备战区) 20:00-20:10开始第一场 20:30-20:40开始第二场</Data></Cell>
- <Cell><Data ss:Type="String">kill;solopoint;skcl</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">1.双服无名镇是大服内每两个小服随机匹配靠占点得分取胜的玩法\n2.地图内有一大两小三个机制点,大的占60%,小的各占20%。当有一方占点达到100%或时间结束时得分多的一方获胜,如时间结束两边打平,则为平局\n3.占点方式为踩在机制点范围内,如范围内没有敌方存在则开始占据,10秒后完全占据开始得分。如有敌方在机制点内则占据进度不会增加,而当敌方占领一部分进度或完全占领机制点后,区域内敌方死亡或离开,己方占领会先清理掉敌方的占据进度,再开始己方的占据进度 </Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="40.5">
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="String">星瀚殿</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">20:00-20:20</Data></Cell>
- <Cell><Data ss:Type="String">20:00-20:20</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">xingkong</Data></Cell>
- <Cell><Data ss:Type="String">一阶筑基</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">星瀚殿长老</Data></Cell>
- <Cell><Data ss:Type="String">(星瀚殿长老位于青城山右下角的台子上)</Data></Cell>
- <Cell><Data ss:Type="String">于浩瀚星空中漂流的大能遗府,蕴藏各种奇珍异宝,全服修士共同挑战! 20:00-20:20为报名时间,报名结束后开始战斗,20:20后无法进入</Data></Cell>
- <Cell><Data ss:Type="String">sequip;cash;gold</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">1.每周六开启星瀚殿团队副本,需要提前报名参加\n2.与副本NPC对话进入战斗场地,开战1分钟内可自由进出副本,1分钟后再退出视为放弃副本,无法再次进入,组队情况下默认退出队伍 </Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="40.5">
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="String">封神战</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">20:00-20:15</Data></Cell>
- <Cell><Data ss:Type="String">20:00-20:15</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">kuafuboss</Data></Cell>
- <Cell><Data ss:Type="String">一阶筑基</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">传送点混元灯</Data></Cell>
- <Cell><Data ss:Type="String">(传送灯位于青城山中央的小石台边)</Data></Cell>
- <Cell><Data ss:Type="String">活动时间内,可前往主城混元灯传送,参加封神战活动,传送进入活动地图后等待开启</Data></Cell>
- <Cell><Data ss:Type="String">cash;skcl;overview_petskill7</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">1.为缓解无量量劫,阻止诸法灭尽,文昌帝君与众多星宿帝君,前往天外魔域斩除外道天魔,护持三界和平。现今仙界职位空缺,为纠察诸天,使日月星宿如常运行\n2.天宫开辟万界盛会,邀请各界的仙盟势力,汇聚于仙界一地,斗法论道承天封神,万界中斗法论道第一仙盟,其盟主将继任文昌帝君之神位,分封神职于众人.</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="String">小世界</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">all</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">shilianmijing</Data></Cell>
- <Cell><Data ss:Type="String">1级</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell ss:Index="20"><Data ss:Type="String">拥有挑战令可进入,挑战不可能完成的任务,进入下一层吧!</Data></Cell>
- <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="String">除魔</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">all</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">zhanyao</Data></Cell>
- <Cell><Data ss:Type="String">1级</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell ss:Index="20"><Data ss:Type="String">击败成魔修士可获得大量修为。</Data></Cell>
- <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">8</Data></Cell>
- <Cell><Data ss:Type="String">通天灯</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">09:00-23:00</Data></Cell>
- <Cell><Data ss:Type="String">09:00-23:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">kuafuboss</Data></Cell>
- <Cell><Data ss:Type="String">1级</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell ss:Index="20"><Data ss:Type="String">在通天灯处前往将军陵,观星台和灵域,击败强大的妖王获得奖励</Data></Cell>
- <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">9</Data></Cell>
- <Cell><Data ss:Type="String">镇妖塔</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">all</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">zhenyaota</Data></Cell>
- <Cell><Data ss:Type="String">炼气4</Data></Cell>
- <Cell><Data ss:Type="String">单人</Data></Cell>
- <Cell><Data ss:Type="String">镇妖塔守卫</Data></Cell>
- <Cell><Data ss:Type="String">(位于青城山右上方石桥边的平台上)</Data></Cell>
- <Cell><Data ss:Type="String">前往青城山找镇妖塔守卫进入,挑战次数不限,通关层数越高,奖励越丰厚。</Data></Cell>
- <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="String">采莲</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">all</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">haoyuejing</Data></Cell>
- <Cell><Data ss:Type="String">30级</Data></Cell>
- <Cell><Data ss:Type="String">单人/组队</Data></Cell>
- <Cell ss:Index="20"><Data ss:Type="String">消耗采莲通行令可前往采莲,完成后可以获得大量经验、灵石和强化材料,与其他修士组队后更加轻松。</Data></Cell>
- <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">11</Data></Cell>
- <Cell><Data ss:Type="String">练气</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">all</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">shimenrenwu</Data></Cell>
- <Cell><Data ss:Type="String">20级</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell ss:Index="20"><Data ss:Type="String">每日完成3次练气任务可以获得大量经验和灵玉</Data></Cell>
- <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">12</Data></Cell>
- <Cell><Data ss:Type="String">斩妖</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">all</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">zhanyao</Data></Cell>
- <Cell><Data ss:Type="String">炼气4</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell ss:Index="20"><Data ss:Type="String">击败或者参与击败世界领主将获得极品装备材料奖励!</Data></Cell>
- <Cell ss:Index="22"><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="40.5">
- <Cell><Data ss:Type="Number">13</Data></Cell>
- <Cell><Data ss:Type="String">仙盟妖尊</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">20:00-20:30</Data></Cell>
- <Cell><Data ss:Type="String">20:00-20:30</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">xianmengboss</Data></Cell>
- <Cell><Data ss:Type="String">炼气五层</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">仙盟-活动</Data></Cell>
- <Cell><Data ss:Type="String">(位于仙盟系统的活动界面内)</Data></Cell>
- <Cell><Data ss:Type="String">在活动期间全仙盟修士共同抵御仙盟妖尊的入侵,结束后按照个人伤害和仙盟总伤害排名发放奖励,伤害越高奖励越丰厚,使用鼓舞可以大幅提升伤害值。</Data></Cell>
- <Cell><Data ss:Type="String">guildPoints;xq1;xq2;xq3</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">1.活动开放时间为每周五晚上的20:00-20:30,总共30分钟。\n2.同一仙盟的修士可以组队或者单人进入BOSS场景,携手仙盟成员共同抵御仙盟妖尊的进攻。\n3.活动结束后个人奖励会根据个人伤害的世界排名,通过传书发放给修士,排名越靠前奖励越丰厚。\n4.击败仙盟妖尊后,仙盟本身能获得额外丰厚资源奖励和加成。</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">14</Data></Cell>
- <Cell><Data ss:Type="String">天降红包</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">12:00-13:00;20:00-21:00</Data></Cell>
- <Cell><Data ss:Type="String">12:00-13:00;20:00-21:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">hongbao</Data></Cell>
- <Cell><Data ss:Type="String">炼气五层</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell ss:Index="20"><Data ss:Type="String">活动期间系统每过6分钟就会发放巨额的灵石红包,先抢先得,记得在线哦!</Data></Cell>
- <Cell><Data ss:Type="String">exp;gold;asst1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">15</Data></Cell>
- <Cell><Data ss:Type="String">开服7天</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">all</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="13"><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="String">hongbao</Data></Cell>
- <Cell><Data ss:Type="String">炼气五层</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell ss:Index="20"><Data ss:Type="String">活动期间系统每过6分钟就会发放巨额的灵石红包,先抢先得,记得在线哦!</Data></Cell>
- <Cell><Data ss:Type="String">exp;gold;asst1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">16</Data></Cell>
- <Cell><Data ss:Type="String">中秋</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">20:00-20:30</Data></Cell>
- <Cell><Data ss:Type="String">19:30-20:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">2020-10-29 20:00:00 </Data></Cell>
- <Cell><Data ss:Type="String">2020-10-29 20:29:59</Data></Cell>
- <Cell><Data ss:Type="String">2020-10-29 20:00:00 </Data></Cell>
- <Cell><Data ss:Type="String">2020-10-29 20:29:59</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">haoyuejing</Data></Cell>
- <Cell><Data ss:Type="String">1级</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">活动界面</Data></Cell>
- <Cell ss:Index="20"><Data ss:Type="String">中秋祭活动,完成任务可获得丰厚奖励和节日道具,可以用来兑换珍贵物品</Data></Cell>
- <Cell><Data ss:Type="String">exp;gold;asst1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">用来测试节日活动,暂时没有什么说明</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">17</Data></Cell>
- <Cell><Data ss:Type="String">元旦</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">10:00-12:00</Data></Cell>
- <Cell><Data ss:Type="String">10:00-12:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">2020-10-30 10:00:00 </Data></Cell>
- <Cell><Data ss:Type="String">2020-10-30 11:59:59</Data></Cell>
- <Cell><Data ss:Type="String">2020-10-30 10:00:00 </Data></Cell>
- <Cell><Data ss:Type="String">2020-10-30 11:59:59</Data></Cell>
- <Cell ss:Index="15"><Data ss:Type="String">kuafuboss</Data></Cell>
- <Cell><Data ss:Type="String">1级</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">活动界面</Data></Cell>
- <Cell ss:Index="20"><Data ss:Type="String">元旦活动,完成任务可获得丰厚奖励和节日道具,可以用来兑换珍贵物品</Data></Cell>
- <Cell><Data ss:Type="String">exp;gold;asst1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">用来测试节日活动,暂时没有什么说明</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="40.5"/>
- </Table>
- <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>
- </WorksheetOptions>
- </Worksheet>
- <Worksheet ss:Name="VitBonus">
- <Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="8" x:FullColumns="1"
- x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
- <Row ss:AutoFitHeight="0" ss:StyleID="s1">
- <Cell><Data ss:Type="String">编号</Data></Cell>
- <Cell><Data ss:Type="String">奖励礼包名称</Data></Cell>
- <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"> cord:num,cord:num</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">需要活跃度</Data></Cell>
- <Cell><Data ss:Type="String">邮件id</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:StyleID="s1">
- <Cell><Data ss:Type="String">ID</Data></Cell>
- <Cell><Data ss:Type="String">ChestName</Data></Cell>
- <Cell><Data ss:Type="String">ChestCode</Data></Cell>
- <Cell><Data ss:Type="String">ReqVit</Data></Cell>
- <Cell><Data ss:Type="String">mailId</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:StyleID="s1">
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">1级活跃度礼包</Data></Cell>
- <Cell><Data ss:Type="String">en1:5,asst1:5,gold1w:5</Data></Cell>
- <Cell><Data ss:Type="Number">30</Data></Cell>
- <Cell><Data ss:Type="Number">20228</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">2级活跃度礼包</Data></Cell>
- <Cell><Data ss:Type="String">en1:10,asst1:10,ptexp1:10,gold1w:10</Data></Cell>
- <Cell><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">20228</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="String">3级活跃度礼包</Data></Cell>
- <Cell><Data ss:Type="String">hp3:2,rvs:1,ptexp2:10,gold1w:15</Data></Cell>
- <Cell><Data ss:Type="Number">100</Data></Cell>
- <Cell><Data ss:Type="Number">20228</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="String">4级活跃度礼包</Data></Cell>
- <Cell><Data ss:Type="String">rbn1:3,rbd1:3,gold1w:20,cash1:50</Data></Cell>
- <Cell><Data ss:Type="Number">150</Data></Cell>
- <Cell><Data ss:Type="Number">20228</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="40.5">
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="String">5级活跃度礼包</Data></Cell>
- <Cell><Data ss:Type="String">gold1w:30,ptexp2:20,asst2:5,cash1:100,abysskey:1</Data></Cell>
- <Cell><Data ss:Type="Number">200</Data></Cell>
- <Cell><Data ss:Type="Number">20228</Data></Cell>
- </Row>
- </Table>
- <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>
- </WorksheetOptions>
- </Worksheet>
- <Worksheet ss:Name="RecomPlay">
- <Table ss:ExpandedColumnCount="15" ss:ExpandedRowCount="52" x:FullColumns="1"
- x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
- <Row ss:AutoFitHeight="0" ss:Height="14.25" ss:StyleID="s1">
- <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"> 此id不可插只可往后加,否则会导致前后端数据不一致报错。</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">玩法名称</Data></Cell>
- <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"> 只做前端显示用 0:单人 1:多人</Font></ss:Data></Comment></Cell>
- <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"> 产出分类用于用户在界面操作时的筛选功能。 0:全部 1:产出装备 2:产出经验 3:产出金币 4:产出钻石 5:产出材料 6:挑战类 调用OutPutType的OutPut字段</Font></ss:Data></Comment></Cell>
- <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"> 0:无效,不出现在列表种,也不计算活跃度 1:有效</Font></ss:Data></Comment></Cell>
- <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"> 用于后端判断次数的字段,不同功能需填不同的序号,同功能可以相同,例:副本类均为1。</Font></ss:Data></Comment></Cell>
- <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"> 当推荐玩法为日常环时需填写QuestData中的ShowNUMBER字段。</Font></ss:Data></Comment></Cell>
- <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"> 等于OpenLv里的FunSTRING,当功能满足开启条件时,在推荐界面显示。</Font></ss:Data></Comment></Cell>
- <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"> 同Functions脚本中的FunID。</Font></ss:Data></Comment></Cell>
- <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"> 若为副本跳转需填写副本ID。</Font></ss:Data></Comment></Cell>
- <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"> 这两个字段表示系统推荐进阶等级和等级。 填写时注意闭区间</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">需要等级</Data></Cell>
- <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"> 这两个字段表示超过该进阶等级和等级将无法推荐。 填写时注意闭区间。</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">等级上限</Data></Cell>
- <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"> 一段文字,支持富文本</Font></ss:Data></Comment></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="14.25" ss:StyleID="s1">
- <Cell><Data ss:Type="String">PlayID</Data></Cell>
- <Cell><Data ss:Type="String">PlayName</Data></Cell>
- <Cell><Data ss:Type="String">BeParty</Data></Cell>
- <Cell><Data ss:Type="String">OutPut</Data></Cell>
- <Cell><Data ss:Type="String">IsValid</Data></Cell>
- <Cell><Data ss:Type="String">FunType</Data></Cell>
- <Cell><Data ss:Type="String">TaskCycle</Data></Cell>
- <Cell><Data ss:Type="String">Fun</Data></Cell>
- <Cell><Data ss:Type="String">FunID</Data></Cell>
- <Cell><Data ss:Type="String">MapID</Data></Cell>
- <Cell><Data ss:Type="String">UpOrder</Data></Cell>
- <Cell><Data ss:Type="String">Level</Data></Cell>
- <Cell><Data ss:Type="String">UpLimit</Data></Cell>
- <Cell><Data ss:Type="String">LevelLimit</Data></Cell>
- <Cell><Data ss:Type="String">BonusDesc</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="14.25" ss:StyleID="s1">
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">首领之家</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">BossHome</Data></Cell>
- <Cell><Data ss:Type="String">BossHome</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">高级<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">VIP之家</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">BossHome</Data></Cell>
- <Cell><Data ss:Type="String">BossHome_VIP</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">高级<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="String">深入地宫</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">Maze</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">高级<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="String">连服夺宝</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Servers</Data></Cell>
- <Cell><Data ss:Type="String">CrossServer</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">高级<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="String">公会副本</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Guild</Data></Cell>
- <Cell><Data ss:Type="String">Guild</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">高级<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="String">蛮石据点(普通)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">21001</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell ss:Index="14"><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">50级<font color='fff403db'>紫装</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="String">蛮石据点(精英)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">22001</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell ss:Index="14"><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">60级<font color='fff403db'>紫装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">8</Data></Cell>
- <Cell><Data ss:Type="String">熔岩洞窟(普通)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">21006</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">一阶<font color='fff403db'>紫装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">9</Data></Cell>
- <Cell><Data ss:Type="String">蛮石据点(英雄)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">23001</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">一阶<font color='fff403db'>紫装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="String">废弃矿坑(普通)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">21007</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">二阶<font color='fff403db'>紫装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">11</Data></Cell>
- <Cell><Data ss:Type="String">熔岩洞窟(精英)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">22006</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">二阶<font color='fff403db'>紫装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">12</Data></Cell>
- <Cell><Data ss:Type="String">废弃矿坑(精英)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">22007</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">三阶<font color='fff403db'>紫装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">13</Data></Cell>
- <Cell><Data ss:Type="String">熔岩洞窟(英雄)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">23006</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">三到四阶<font color='fff403db'>紫装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">14</Data></Cell>
- <Cell><Data ss:Type="String">废弃矿坑(英雄)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">23007</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">四阶<font color='fff403db'>紫装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">15</Data></Cell>
- <Cell><Data ss:Type="String">海格市(普通)</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">31006</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell ss:Index="14"><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">60级<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">16</Data></Cell>
- <Cell><Data ss:Type="String">熔岩虫穴(普通)</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">31002</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">一阶<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">17</Data></Cell>
- <Cell><Data ss:Type="String">血色城堡(普通)</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">31007</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">二阶<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">18</Data></Cell>
- <Cell><Data ss:Type="String">海格市(精英)</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">32006</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">二阶<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">19</Data></Cell>
- <Cell><Data ss:Type="String">熔岩虫穴(精英)</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">32002</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">三阶<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">20</Data></Cell>
- <Cell><Data ss:Type="String">血色城堡(精英)</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">32007</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">三阶<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">21</Data></Cell>
- <Cell><Data ss:Type="String">海格市(英雄)</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">33006</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">四到五阶<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">22</Data></Cell>
- <Cell><Data ss:Type="String">熔岩虫穴(英雄)</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">33002</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">四到五阶<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">23</Data></Cell>
- <Cell><Data ss:Type="String">血色城堡(英雄)</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">33007</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">五阶<font color='fff403db'>紫装</font>和<font color='ffef880e'>橙装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">24</Data></Cell>
- <Cell><Data ss:Type="String">经验农场(普通)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">110001</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">64</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">海量<font color='ff00d600'>经验</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">25</Data></Cell>
- <Cell><Data ss:Type="String">经验农场(精英)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">110002</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">海量<font color='ff00d600'>经验</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">26</Data></Cell>
- <Cell><Data ss:Type="String">经验农场(英雄)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">110003</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">海量<font color='ff00d600'>经验</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">27</Data></Cell>
- <Cell><Data ss:Type="String">炼魂日常</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">Daily</Data></Cell>
- <Cell><Data ss:Type="String">DailyTask</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">大量<font color='ff00d600'>经验</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">28</Data></Cell>
- <Cell><Data ss:Type="String">钓鱼日常</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">8</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="String">Daily</Data></Cell>
- <Cell><Data ss:Type="String">DailyTask</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">大量<font color='ffffba00'>金币</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">29</Data></Cell>
- <Cell><Data ss:Type="String">钻石商城-常用</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">16</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Mall</Data></Cell>
- <Cell><Data ss:Type="String">DiamondShop_103</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">消耗<font color='ff68efff'>钻石</font>兑换<font color='ffffba00'>金币</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">30</Data></Cell>
- <Cell><Data ss:Type="String">寄卖行</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">9</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Consignment</Data></Cell>
- <Cell><Data ss:Type="String">Consignment</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">勇士间交易装备和材料</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">31</Data></Cell>
- <Cell><Data ss:Type="String">充值</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">15</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Pay</Data></Cell>
- <Cell><Data ss:Type="String">Pay</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">获得<font color='ff68efff'>钻石</font>优惠多多</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">32</Data></Cell>
- <Cell><Data ss:Type="String">单挑王</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">13</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Solo</Data></Cell>
- <Cell><Data ss:Type="String">NpcSolo1</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String"><font color='fff43a1c'>对战其他玩家</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">33</Data></Cell>
- <Cell><Data ss:Type="String">竞技场</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">12</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">JJC</Data></Cell>
- <Cell><Data ss:Type="String">Arena</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String"><font color='fff43a1c'>对战其他玩家</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">34</Data></Cell>
- <Cell><Data ss:Type="String">盟战</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">14</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Ally</Data></Cell>
- <Cell><Data ss:Type="String">NpcWar1</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String"><font color='fff43a1c'>结盟对抗其他盟和怪物</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">35</Data></Cell>
- <Cell><Data ss:Type="String">巨树之眼(普通)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">41001</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">65</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String"><font color='ff00d600'>坐骑培养材料</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">36</Data></Cell>
- <Cell><Data ss:Type="String">巨树之眼(精英)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">42001</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String"><font color='ff00d600'>坐骑培养材料</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">37</Data></Cell>
- <Cell><Data ss:Type="String">巨树之眼(英雄)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">43001</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String"><font color='ff00d600'>坐骑培养材料</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">38</Data></Cell>
- <Cell><Data ss:Type="String">炙热之魂(普通)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">41002</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">65</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String"><font color='ff00d600'>翅膀培养材料</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">39</Data></Cell>
- <Cell><Data ss:Type="String">炙热之魂(精英)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">42002</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String"><font color='ff00d600'>翅膀培养材料</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">40</Data></Cell>
- <Cell><Data ss:Type="String">炙热之魂(英雄)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">43002</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String"><font color='ff00d600'>翅膀培养材料</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">41</Data></Cell>
- <Cell><Data ss:Type="String">秘境日常</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">8</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="String">Daily</Data></Cell>
- <Cell><Data ss:Type="String">DailyTask</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String"><font color='ff00d600'>附魔图纸</font>、<font color='ff00d600'>附魔材料</font>、<font color='ff00d600'>宠物技能书</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">42</Data></Cell>
- <Cell><Data ss:Type="String">装备熔炼</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Smelting</Data></Cell>
- <Cell><Data ss:Type="String">Bag</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">强化材料、精炼材料、<font color='ff00d600'>经验</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">43</Data></Cell>
- <Cell><Data ss:Type="String">公会科技</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">11</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Guild</Data></Cell>
- <Cell><Data ss:Type="String">Guild</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String"><font color='fff403db'>天赋书</font>、<font color='fff403db'>宠物技能书</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">44</Data></Cell>
- <Cell><Data ss:Type="String">钻石商城-材料</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">16</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Mall</Data></Cell>
- <Cell><Data ss:Type="String">DiamondShop_104</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">消耗<font color='ff68efff'>钻石</font>兑换材料</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">45</Data></Cell>
- <Cell><Data ss:Type="String">森林矿洞(普通)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">21003</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell ss:Index="14"><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">宝石、60级<font color='fff403db'>紫装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">46</Data></Cell>
- <Cell><Data ss:Type="String">森林矿洞(精英)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">22003</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">宝石、一阶<font color='fff403db'>紫装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">47</Data></Cell>
- <Cell><Data ss:Type="String">森林矿洞(英雄)</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">FB</Data></Cell>
- <Cell><Data ss:Type="String">PointToDungeon</Data></Cell>
- <Cell><Data ss:Type="Number">23003</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">70</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">宝石、二阶<font color='fff403db'>紫装</font>、<font color='ffef880e'>传说徽章</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">48</Data></Cell>
- <Cell><Data ss:Type="String">钻石商城-宝石</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">16</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Mall</Data></Cell>
- <Cell><Data ss:Type="String">DiamondShop_106</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">消耗<font color='ff68efff'>钻石</font>兑换<font color='ff00d600'>宝石</font></Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">49</Data></Cell>
- <Cell><Data ss:Type="String">金票商城-宝石</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">16</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="String">Mall</Data></Cell>
- <Cell><Data ss:Type="String">TicketShop_204</Data></Cell>
- <Cell ss:Index="12"><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">120</Data></Cell>
- <Cell><Data ss:Type="String">消耗金票兑换<font color='ff00d600'>宝石</font></Data></Cell>
- </Row>
- </Table>
- <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>
- </WorksheetOptions>
- </Worksheet>
- <Worksheet ss:Name="OutPutType">
- <Table ss:ExpandedColumnCount="2" ss:ExpandedRowCount="11" x:FullColumns="1"
- x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="String">产出分类</Data></Cell>
- <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"> 用于显示在界面上的筛选功能</Font></ss:Data></Comment></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="String">OutPutID</Data></Cell>
- <Cell><Data ss:Type="String">TypeName</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">总览</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">装备</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">经验</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="String">金币</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="String">交易</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="String">挑战</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="String">材料</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="String">宝石</Data></Cell>
- </Row>
- </Table>
- <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>
- </WorksheetOptions>
- </Worksheet>
- <Worksheet ss:Name="TaskCycleType">
- <Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="12" x:FullColumns="1"
- x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
- <Row ss:AutoFitHeight="0">
- <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"> 与QuestData的TaskCycle字段对应 日常任务界面左边页签分类排序顺序。</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">分类名称</Data></Cell>
- <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"> 0:无效,不出现在列表种,也不计算活跃度 1:有效</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">追回单价</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="String">TaskCycle</Data></Cell>
- <Cell><Data ss:Type="String">TypeName</Data></Cell>
- <Cell><Data ss:Type="String">IsValid</Data></Cell>
- <Cell><Data ss:Type="String">PerPrice</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">经验农场</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">炼魂任务</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="String">钓鱼大师</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="String">声望爵位</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="String">世界首领</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="String">挑战秘境</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="String">培养坐骑</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">8</Data></Cell>
- <Cell><Data ss:Type="String">培养翅膀</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">9</Data></Cell>
- <Cell><Data ss:Type="String">公会任务</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- </Row>
- </Table>
- <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>
- </WorksheetOptions>
- </Worksheet>
- <Worksheet ss:Name="(Schedule备份)">
- <Table ss:ExpandedColumnCount="24" ss:ExpandedRowCount="19" x:FullColumns="1"
- x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
- <Row ss:AutoFitHeight="0" ss:StyleID="s1">
- <Cell><Data ss:Type="String">任务ID</Data></Cell>
- <Cell><Data ss:Type="String">任务名称</Data></Cell>
- <Cell><Data ss:Type="String">排序</Data></Cell>
- <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"> 0:无效,不出现在列表种,也不计算活跃度 1:有效</Font></ss:Data></Comment></Cell>
- <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"> 表示该活动每日活跃次数上限 0=不计算活跃</Font></ss:Data></Comment></Cell>
- <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"> 标识该活动每日可参加次数上限 0=无限制</Font></ss:Data></Comment></Cell>
- <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"> 类型绑定功能</Font></ss:Data></Comment></Cell>
- <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"> 事件类型的子类,如果没有则默认填写0</Font></ss:Data></Comment></Cell>
- <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"> 文本描述,只做客户端UI显示用</Font></ss:Data></Comment></Cell>
- <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"> 活动内容开始的时间,格式为hh:mm 多个时间段以分号;分割</Font></ss:Data></Comment></Cell>
- <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"> 0= 每天开放 1~7 分别表示 周一至周日开放;如果活动不在开放周期内,则当日活动列表内不显示该活动 多个时间段以分号;分割</Font></ss:Data></Comment></Cell>
- <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"> </Font></B><Font html:Size="9" html:Color="#000000">活动内容开始的时间,格式为</Font><Font html:Face="Tahoma" html:Size="9" html:Color="#000000">hh:mm </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"> </Font></ss:Data></Comment></Cell>
- <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"> 1=是 0=否</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">奖励活跃度</Data></Cell>
- <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"> 为副本项时填写可进入计数的所有场景id。 例:若需求经验农场2次,则进入3个难度的经验农场均算完成次数。</Font></ss:Data></Comment></Cell>
- <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"> 1=打开界面 2=自动寻路 3=资源副本专用 4=跳转到活动自身界面专用 5=跳到斩妖界面</Font></ss:Data></Comment></Cell>
- <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">客户端自定义的功能编号</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">任务图标</Data></Cell>
- <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"> 0=无角标 1=推荐 2=限时 3=周常 4=经验</Font></ss:Data></Comment></Cell>
- <Cell><Data ss:Type="String">参与等级</Data></Cell>
- <Cell><Data ss:Type="String">活动形式</Data></Cell>
- <Cell><Data ss:Type="String">活动描述</Data></Cell>
- <Cell><Data ss:Type="String">奖励预览</Data></Cell>
- <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"> 1=是 0=否</Font></ss:Data></Comment></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:StyleID="s1">
- <Cell><Data ss:Type="String">SchID</Data></Cell>
- <Cell><Data ss:Type="String">SchName</Data></Cell>
- <Cell><Data ss:Type="String">Sort</Data></Cell>
- <Cell><Data ss:Type="String">IsValid</Data></Cell>
- <Cell><Data ss:Type="String">MaxCount</Data></Cell>
- <Cell><Data ss:Type="String">MaxAttend</Data></Cell>
- <Cell><Data ss:Type="String">Type</Data></Cell>
- <Cell><Data ss:Type="String">Target</Data></Cell>
- <Cell><Data ss:Type="String">TimeDesc</Data></Cell>
- <Cell><Data ss:Type="String">OpenPeriod</Data></Cell>
- <Cell><Data ss:Type="String">Openday</Data></Cell>
- <Cell><Data ss:Type="String">PeriodInCalendar</Data></Cell>
- <Cell><Data ss:Type="String">IsShowInCalendar</Data></Cell>
- <Cell><Data ss:Type="String">VitBonus</Data></Cell>
- <Cell><Data ss:Type="String">MapID</Data></Cell>
- <Cell><Data ss:Type="String">FunType</Data></Cell>
- <Cell><Data ss:Type="String">FunID</Data></Cell>
- <Cell><Data ss:Type="String">Icon</Data></Cell>
- <Cell><Data ss:Type="String">Script</Data></Cell>
- <Cell><Data ss:Type="String">LvLimit</Data></Cell>
- <Cell><Data ss:Type="String">Form</Data></Cell>
- <Cell><Data ss:Type="String">ActivDesc</Data></Cell>
- <Cell><Data ss:Type="String">RewardPre</Data></Cell>
- <Cell><Data ss:Type="String">GoForInFollowingState</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:StyleID="s1">
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">STRING</Data></Cell>
- <Cell><Data ss:Type="String">NUMBER</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">镇妖塔</Data></Cell>
- <Cell><Data ss:Type="Number">9</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">全天</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">DemonTower</Data></Cell>
- <Cell><Data ss:Type="String">zhenyaota</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">45</Data></Cell>
- <Cell><Data ss:Type="String">单人</Data></Cell>
- <Cell><Data ss:Type="String">镇妖塔挑战次数不限,通关层数越高,奖励越丰厚。</Data></Cell>
- <Cell><Data ss:Type="String">gems;vmate6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">幻境</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">全天</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">Dreamland</Data></Cell>
- <Cell><Data ss:Type="String">huanjing</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">32</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">挂机刷怪可获得大量经验和银币、消灭首领还可获得极品装备。</Data></Cell>
- <Cell><Data ss:Type="String">gold;exp</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="String">采莲</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">17</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">全天</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">15</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">PickLotus</Data></Cell>
- <Cell><Data ss:Type="String">haoyuejing</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">30</Data></Cell>
- <Cell><Data ss:Type="String">单人/组队</Data></Cell>
- <Cell><Data ss:Type="String">每日完成10次采莲任务可以获得大量经验、银两和强化材料,与其他玩家组队可获得40%经验加成哦~</Data></Cell>
- <Cell><Data ss:Type="String">exp;gold;asst1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="String">练气</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">全天</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">20</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">teacher</Data></Cell>
- <Cell><Data ss:Type="String">shimenrenwu</Data></Cell>
- <Cell><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="Number">20</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">每日完成20次练气任务可以获得大量经验和元宝</Data></Cell>
- <Cell><Data ss:Type="String">cash;exp</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">9</Data></Cell>
- <Cell><Data ss:Type="String">通关遗迹</Data></Cell>
- <Cell><Data ss:Type="Number">11</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">3</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">全天</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">20</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">Dungeon</Data></Cell>
- <Cell><Data ss:Type="String">tongguanfuben</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">40</Data></Cell>
- <Cell><Data ss:Type="String">单人/组队</Data></Cell>
- <Cell><Data ss:Type="String">击杀强大的怪物,夺取极品装备</Data></Cell>
- <Cell><Data ss:Type="String">sequip;vmate6;yqz</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="40.5">
- <Cell><Data ss:Type="Number">11</Data></Cell>
- <Cell><Data ss:Type="String">护灵 (单人)</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">11</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">全天</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">PetDungeons</Data></Cell>
- <Cell><Data ss:Type="String">shenchong</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">45</Data></Cell>
- <Cell><Data ss:Type="String">单人</Data></Cell>
- <Cell><Data ss:Type="String">保护场景中的神宠蛋,不要让其死亡,场景中有概率出现增益道具。守护成功可获得宠物碎片和宠物升级道具,守护失败只能获得宠物升级道具。</Data></Cell>
- <Cell><Data ss:Type="String">vmate7;vmate8</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">12</Data></Cell>
- <Cell><Data ss:Type="String">灵石秘境 (单人)</Data></Cell>
- <Cell><Data ss:Type="Number">6</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">12</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">全天</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">FarmDungeons</Data></Cell>
- <Cell><Data ss:Type="String">zuoqimij</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="String">单人</Data></Cell>
- <Cell><Data ss:Type="String">在灵石秘境里可获得大量灵石,秘境中有多个BOSS在等待你的挑战。击杀怪物可获得大量灵石。</Data></Cell>
- <Cell><Data ss:Type="String">mstar;mup</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">13</Data></Cell>
- <Cell><Data ss:Type="String">妖族入侵</Data></Cell>
- <Cell><Data ss:Type="Number">7</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">13</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">每天\n12:00-12:30及18:30-19:00</Data></Cell>
- <Cell><Data ss:Type="String">12:00-12:30;18:30-19:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">12:00-12:30;18:30-19:00</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">4</Data></Cell>
- <Cell><Data ss:Type="String">Lingzhu</Data></Cell>
- <Cell><Data ss:Type="String">jishaboss</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">60</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">活动期间击杀入侵五岳仙盟主城的妖族BOSS,可以获得丰厚奖励和极品装备!</Data></Cell>
- <Cell><Data ss:Type="String">sequip;vmate6;yqz</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">14</Data></Cell>
- <Cell><Data ss:Type="String">斩妖</Data></Cell>
- <Cell><Data ss:Type="Number">12</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">16</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">全天</Data></Cell>
- <Cell ss:Index="11"><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="13"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">5</Data></Cell>
- <Cell><Data ss:Type="String">Zeus.UI.FairyGUIStrongerMain.ExorciseEvil</Data></Cell>
- <Cell><Data ss:Type="String">zhanyao</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">40</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">击杀或者参与击杀世界领主将获得极品装备材料奖励!</Data></Cell>
- <Cell><Data ss:Type="String">sequip;vmate6;yqz</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="40.5">
- <Cell><Data ss:Type="Number">15</Data></Cell>
- <Cell><Data ss:Type="String">秘境夺宝</Data></Cell>
- <Cell><Data ss:Type="Number">16</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">14</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">每天\n11:00-11:15及18:00-18:15</Data></Cell>
- <Cell><Data ss:Type="String">11:00-11:15;18:00-18:15</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">11:00-11:15;18:00-18:15</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">20</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">Mysterious</Data></Cell>
- <Cell><Data ss:Type="String">duobao</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">35</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">采集秘境中不同品质的宝箱,开启后可获得大量珍贵宝物,秘境中默认为公会PK模式,击杀玩家不增加善恶值,多加小心!</Data></Cell>
- <Cell><Data ss:Type="String">mjbx-1;mjbx-2;mjbx-3</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="40.5">
- <Cell><Data ss:Type="Number">16</Data></Cell>
- <Cell><Data ss:Type="String">仙盟Boss</Data></Cell>
- <Cell><Data ss:Type="Number">17</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">14</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">每周一到周六\n20:00-20:30</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <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>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">3330</Data></Cell>
- <Cell><Data ss:Type="String">xianmengboss</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">40</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">在活动期间全仙盟玩家共同抵御BOSS的入侵,结束后按照个人伤害和仙盟总伤害排名发放奖励,伤害越高奖励越丰厚,使用鼓舞可以大幅提升伤害值。</Data></Cell>
- <Cell><Data ss:Type="String">mount09;sequip;guild</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">17</Data></Cell>
- <Cell><Data ss:Type="String">天降红包</Data></Cell>
- <Cell><Data ss:Type="Number">19</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell><Data ss:Type="Number">15</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">每天\n12:00-13:00及20:00-21:00</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">12:00-13:00;20:00-21:00</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">10</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">4</Data></Cell>
- <Cell ss:Index="18"><Data ss:Type="String">hongbao</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">40</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">活动期间系统每过6分钟就会发放巨额的银币红包,先抢先得,记得在线哦!</Data></Cell>
- <Cell><Data ss:Type="String">cash;gold</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">18</Data></Cell>
- <Cell><Data ss:Type="String">星瀚殿</Data></Cell>
- <Cell><Data ss:Type="Number">20</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">全天</Data></Cell>
- <Cell><Data ss:Type="String">10:00-20:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">10:00-20:00</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">GoToStarDungeon</Data></Cell>
- <Cell><Data ss:Type="String">xingkong</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">于浩瀚星空中漂流的大能遗府,蕴藏各种奇珍异宝,仅在每周日开放,全服修士共同挑战!</Data></Cell>
- <Cell><Data ss:Type="String">cash;gold</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0" ss:Height="27">
- <Cell><Data ss:Type="Number">19</Data></Cell>
- <Cell><Data ss:Type="String">小世界</Data></Cell>
- <Cell><Data ss:Type="Number">20</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">全天</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">GoToAbyssDungeon</Data></Cell>
- <Cell><Data ss:Type="String">shilianmijing</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">拥有挑战令的玩家可进入,挑战不可能完成的任务,进入下一层吧!</Data></Cell>
- <Cell><Data ss:Type="String">shenqi1;shenqi2</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">20</Data></Cell>
- <Cell><Data ss:Type="String">除魔</Data></Cell>
- <Cell><Data ss:Type="Number">21</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="8"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">全天</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">00:00-24:00</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">Chumo</Data></Cell>
- <Cell><Data ss:Type="String">zhanyao</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">击杀成魔玩家可获得大量修为。</Data></Cell>
- <Cell><Data ss:Type="String">gold;exp</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- <Row ss:AutoFitHeight="0">
- <Cell><Data ss:Type="Number">21</Data></Cell>
- <Cell><Data ss:Type="String">跨服Boss</Data></Cell>
- <Cell ss:Index="4"><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="9"><Data ss:Type="String">开放时间:每周三09:00-23:00;每周六09:00-23:00</Data></Cell>
- <Cell><Data ss:Type="String">09:00-23:08</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="String">09:00-23:08</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- <Cell ss:Index="16"><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="String">GoToMapJJL</Data></Cell>
- <Cell><Data ss:Type="String">kuafuboss</Data></Cell>
- <Cell><Data ss:Type="Number">2</Data></Cell>
- <Cell><Data ss:Type="Number">1</Data></Cell>
- <Cell><Data ss:Type="String">不限</Data></Cell>
- <Cell><Data ss:Type="String">跨服击杀boss</Data></Cell>
- <Cell><Data ss:Type="String">cash;gold</Data></Cell>
- <Cell><Data ss:Type="Number">0</Data></Cell>
- </Row>
- </Table>
- <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>
- </WorksheetOptions>
- </Worksheet>
- </Workbook>
|