F fans19880 New Member Joined Jun 24, 2014 Messages 1 Jun 24, 2014 #1 打到了狗戒,現在合幾隻狗成一隻大狗了,但是-召喚僵屍犬-技能,Cd好了就會放..我認為是,監視到少於多少數量就招..但是不知道怎麼改.. 怎麼才能讓他不Cd好了就施放.求問怎麼設置.. 謝謝
EricPhone Active Member Joined Feb 17, 2013 Messages 5,665 Jun 24, 2014 #2 Plugins\Trinity\Combat\Abilities\WitchDoctorCombat.cs 默认就是根据你的狗的只数来使用的 如果没有献祭技能,召唤僵尸犬可用,且拥有的狗数量少于等于2时用 if (!hasSacrifice && CanCast(SNOPower.Witchdoctor_SummonZombieDog) && Trinity.PlayerOwnedZombieDogCount <= 2) { return new TrinityPower(SNOPower.Witchdoctor_SummonZombieDog); }
Plugins\Trinity\Combat\Abilities\WitchDoctorCombat.cs 默认就是根据你的狗的只数来使用的 如果没有献祭技能,召唤僵尸犬可用,且拥有的狗数量少于等于2时用 if (!hasSacrifice && CanCast(SNOPower.Witchdoctor_SummonZombieDog) && Trinity.PlayerOwnedZombieDogCount <= 2) { return new TrinityPower(SNOPower.Witchdoctor_SummonZombieDog); }