|
发表于 2012-8-30 10:19:28
|
显示全部楼层
wzh5733:他是用的召唤熊这个技能 守卫是兽族的治疗守卫 单位分类是设定为守卫 技能ID是A09D
JASS我看不懂
继续求问 有没有知道的大大说一下啊
....... (2012-08-29 22:23) call IssueImmediateOrderById(GetSummonedUnit(),852512)
话说我看到了一个T里找不到的无目标指令。。。
[jass]function Y4D takes nothing returns boolean
return((GetUnitTypeId(GetSummonedUnit())=='o00L')or(GetUnitTypeId(GetSummonedUnit())=='o00M')or(GetUnitTypeId(GetSummonedUnit())=='o00N')or(GetUnitTypeId(GetSummonedUnit())=='o00O'))
endfunction
function Y7D takes nothing returns nothing
call SetUnitAbilityLevelSwapped('A08T',GetSummonedUnit(),GetUnitAbilityLevelSwapped('A09D',GetSummoningUnit()))
call SetUnitAbilityLevelSwapped('A0CF',GetSummonedUnit(),GetUnitAbilityLevelSwapped('A09D',GetSummoningUnit()))
call IssueImmediateOrderById(GetSummonedUnit(),852512)
endfunction
function R4 takes nothing returns nothing
set Do=CreateTrigger()
call TriggerRegisterAnyUnitEventBJ(Do,EVENT_PLAYER_UNIT_SUMMON)
call TriggerAddCondition(Do,Condition(function Y4D))
call TriggerAddAction(Do,function Y7D)
endfunction[/jass]
如果LZ确定是这个触发没错的话,那么让守卫有技能图标的就是那个无目标指令了,这个指令我在T里找了下,在中立-召唤熊的前面,在中立-关闭自爆的后面(YDWE1.20)
…………然后我就无语了。。
LZ可以让守卫发布这个命令试一下,如果没反应的话,可能DOTA里这个守卫有什么技能之类的,可以解压出slk之类的看下各种配置~ |
|