要塞任務接下來該去哪裡找? - WOW

Daniel avatar
By Daniel
at 2015-01-22T19:39

Table of Contents

※ 引述《LostSeason (蛤囉?)》之銘言:
: http://i.imgur.com/GyizTPt.jpg
: 我的要塞戰役任務只解到這裡 但是我的要塞已經沒有npc可以接任務了
: 請問是我漏掉什麼嗎 還是任務要到其他地方接?


有三個辦法


1. 裝個UI, 昨天熊爸的文章有提到

#1KlnTMjQ [情報] 要塞戰役獎勵 (台服應是明天1/22可完成)

UI: http://www.curse.com/addons/wow/garrison-campaign-checker

這UI會在大地圖上標示「已開始但未結束的要塞戰役」

還沒開始的要塞戰役就沒有用

另外有指令 /gcc 或 /garrisoncampaign, 針對角色情況給予提示, 有以下幾種結果:

You are not level 100 (略)
你還沒100級

You are not Alliance or Horde (略)
你既不是聯盟也不是部落

You have an active garrison campaign quest in your quest log (略)
你任務書中就有進行中的要塞戰役任務

You have an active and incomplete garrison campaign quest (略)
A yellow ! icon has been added to the world map for %s(地圖名字)
你有未完成的要塞戰役, 已新增黃色驚歎號到 %s 地圖上

This addon could find no partially completed Garrison Campaign (略)
此插件未找到任何已開始但未結束的要塞戰役任務



2. 使用巨集向伺服器查詢任務進度

wowhead網友分享:
http://www.wowhead.com/achievement=9492/the-garrison-campaign#comments
http://www.wowhead.com/achievement=9491/the-garrison-campaign#comments

如果遇到開始=true 完成=false, 代表中間有任務沒解完
如果都是true代表完成, 都是false代表還沒接到

以下順便把巨集換成中文和分了部落聯盟方, 使用前記得每個/run才換一行

部落方巨集

/run local out="血槌營地開始:
"..tostring(IsQuestFlaggedCompleted(34309));print(out)
/run local out="血槌營地完成:
"..tostring(IsQuestFlaggedCompleted(34319));print(out)

/run local out="破碎絕壁開始:
"..tostring(IsQuestFlaggedCompleted(36117));print(out)
/run local out="破碎絕壁完成:
"..tostring(IsQuestFlaggedCompleted(37516));print(out)

/run local out="暗潮棲息地開始:
"..tostring(IsQuestFlaggedCompleted(35876));print(out)
/run local out="暗潮棲息地完成:
"..tostring(IsQuestFlaggedCompleted(34450));print(out)

/run local out="怒火燎原開始:
"..tostring(IsQuestFlaggedCompleted(32979));print(out)
/run local out="怒火燎原完成:
"..tostring(IsQuestFlaggedCompleted(33427));print(out)

/run local out="撒塔斯陷落開始:
"..tostring(IsQuestFlaggedCompleted(35680));print(out)
/run local out="撒塔斯陷落完成:
"..tostring(IsQuestFlaggedCompleted(35687));print(out)

/run local out="破壞者之心開始:
"..tostring(IsQuestFlaggedCompleted(34335));print(out)
/run local out="破壞者之心完成:
"..tostring(IsQuestFlaggedCompleted(34341));print(out)

/run local out="鋼鐵軍火廠開始:
"..tostring(IsQuestFlaggedCompleted(34034));print(out)
/run local out="鋼鐵軍火廠完成:
"..tostring(IsQuestFlaggedCompleted(34078));print(out)

/run local out="血之競技場開始:
"..tostring(IsQuestFlaggedCompleted(36219));print(out)
/run local out="血之競技場完成:
"..tostring(IsQuestFlaggedCompleted(36290));print(out)

/run local out="薩格萊開始:
"..tostring(IsQuestFlaggedCompleted(35186));print(out)
/run local out="薩格萊完成:
"..tostring(IsQuestFlaggedCompleted(35197));print(out)

/run local out="直擊核心開始:
"..tostring(IsQuestFlaggedCompleted(36261));print(out)
/run local out="直擊核心完成:
"..tostring(IsQuestFlaggedCompleted(36248));print(out)

/run local out="督軍議會開始:
"..tostring(IsQuestFlaggedCompleted(35843));print(out)
/run local out="督軍議會完成:
"..tostring(IsQuestFlaggedCompleted(35842));print(out)


聯盟方巨集

/run local out="血槌營地開始:
"..tostring(IsQuestFlaggedCompleted(34284));print(out)
/run local out="血槌營地完成:
"..tostring(IsQuestFlaggedCompleted(34289));print(out)

/run local out="破碎絕壁開始:
"..tostring(IsQuestFlaggedCompleted(35985));print(out)
/run local out="破碎絕壁完成:
"..tostring(IsQuestFlaggedCompleted(37517));print(out)

/run local out="暗潮棲息地開始:
"..tostring(IsQuestFlaggedCompleted(35861));print(out)
/run local out="暗潮棲息地完成:
"..tostring(IsQuestFlaggedCompleted(34450));print(out)

/run local out="奧薩爾的呼喚開始:
"..tostring(IsQuestFlaggedCompleted(36163));print(out)
/run local out="奧薩爾的呼喚完成:
"..tostring(IsQuestFlaggedCompleted(36169));print(out)

/run local out="撒塔斯陷落開始:
"..tostring(IsQuestFlaggedCompleted(35679));print(out)
/run local out="撒塔斯陷落完成:
"..tostring(IsQuestFlaggedCompleted(35685));print(out)

/run local out="破壞者之心開始:
"..tostring(IsQuestFlaggedCompleted(34409));print(out)
/run local out="破壞者之心完成:
"..tostring(IsQuestFlaggedCompleted(34410));print(out)

/run local out="鋼鐵軍火廠開始:
"..tostring(IsQuestFlaggedCompleted(34026));print(out)
/run local out="鋼鐵軍火廠完成:
"..tostring(IsQuestFlaggedCompleted(34033));print(out)

/run local out="血之競技場開始:
"..tostring(IsQuestFlaggedCompleted(36219));print(out)
/run local out="血之競技場完成:
"..tostring(IsQuestFlaggedCompleted(36289));print(out)

/run local out="薩格萊開始:
"..tostring(IsQuestFlaggedCompleted(35185));print(out)
/run local out="薩格萊完成:
"..tostring(IsQuestFlaggedCompleted(35196));print(out)

/run local out="直擊核心開始:
"..tostring(IsQuestFlaggedCompleted(36160));print(out)
/run local out="直擊核心完成:
"..tostring(IsQuestFlaggedCompleted(36162));print(out)

/run local out="督軍議會開始:
"..tostring(IsQuestFlaggedCompleted(35837));print(out)
/run local out="督軍議會完成:
"..tostring(IsQuestFlaggedCompleted(35841));print(out)



3. 找GM


--

「Mouseover超雷的,聖光術又射歪了嗎?」

--
Tags: WOW

All Comments

Iris avatar
By Iris
at 2015-01-27T00:43
好文 推
Odelette avatar
By Odelette
at 2015-01-31T00:23
M文
Sarah avatar
By Sarah
at 2015-02-04T05:25
實用推
Gilbert avatar
By Gilbert
at 2015-02-08T13:32
實用 我一個角色很正常 另外一個角色過一半就沒了
裝個UI檢查一下
Lauren avatar
By Lauren
at 2015-02-11T04:34
實用 推一個
Queena avatar
By Queena
at 2015-02-13T05:54
我打指令出現最後一個,但我密GM,GM幫我查確實有一個中斷
Anthony avatar
By Anthony
at 2015-02-14T23:44
巨集用不出來 = = 只好簡化print IsQuestFlaggedCompleted
Lucy avatar
By Lucy
at 2015-02-17T23:46
撒塔斯陷落也是靠gm完成,但沒後續可接,一般要塞戰役好像都
Carolina Franco avatar
By Carolina Franco
at 2015-02-20T17:38
會送道具,玩具,G或資源?
Belly avatar
By Belly
at 2015-02-25T04:56
用了巨集是顯示2個ture
Charlie avatar
By Charlie
at 2015-02-27T15:45
讚!
Hedwig avatar
By Hedwig
at 2015-03-01T04:11
這篇專業

傳家寶附魔兩三事

Hedy avatar
By Hedy
at 2015-01-22T18:54
1. 製皮的三條恆金線附魔用在傳家褲上,無需專業也可生效, 但是同樣裁縫的自用附魔就會顯示需裁縫550,莫名其妙。 2. 傳家披風的最佳附魔是臨機應變+100跑速10%, 對於十級角色而言,縮水的10臨機仍然讓傷害加成提升15%, 效果十分顯著。 3. 元素武器在低等級表現得並不會比破碎 ...

死敵互刷 部落徵德萊尼

Frederic avatar
By Frederic
at 2015-01-22T18:11
上禮拜轉蓋鬥士會堂 想到德妹夠騷就毫不猶豫的選下去 選完才發現德妹在大家心目中 竟然比不上人人為己跟外交Q_Q 艾斯藍打一禮拜才打一兩百隻 以為今天重製可以重選陣營 沒想到還是德萊妮... 因此想徵人互刷 希望你能幫我出賣一些德萊妮來解任務 我自己90+人物有血精靈 牛 熊貓 我也可以幫你賣了部落同胞XD ...

要塞任務接下來該去哪裡找?

Barb Cronin avatar
By Barb Cronin
at 2015-01-22T17:57
http://i.imgur.com/GyizTPt.jpg 我的要塞戰役任務只解到這裡 但是我的要塞已經沒有npc可以接任務了 請問是我漏掉什麼嗎 還是任務要到其他地方接? - ...

為何bz堅持初始16包不改?

Una avatar
By Una
at 2015-01-22T16:17
※ 引述《zpo77311 (麻糬)》之銘言: : 最近有閒整理包包, : 順便把德拉諾賺到的一些資金全換成上版cp值皇家包(28), : 然後就看到初始16包的差距了... : 我想想,10年了,bz連一些不該改的也改了,那麼初始16包就有問題了~ : 美服有人回饋建議這個東西嗎? : 以上。 遙想當年 ...

尖石 部落 The Phantom 公會團招生

John avatar
By John
at 2015-01-22T14:53
伺服器 - 尖石、冰風崗哨、寒冰皇冠 陣營 - 部落 工會名稱 - The Phantom 團隊進度 - 7/7(普通) + 3/7(英雄) 公會團時間 - 隨時,上線人數夠多就出團 公會自介 - Hi,我們是尖石部落The Phantom,會員們都是學生時代開始就一起玩WOW的朋友, 從WOW CB到現在 ...