字号:

魔兽6.2.3:痛苦术士竞技场3V3插件设置与宏分享

时间:2015-12-18 15:38 作者:kqqqqqq 手机订阅 参与评论(0) 【投稿】
文 章
摘 要
魔兽6.2.3:痛苦术士竞技场3V3插件设置与宏分享

因为现在对象不让玩游戏,打不了jjc只能研究插件和TMW,分享一下近期所得。还都是第一版以后可能还会有修改,也欢迎玩家有好的意见一起分享。

另外也可以看我以前写的插件、宏分享帖子:

插件

1.显示LUA自制插件,我弄了一个合集。包括了 调整玩家到团队框架最后一位,视野最大,换天赋自动换装备,去暴雪自带的被控制后技能栏的红圈,目标及焦点头像姓名背景改成职业颜色,进入竞技场自动收起任务,隐藏玩家头像伤害治疗量,隐藏pvp图标,头像改职业图标。这些功能可以打开Heji.lua自行删减想要的功能。 调整玩家到团队框架最后一位需要再界面-团队控制-选择队伍才能实现。

2.痛苦毁灭恶魔的能力条移动到屏幕中央,只在战斗下显示。需要注意的是,如果是痛苦毁灭天赋就需要把恶魔的那个插件关闭,恶魔天赋也需要把痛苦毁灭的插件关闭。

我发的文件里是只在战斗下显示,如果喜欢常驻可以吧lua的文件改为我发的代码。

DemonicFuryBarFrame:ClearAllPoints()

DemonicFuryBarFrame:SetPoint("CENTER", UIParent, "CENTER", 0, -100)

DemonicFuryBarFrame:SetScale(1.1)

DemonicFuryBarFrame:SetAlpha(1)

WarlockPowerFrame:ClearAllPoints()

WarlockPowerFrame:SetPoint("TOP", CastingBarFrame, "BOTTOM", 0, -100)

WarlockPowerFrame:SetScale(1.1)

WarlockPowerFrame:SetAlpha(1.0)

3.pvp语音不显示强化狗牺牲狗打断,需要自己添加

GladiatorlosSA目录下的spelllist.lua文件打开,最后一部分打断技能加入,修改如下。 我把术士的打断全搜索除了。

[115781] = "lockout", -- Optical Blast

[119910] = "lockout", -- Spell Lock

[171140] = "lockout", -- Shadow Lock

[171139] = "lockout", -- Shadow Lock

[119911] = "lockout", -- Optical Blast

[171138] = "lockout", -- Shadow Lock

[132409] = "lockout", -- Spell Lock

4.敌方技能cd插件,我添加了术士2反的cd,NameplateCooldowns血条上显示技能cd。

5.现在PlateBuffs有时候失灵我在curse上找了一个可以完美替代,JamPlates Accessories替代PlateBuffs。

6.竞技场检测队友技能cd插件,需要自行添加还可以,TeeaPAB竞技场队友技能cd监视。

7.另外我找人帮吗写了一个带狗可驱散buff高亮lua,不太好的地方是必须带狗才显示,感兴趣的自行添加。

--[目标buff高亮]

hooksecurefunc("TargetFrame_UpdateAuras", function(self)

local frame, frameName

local selfName = self:GetName()

local name, rank, icon, count, debuffType, duration, expirationTime, caster, isStealable

local frameStealable

local playerIsTarget = UnitIsUnit(PlayerFrame.unit, self.unit)

local _, class = UnitClass("player")

if not (class == "WARLOCK" and HasPetSpells() and (GetSpellBookItemInfo("吞噬魔法") or GetSpellBookItemInfo("复制魔法")) ) then

return

end

for index = 1, MAX_TARGET_BUFFS do

name, rank, icon, count, debuffType, duration, expirationTime, caster, canStealOrPurge = UnitBuff(self.unit, index, filter)

frameName = selfName.."Buff"..index

frame = _G[frameName]

if (frame and frame:IsShown()) then

frameStealable = _G[frameName.."Stealable"]

if ( not playerIsTarget and debuffType == "Magic" ) then

frameStealable:Show()

else

frameStealable:Hide()

end

end

end

end)

1.反制宏。ctrl焦点反制,优点,人强化狗无论谁能看到打断者都能打断(俗称穿墙断),并且有狗情况下不打断当前读条。

#showtooltip 恶魔掌控

/cast[@focus,pet,mod:ctrl][pet,nomod]恶魔掌控

/cast[@focus,pet,mod:ctrl][pet,nomod]眼棱爆炸(特殊技能)

/stopmacro[@pet,exists,nodead]

/stopcasting

/cast[@focus,harm,mod:ctrl][]恶魔掌控

/cast[@focus,harm,mod:ctrl][]眼棱爆炸(特殊技能)

2.框体反制宏。同样强化狗可以穿墙。有狗不打断当前读条。

#showtooltip 恶魔掌控

/castsequence[@pettarget,pet]reset=2 0,恶魔掌控

/cast[@arena1,pet]恶魔掌控

/cast[@arena1,pet]眼棱爆炸(特殊技能)

/stopmacro[@pet,exists,nodead]

/stopcasting

/cast[@arena1]恶魔掌控

/cast[@arena1]眼棱爆炸(特殊技能)

3.进攻驱散宏。直接按框体1,ctrl框体2,alt框体3.

#showtooltip 复制魔法

/cast [target=arena2,mod:ctrl]复制魔法;

/cast [target=arena2,mod:ctrl]吞噬魔法;

/cast [target=arena3,mod:alt]复制魔法;

/cast [target=arena3,mod:alt]吞噬魔法;

/cast [target=arena1] 复制魔法

/cast [target=arena1] 吞噬魔法

4.鼠标指向宝宝攻击宏。方便打图腾,进攻。还有宝宝回血跟随宏。

#showtooltip

/petattack [target=mouseover]

#showtooltip 生命通道

/施放 灵魂燃烧

/施放 生命通道

/petfollow

/脚本 local t=GetTime()macroT=macroT or 0;if t-macroT>5 then SendChatMessage("谁打我宝宝我跟谁急!!!","YELL")macroT=t;end

5.瞬招并且反制焦点宏。但是要注意越智能的宏,很可能越傻,比如这个宏用了之后就不能打出瞬招狗吃萨满防打断反制的操作了。

#showtooltip 召唤地狱猎犬

/castsequence reset=2 灵魂燃烧,11,11,11,11,11,11,11,11,11,11,11,11,11

/use [mod:shift]召唤魅魔;[mod:alt]召唤地狱猎犬;

/施放 召唤虚空行者

/cast [target=focus] 法术封锁

/cast [target=focus] 眼棱爆炸

TMW代码

目标焦点可驱散buff,队友buff监控,jjcdot监控,法阵没有或还有一分钟结束提醒,糖还剩1个提醒等

^1^T^SNumGroups^N10 ^SGroups^T ^N1^T ^SPoint^T ^Sy^F7430384675832627 ^f-48^Sx ^F-4938346334174871^f-45 ^t^SScale^F7492656895089501 ^f-52^SIcons ^T^N1^T ^SType^Smeta ^SShowTimerText^B ^SConditionDurEnabled^B ^SEnabled^B ^SConditions^T ^N1^T ^SType^SBUFFDUR ^SChecked^B ^SOperator^S> ^SName^S恶魔法阵:召唤 ^t^N2^T ^SType^SBUFFDUR ^SChecked^B ^SOperator^S<= ^SLevel^N60 ^SName^S恶魔法阵:召唤 ^t^Sn^N2 ^t^SConditionDur^N60 ^SCustomTex^S48018 ^SEvents^T ^N1^T ^SPassingCndt^B ^SType^SAnimations ^SCndtJustPassed^B ^SOnlyShown^B ^SDuration^N15.8 ^SValue^N60 ^SAnimation^SACTVTNGLOW ^SEvent^SOnDuration ^SInfinite^B ^t^Sn^N1 ^t^t^N2^T ^SConditionAlpha^N1 ^SOnlyMine^B ^SType^Sbuffcheck ^SName^S109773 ^SHideIfNoUnits^B ^SEnabled^B ^t^N3^T ^SType^Sitem ^SName^S5512 ^SConditions^T ^N1^T ^SType^SITEMINBAGS ^SOperator^S<= ^SLevel^N1 ^SName^S5512 ^t^Sn^N1 ^t^SEnabled^B ^SEnableStacks^B ^t^N4^T ^SConditionAlpha^N1 ^SType^Sbuffcheck ^SName^S48018 ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SOnShow ^SInfinite^B ^t^Sn^N1 ^t^SOnlyMine^B ^SEnabled^B ^t^t^SLocked^B ^SGUID^STMW:group:1Kck8Ah=zEsq ^t^N2^T ^SPoint^T ^Sy^F7467353621135361 ^f-47^Sx ^F-5345872600279224^f-48 ^Spoint^SBOTTOM ^SrelativePoint^SBOTTOM ^t^SScale^F7806228151402475 ^f-52^SIcons ^T^N1^T ^SType^Scooldown ^SShowTimerText^B ^SName^S恶魔掌控 ^SShowWhen^N3 ^SEnabled^B ^t^t^SColumns^N1 ^SGUID^STMW:group:1KoaDnDJdruW ^t^N3^T ^SPoint^T ^Sy^F-4524446072718332 ^f-45^Sx ^F6558987469974615^f-53 ^t^SScale^F7731149975584789 ^f-52^SIcons ^T^N1^T ^SShowTimer^B ^SBuffOrDebuff^SHARMFUL ^SType^Sbuff ^SName^S痛苦无常;~`吸血鬼之触 ^SEnabled^B ^t^N2^T ^SBuffOrDebuff^SHARMFUL ^SType^Sbuff ^SName^S吸血鬼之触 ^SEnabled^B ^t^t^SColumns^N1 ^SGUID^STMW:group:1LHNJi4HXczO ^t^N4^T ^SGUID^STMW:group:1Lkll4m2=8U5 ^SPoint^T ^Sy^F-8024669550688386 ^f-46^Sx ^F6809677627129863^f-45 ^Spoint^SLEFT ^SrelativePoint^SLEFT ^t^SScale^F6717977927876599 ^f-52^SRows ^N3^SIcons ^T^N1^T ^SShowTimer^B ^SSort^N1 ^SType^Sunitcooldown ^SName^S剑刃风暴:~`1:00;~`天神下凡:~`1.5:00;~`主人的召唤:~`45;~`新生:~`2:00;~`窒息:~`30;~`圣盾术:~`2:30;~`暗影斗篷:~`1:00;~`风行图腾:~`1:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`1;~`group~`1pet ^SEnabled^B ^t^N2^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S拳击:~`15;~`法术反制:~`24;~`法术封锁:~`24;~`风剪:~`12;~`责难:~`15;~`脚踢:~`15;~`瓦解怒吼:~`40;~`沉默射击:~`24;~`反制射击:~`24;~`沉默:~`45;~`切喉手:~`15;~`心灵冰冻:~`15;~`迎头痛击:~`15;~`日光术:~`1:00;~`眼棱爆炸:~`24 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`1;~`group~`1pet ^SEnabled^B ^t^N3^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S破胆怒吼:~`1.5:00;~`心灵尖啸:~`45;~`恐惧嚎叫:~`40;~`惊魂咆哮:~`30;~`致盲:~`2:00;~`死亡之握:~`25;~`盲目之光:~`2:00;~`战栗图腾:~`1:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`1;~`group~`1pet ^SEnabled^B ^t^N4^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S英勇飞跃:~`45;~`闪现术:~`15;~`逃脱:~`20;~`暗影步:~`20;~`信仰飞跃:~`1.5:00;~`剑在人在:~`2:00;~`反魔法护罩:~`45;~`自由之手:~`25;~`野性位移:~`30 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`1;~`group~`1pet ^SEnabled^B ^t^N5^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S震荡波:~`40;~`风暴之锤:30;~`深度冻结:~`30;~`肾击:~`20;~`制裁之拳:~`30;~`制裁之锤:~`1:00;~`暗影之怒:~`30;~`束缚射击:~`45;~`蛮力猛击:~`50;~`扫堂腿:~`45 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`1;~`group~`1pet ^SEnabled^B ^t^N6^T ^SShowTimer^B ^SUnit^Sgroup~`1 ^SType^Sunitcooldown ^SName^SPvP饰品:~`2:00;~`自利:~`2:00 ^SOnlySeen^B ^SShowWhen^N1 ^SCustomTex^SInterface/Icons/inv_jewelry_trinketpvp_02 ^SEnabled^B ^t^N7^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S作茧缚命:~`1:00;~`萨满之怒:1:00;~`剑在人在:2:00 ^SOnlySeen^B ^SShowWhen^N3 ^SUnit^Sgroup~`1 ^SEnabled^B ^t^N8^T ^SShowTimer^B ^SSort^N1 ^SType^Sunitcooldown ^SName^S剑刃风暴:~`1:00;~`天神下凡:~`1.5:00;~`主人的召唤:~`45;~`新生:~`2:00;~`窒息:~`30;~`圣盾术:~`2:30;~`暗影斗篷:~`1:00;~`风行图腾:~`1:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`2;~`group~`2pet ^SEnabled^B ^t^N9^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S拳击:~`15;~`法术反制:~`24;~`法术封锁:~`24;~`风剪:~`12;~`责难:~`15;~`脚踢:~`15;~`瓦解怒吼:~`40;~`沉默射击:~`24;~`反制射击:~`24;~`沉默:~`45;~`切喉手:~`15;~`心灵冰冻:~`15;~`迎头痛击:~`15;~`日光术:~`1:00;~`眼棱爆炸:~`24 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`2;~`group~`2pet ^SEnabled^B ^t^N10^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S破胆怒吼:~`1.5:00;~`心灵尖啸:~`45;~`恐惧嚎叫:~`40;~`惊魂咆哮:~`30;~`致盲:~`2:00;~`死亡之握:~`25;~`盲目之光:~`2:00;~`战栗图腾:~`1:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`2;~`group~`2pet ^SEnabled^B ^t^N11^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S英勇飞跃:~`45;~`闪现术:~`15;~`逃脱:~`20;~`暗影步:~`20;~`信仰飞跃:~`1.5:00;~`剑在人在:~`2:00;~`反魔法护罩:~`45;~`自由之手:~`25;~`野性位移:~`30 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`2;~`group~`2pet ^SEnabled^B ^t^N12^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S震荡波:~`40;~`风暴之锤:30;~`深度冻结:~`30;~`肾击:~`20;~`制裁之拳:~`30;~`制裁之锤:~`1:00;~`暗影之怒:~`30;~`束缚射击:~`45;~`蛮力猛击:~`50;~`扫堂腿:~`45 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`2;~`group~`2pet ^SEnabled^B ^t^N13^T ^SShowTimer^B ^SUnit^Sgroup~`2 ^SType^Sunitcooldown ^SName^SPvP饰品:~`2:00;~`自利:~`2:00 ^SOnlySeen^B ^SShowWhen^N1 ^SCustomTex^SInterface/Icons/inv_jewelry_trinketpvp_02 ^SEnabled^B ^t^N14^T ^SType^Sunitcooldown ^SName^S作茧缚命:~`1:00;~`萨满之怒:1:00;~`剑在人在:2:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`2 ^SEnabled^B ^t^N15^T ^SShowTimer^B ^SSort^N1 ^SType^Sunitcooldown ^SName^S剑刃风暴:~`1:00;~`天神下凡:~`1.5:00;~`主人的召唤:~`45;~`新生:~`2:00;~`窒息:~`30;~`圣盾术:~`2:30;~`暗影斗篷:~`1:00;~`风行图腾:~`1:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`3;~`group~`3pet ^SEnabled^B ^t^N16^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S拳击:~`15;~`法术反制:~`24;~`法术封锁:~`24;~`风剪:~`12;~`责难:~`15;~`脚踢:~`15;~`瓦解怒吼:~`40;~`沉默射击:~`24;~`反制射击:~`24;~`沉默:~`45;~`切喉手:~`15;~`心灵冰冻:~`15;~`迎头痛击:~`15;~`日光术:~`1:00;~`眼棱爆炸:~`24 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`3;~`group~`3pet ^SEnabled^B ^t^N17^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S破胆怒吼:~`1.5:00;~`心灵尖啸:~`45;~`恐惧嚎叫:~`40;~`惊魂咆哮:~`30;~`致盲:~`2:00;~`死亡之握:~`25;~`盲目之光:~`2:00;~`战栗图腾:~`1:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`3;~`group~`3pet ^SEnabled^B ^t^N18^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S英勇飞跃:~`45;~`闪现术:~`15;~`逃脱:~`20;~`暗影步:~`20;~`信仰飞跃:~`1.5:00;~`剑在人在:~`2:00;~`反魔法护罩:~`45;~`自由之手:~`25;~`野性位移:~`30 ^SShowWhen^N1 ^SUnit^Sgroup~`3;~`group~`3pet ^SEnabled^B ^t^N19^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S震荡波:~`40;~`风暴之锤:30;~`深度冻结:~`30;~`肾击:~`20;~`制裁之拳:~`30;~`制裁之锤:~`1:00;~`暗影之怒:~`30;~`束缚射击:~`45;~`蛮力猛击:~`50;~`扫堂腿:~`45 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`3;~`group~`3pet ^SEnabled^B ^t^N20^T ^SShowTimer^B ^SUnit^Sgroup~`3 ^SType^Sunitcooldown ^SName^SPvP饰品:~`2:00;~`自利:~`2:00 ^SOnlySeen^B ^SShowWhen^N1 ^SCustomTex^SInterface/Icons/inv_jewelry_trinketpvp_02 ^SEnabled^B ^t^N21^T ^SType^Sunitcooldown ^SName^S作茧缚命:~`1:00;~`萨满之怒:1:00;~`剑在人在:2:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`3 ^SEnabled^B ^t^N22^T ^SShowTimer^B ^SSort^N1 ^SType^Sunitcooldown ^SName^S剑刃风暴:~`1:00;~`天神下凡:~`1.5:00;~`主人的召唤:~`45;~`新生:~`2:00;~`窒息:~`30;~`圣盾术:~`2:30;~`暗影斗篷:~`1:00;~`风行图腾:~`1:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`4;~`group~`4pet ^SEnabled^B ^t^N23^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S拳击:~`15;~`法术反制:~`24;~`法术封锁:~`24;~`风剪:~`12;~`责难:~`15;~`脚踢:~`15;~`瓦解怒吼:~`40;~`沉默射击:~`24;~`反制射击:~`24;~`沉默:~`45;~`切喉手:~`15;~`心灵冰冻:~`15;~`迎头痛击:~`15;~`日光术:~`1:00;~`眼棱爆炸:~`24 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`4;~`group~`4pet ^SEnabled^B ^t^N24^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S破胆怒吼:~`1.5:00;~`心灵尖啸:~`45;~`恐惧嚎叫:~`40;~`惊魂咆哮:~`30;~`致盲:~`2:00;~`死亡之握:~`25;~`盲目之光:~`2:00;~`战栗图腾:~`1:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`4;~`group~`4pet ^SEnabled^B ^t^N25^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S英勇飞跃:~`45;~`闪现术:~`15;~`逃脱:~`20;~`暗影步:~`20;~`信仰飞跃:~`1.5:00;~`剑在人在:~`2:00;~`反魔法护罩:~`45;~`自由之手:~`25;~`野性位移:~`30 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`4;~`group~`4pet ^SEnabled^B ^t^N26^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S震荡波:~`40;~`风暴之锤:30;~`深度冻结:~`30;~`肾击:~`20;~`制裁之拳:~`30;~`制裁之锤:~`1:00;~`暗影之怒:~`30;~`束缚射击:~`45;~`蛮力猛击:~`50;~`扫堂腿:~`45 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`4;~`group~`4pet ^SEnabled^B ^t^N27^T ^SShowTimer^B ^SUnit^Sgroup~`4 ^SType^Sunitcooldown ^SName^SPvP饰品:~`2:00;~`自利:~`2:00 ^SOnlySeen^B ^SShowWhen^N1 ^SCustomTex^SInterface/Icons/inv_jewelry_trinketpvp_02 ^SEnabled^B ^t^N28^T ^SType^Sunitcooldown ^SName^S作茧缚命:~`1:00;~`萨满之怒:1:00;~`剑在人在:2:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`4 ^SEnabled^B ^t^N29^T ^SShowTimer^B ^SSort^N1 ^SType^Sunitcooldown ^SName^S剑刃风暴:~`1:00;~`天神下凡:~`1.5:00;~`主人的召唤:~`45;~`新生:~`2:00;~`窒息:~`30;~`圣盾术:~`2:30;~`暗影斗篷:~`1:00;~`风行图腾:~`1:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`5;~`group~`5pet ^SEnabled^B ^t^N30^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S拳击:~`15;~`法术反制:~`24;~`法术封锁:~`24;~`风剪:~`12;~`责难:~`15;~`脚踢:~`15;~`瓦解怒吼:~`40;~`沉默射击:~`24;~`反制射击:~`24;~`沉默:~`45;~`切喉手:~`15;~`心灵冰冻:~`15;~`迎头痛击:~`15;~`日光术:~`1:00;~`眼棱爆炸:~`24 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`5;~`group~`5pet ^SEnabled^B ^t^N31^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S破胆怒吼:~`1.5:00;~`心灵尖啸:~`45;~`恐惧嚎叫:~`40;~`惊魂咆哮:~`30;~`致盲:~`2:00;~`死亡之握:~`25;~`盲目之光:~`2:00;~`战栗图腾:~`1:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`5;~`group~`5pet ^SEnabled^B ^t^N32^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S英勇飞跃:~`45;~`闪现术:~`15;~`逃脱:~`20;~`暗影步:~`20;~`信仰飞跃:~`1.5:00;~`剑在人在:~`2:00;~`反魔法护罩:~`45;~`自由之手:~`25;~`野性位移:~`30 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`5;~`group~`5pet ^SEnabled^B ^t^N33^T ^SShowTimer^B ^SType^Sunitcooldown ^SName^S震荡波:~`40;~`风暴之锤:30;~`深度冻结:~`30;~`肾击:~`20;~`制裁之拳:~`30;~`制裁之锤:~`1:00;~`暗影之怒:~`30;~`束缚射击:~`45;~`蛮力猛击:~`50;~`扫堂腿:~`45 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`5;~`group~`5pet ^SEnabled^B ^t^N34^T ^SShowTimer^B ^SUnit^Sgroup~`5 ^SType^Sunitcooldown ^SName^SPvP饰品:~`2:00;~`自利:~`2:00 ^SOnlySeen^B ^SShowWhen^N1 ^SCustomTex^SInterface/Icons/inv_jewelry_trinketpvp_02 ^SEnabled^B ^t^N35^T ^SType^Sunitcooldown ^SName^S作茧缚命:~`1:00;~`萨满之怒:1:00;~`剑在人在:2:00 ^SOnlySeen^B ^SShowWhen^N1 ^SUnit^Sgroup~`5 ^SEnabled^B ^t^t^SOnlyInCombat^B ^SEnabled^b ^SName^Sjjc队友监控 ^SSettingsPerView^T ^Sicon^T ^SSpacingY^N15 ^t^t^SColumns^N7 ^t^N5^T ^SPoint^T ^Sy^F-5611638807469810 ^f-46^Sx ^F-5079678390174323^f-46 ^Spoint^SRIGHT ^SrelativePoint^SRIGHT ^t^SScale^F4608327573045246 ^f-51^SRows ^N3^SRole ^N3^SIcons ^T^N1^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S痛楚 ^SUnit^Sarena~`1 ^SEnabled^B ^t^N2^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S痛苦无常 ^SUnit^Sarena~`1 ^SEnabled^B ^t^N3^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S腐蚀术 ^SUnit^Sarena~`1 ^SEnabled^B ^t^N4^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S鬼影缠身 ^SUnit^Sarena~`1 ^SEnabled^B ^t^N5^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S痛楚 ^SUnit^Sarena~`2 ^SEnabled^B ^t^N6^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S痛苦无常 ^SUnit^Sarena~`2 ^SEnabled^B ^t^N7^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S腐蚀术 ^SUnit^Sarena~`2 ^SEnabled^B ^t^N8^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S鬼影缠身 ^SUnit^Sarena~`2 ^SEnabled^B ^t^N9^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S痛楚 ^SUnit^Sarena~`3 ^SEnabled^B ^t^N10^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S痛苦无常 ^SUnit^Sarena~`3 ^SEnabled^B ^t^N11^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S腐蚀术 ^SUnit^Sarena~`3 ^SEnabled^B ^t^N12^T ^SBuffOrDebuff^SHARMFUL ^SOnlyMine^B ^SType^Sbuff ^SShowTimerText^B ^SName^S鬼影缠身 ^SUnit^Sarena~`3 ^SEnabled^B ^t^t^SGUID^STMW:group:1LNrrEO8uVZt ^SName^S痛苦术竞技场 ^SSettingsPerView^T ^Sicon^T ^SSpacingY^N3 ^t^t^t^N6^T ^SPoint^T ^Sy^N887.23095703125 ^Sx^F6733218082455561 ^f-44^Spoint ^STOPLEFT^SrelativePoint ^SBOTTOMLEFT^t ^SScale^F5520288716423166 ^f-52^SIcons ^T^N1^T ^SShowTimer^B ^SConditionAlpha^N0.5 ^SType^Sbuff ^SName^Smagic ^SEvents^T ^N1^T ^SType^SAnimations ^SOnlyShown^B ^SDuration^N0.1 ^SAnimation^SACTVTNGLOW ^SEvent^SOnShow ^SInfinite^B ^t^Sn^N1 ^t^SUnit^Starget ^SEnabled^B ^t^t^SColumns^N6 ^SGUID^STMW:group:1MQnjYtLf38h ^SControlled^B ^t^N7^T ^SPoint^T ^Sy^N116.09302992986 ^Sx^N-181.06181471414 ^Spoint^SRIGHT ^SrelativePoint^SRIGHT ^t^SScale^F6064347256193035 ^f-52^SIcons ^T^N1^T ^SShowTimer^B ^SConditionAlpha^N0.5 ^SType^Sbuff ^SName^Smagic ^SEvents^T ^N1^T ^SType^SAnimations ^SOnlyShown^B ^SDuration^N0.1 ^SAnimation^SACTVTNGLOW ^SEvent^SOnShow ^SInfinite^B ^t^N2^T ^SType^SAnimations ^SOnlyShown^B ^SDuration^N0.1 ^SAnimation^SACTVTNGLOW ^SEvent^SOnCondition ^SInfinite^B ^t^Sn^N2 ^t^SUnit^Sfocus ^SEnabled^B ^t^t^SColumns^N6 ^SGUID^STMW:group:1MQnxfck9spO ^SControlled^B ^t^N8^T ^SPoint^T ^Sy^F-6573659410697712 ^f-46^Sx ^F-5098346501334903^f-44 ^t^SScale^F7405920556417023 ^f-53^SIcons ^T^N1^T ^SShowTimer^B ^SType^Sbuff ^SName^S109773;~`警戒;~`王者祝福;~`力量祝福;~`野性印记 ^SUnit^Sparty~`1 ^SEnabled^B ^SConditions^T ^N1^T ^SType^SINSTANCE2 ^SBitFlags^N4 ^t^Sn^N1 ^t^t^t^SColumns^N3 ^SGUID^STMW:group:1MQo26O9_Dn= ^SControlled^B ^t^N9^T ^SPoint^T ^Sy^F-6042472132527878 ^f-45^Sx ^F-5086119803185011^f-44 ^t^SScale^F7405920556417023 ^f-53^SIcons ^T^N1^T ^SShowTimer^B ^SType^Sbuff ^SName^S109773;~`警戒;~`王者祝福;~`力量祝福;~`野性印记 ^SUnit^Sparty~`2 ^SEnabled^B ^SConditions^T ^N1^T ^SType^SINSTANCE2 ^SBitFlags^N4 ^t^Sn^N1 ^t^t^t^SColumns^N3 ^SGUID^STMW:group:1MQo5efnB7Fq ^SControlled^B ^t^N10^T ^SPoint^T ^Sy^F-8911566120830708 ^f-45^Sx ^F-4999178927695740^f-44 ^t^SScale^F7405920556417023 ^f-53^SIcons ^T^N1^T ^SShowTimer^B ^SType^Sbuff ^SName^S109773;~`警戒;~`王者祝福;~`力量祝福;~`野性印记 ^SEnabled^B ^SConditions^T ^N1^T ^SType^SINSTANCE2 ^SBitFlags^N4 ^t^Sn^N1 ^t^t^t^SColumns^N3 ^SGUID^STMW:group:1MQo8XmQumnJ ^SControlled^B ^t^t^SVersion^N74003 ^t^N74003^S~`~| ^Sprofile^S年少像如花~`-~`阿拉索 ^^

效果图


加入17173玩家俱乐部,100%领《原神》月卡、《王者荣耀》888点券、《魔兽世界》T恤等周边好礼!
加入方式:微信关注“17173服务号”

热点推荐

游戏头条