WoW 7.0 改版前夕, 照慣例一堆東東改掉了, 這裡做點巨集筆記 -- 以戒牧為例:

7.0 解除了只能使用兩種職業專精的限制, 像牧師可以任意切換戒律、神聖和暗影,
巨集條件判斷式也多了 spec: N -- 專精判斷, 其中的 N 從 1 開始,
至於那個職業專精是 1? 2? 3? 很簡單, 按下[N]鍵, 叫出職業專精頁面,
頁面左側的專精按鈕排列順序, 從上而下, 就是相對應的 1/2/3/...了.
例如: 戒牧 = 1, 神牧 = 2, 暗牧 = 3

天賦也有了新對應的巨集條件判斷式 talent: 天賦層數/技能序號 -- 其中,
天賦層數 由上而下為 1, 2, 3, 4, 5, 6 ,7
技能序號 由左而右為 1, 2, 3
例如: 意志清明是戒牧的第六層第1個技能, 就可以用 /cast [spec:1,talent:6/1]意志清明, 簡單範例如下:
#showtooltip
/cast [talent:6/2]神性之星;[talent:6/3]輝環;[spec:1,talent:6/1,@mouseover,exists,help,nodead][spec:1,talent:6/1]意志清明
- 神性之星 是往前丟, 輝環 是360度往外擴散, 都不必指定目標,
- 意志清明 對滑鼠游標指向的友善且存活著目標施放,
- 這個巨集就可以讓戒牧用一個巨集應對不同的天賦技能選擇來施放治療了.

其他我常用的巨集:

] 戒牧和神牧共用同一個巨集施放治療 -- 戒牧放祈求, 神牧的話放恢復
- 先決條件: @mouseover -- 滑鼠游標在誰身上?
- 先決條件: exists -- 角色是否存在?
- 先決條件: help -- 是否為友善(我方)角色?
- 先決條件: nodead -- 角色是否還存活著?
#showtooltip
/cast [spec:1,@mouseover,exists,help,nodead][spec:1]祈求;[spec:2,@mouseover,exists,help,nodead][spec:2]恢復


] 對敵方施放暗言術:痛
- 注意! 這版的技能名稱裡的冒號都是全型字[:], 可別用半型字(:)了!
- 優先順序 1: @target -- 當前目標, harm 為敵對角色, 是 help 相反意思
- 優先順序 2: @targettarget -- 當前目標的目標,
- 優先順序 3: @focus -- 專注目標,
- 優先順序 4: @focustarget -- 專注目標的目標,
- 如果以上優先順序都不成立, 就不會施放技能了
#showtooltip
/cast [@target,exists,harm,nodead][@targettarget,exists,harm,nodead][@focus,exists,harm,nodead][@focustarget,exists,harm,nodead]暗言術:痛


] 對我方角色施放真言術:輝
- 優先順序 1: mod:alt,@player -- 同時按下[Alt]鍵時, 對玩家自己(@player)施放,
- 優先順序 2: @mouseover -- 滑鼠游標指向的目標,
- 優先順序 3: @target -- 當前目標,
- 優先順序 4: @targettarget -- 當前目標的目標,
- 優先順序 5: @focus -- 專注目標,
- 優先順序 6: @focustarget -- 專注目標的目標,
- 優先順序 7: @player -- 如果前面順序的條件都不成立, 對玩家自己施放
#showtooltip
/cast [mod:alt,@player]真言術:輝;[@mouseover,exists,help,nodead][@target,exists,help,nodead][@targettarget,exists,help,nodead][@focus,exists,help,nodead][@focustarget,exists,help,nodead][@player]真言術:輝


] 戒牧點了第一層天賦的 懺悔者 之後, 可以對友方角色施放懺悟
- 因為是補師, 我還是優先對友方進行治療, 然後才是攻擊敵方, 巨集判斷式就變成:
#showtooltip
/cast [mod:alt,@player]懺悟;[@mouseover,exists,help,nodead][@target,exists,help,nodead][@targettarget,exists,help,nodead][@focus,exists,help,nodead][@target,exists,harm,nodead][@targettarget,exists,harm,nodead][@focus,exists,harm,nodead][@player]懺悟
arrow
arrow
    文章標籤
    巨集 MACRO
    全站熱搜

    芸 發表在 痞客邦 留言(0) 人氣()