两仪末凪💫
cashsj1987
关注数: 0
粉丝数: 7
发帖数: 457
关注贴吧数: 21
求助大神-工程技能升级导致英雄物品栏被ban 自己做地图打发时间玩,弄了一个这样的技能。把工程技能设置成单位技能加给英雄做被动技能。然后设置升级R技能通过触发器联动升级工程技能。工程技能升级后强化Q技能。 现在的问题是R技能升级以后直接就把英雄物品栏ban了。但是Q技能的强化没问题。 不知道问题出在哪里。怎么解决。设置了升级技能以后从新给英雄添加物品栏技能也没用。设置技能永久性也不行。
新人求助。。。我想做一个闪电链给击中的所有目标施加暗影突袭。 现在只会对第一个目标施放技能,麻烦问下大佬哪里出问题了。怎么调整 瘟疫传染就是闪电链
新手求助~关于技能释放期间增加英雄攻击范围的问题 我想弄一个在英雄释放蝗虫群时增加英雄攻击距离。释放结束后恢复原始攻击距离的。但是自己怎么都搞不定,新手特来求助。
关于在WE中制作LOL艾克R技能 以下为技能代码 // 核心触发器代码(JASS) globals constant real INTERVAL = 0.08 // 优化记录频率 constant integer MAX_FRAMES = 50 // 4秒轨迹(4/0.08) unit array shadowClones real array posX[MAX_FRAMES] real array posY[MAX_FRAMES] effect array trailFX integer historyIndex = 0 timer tracker = CreateTimer() unit ekkoHero endglobals function CleanOldClone takes integer idx returns nothing if shadowClones[idx] != null then call RemoveUnit(shadowClones[idx]) call DestroyEffect(trailFX[idx]) endif endfunction function SpawnClone takes integer idx returns nothing call CleanOldClone(idx) set shadowClones[idx] = CreateUnit(GetOwningPlayer(ekkoHero), 'h001', posX[idx], posY[idx], 0) call SetUnitAnimation(shadowClones[idx], "stand") call SetUnitVertexColor(shadowClones[idx], 100, 255, 100, 120) // 半透明绿 set trailFX[idx] = AddSpecialEffect("Abilities\\Spells\\NightElf\\Blink\\BlinkTarget.mdl", posX[idx], posY[idx]) endfunction function TrackMovement takes nothing returns nothing set posX[historyIndex] = GetUnitX(ekkoHero) set posY[historyIndex] = GetUnitY(ekkoHero) call SpawnClone(historyIndex) set historyIndex = ModuloInteger(historyIndex + 1, MAX_FRAMES) endfunction function ExecuteChronoBreak takes nothing returns nothing local integer rewindIndex = ModuloInteger(historyIndex - 38, MAX_FRAMES) // 3秒回溯 local real damageRadius = 425.00 local group targets = CreateGroup() // 时空撕裂特效 call DestroyEffect(AddSpecialEffect("war3mapImported\\TimeRift.mdx", posX[rewindIndex], posY[rewindIndex])) // 英雄传送 call SetUnitPosition(ekkoHero, posX[rewindIndex], posY[rewindIndex]) call DestroyEffect(AddSpecialEffect("Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", posX[rewindIndex], posY[rewindIndex])) // 范围伤害 call GroupEnumUnitsInRange(targets, posX[rewindIndex], posY[rewindIndex], damageRadius, null) loop set u = FirstOfGroup(targets) exitwhen u == null if IsUnitEnemy(u, GetOwningPlayer(ekkoHero)) then call UnitDamageTarget(ekkoHero, u, 350 + (50 * GetUnitAbilityLevel(ekkoHero, 'A001')), true, false, ATTACK_TYPE_CHAOS, DAMAGE_TYPE_UNIVERSAL, null) call SetUnitFlyHeight(u, 400, 1000) // 击飞效果 endif call GroupRemoveUnit(targets, u) endloop call DestroyGroup(targets) endfunction 为什么无法实现。。。
求问个虫子。。。 家里发现的 1.5公分最有 会飞 西安地区 8月
1
下一页