LUACN论坛

 找回密码
 加入我们

QQ登录

只需一步,快速开始

搜索
热搜: YJWOW MagicStone BoL
楼主: .忽忽`~`*

3.3-80级各职业天赋指引

[复制链接]
发表于 2022-1-11 15:30:41 | 显示全部楼层
资源真棒资源真棒资源真棒资源真棒资源真棒
回复 支持 反对

使用道具 举报

发表于 2022-1-11 15:44:21 | 显示全部楼层
打本天赋被人嫌弃了,来论坛找找大神
回复 支持 反对

使用道具 举报

发表于 2023-7-27 12:43:21 | 显示全部楼层
挺好的 这个就是备用看看
回复 支持 反对

使用道具 举报

发表于 2024-1-10 09:55:25 | 显示全部楼层
谢谢共享谢谢共享谢谢共享谢谢共享谢谢共享谢谢共享谢谢共享谢谢共享谢谢共享谢谢共享

回复 支持 反对

使用道具 举报

发表于 2024-3-21 18:31:39 | 显示全部楼层
是都有吗  还是怎么说
回复 支持 反对

使用道具 举报

发表于 2024-4-14 13:30:35 | 显示全部楼层
希望有用希望有用希望有用
回复 支持 反对

使用道具 举报

发表于 2025-6-11 17:11:56 | 显示全部楼层
看看大佬们的local target = "target"
local focusTarget = "focustarget"

-- 跟随目标
function FollowTarget()
    if UnitIsFriend("player", target) and not UnitIsDeadOrGhost(target) then
        if IsSpellInRange("跟随", target) then
            CastSpellByName("跟随", target)
        else
            print("太远了,无法跟随")
        end
    end
end

-- 切换焦点目标
function FocusTarget()
    if UnitExists(focusTarget) and not UnitIsDeadOrGhost(focusTarget) then
        TargetLastEnemy()
        AttackTarget(focusTarget)
    else
        TargetNextEnemy()
    end
end

-- 检查并攻击焦点目标
function AttackFocusTarget()
    if UnitExists(focusTarget) and not UnitIsDeadOrGhost(focusTarget) then
        if IsSpellInRange("攻击", focusTarget) then
            AttackTarget(focusTarget)
        else
            print("焦点目标太远了,无法攻击")
        end
    end
end

-- 主输出循环
while true do
    -- 跟随目标
    FollowTarget()

    -- 切换焦点目标
    FocusTarget()

    -- 检查并使用主要输出技能
    if IsUsableSpell("致死打击") then
        CastSpellByName("致死打击", target)
    elseif IsUsableSpell("顺劈斩") then
        CastSpellByName("顺劈斩", target)
    elseif IsUsableSpell("英勇打击") then
        CastSpellByName("英勇打击", target)
    end

    -- 检查并使用群体攻击技能
    if IsUsableSpell("雷霆一击") and UnitCount(target) > 1 then
        CastSpellByName("雷霆一击", target)
    end

    -- 继续攻击
    AttackTarget(target)
    break
end
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 加入我们

本版积分规则

小黑屋|手机版|Archiver|LUACN论坛

GMT+8, 2025-8-16 02:01 AM , Processed in 0.024135 second(s), 22 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表