What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Dh挂秘境,掠夺者能不能只放箭塔

rushou

New Member
Joined
Apr 28, 2014
Messages
11
Bot每次都自动把憎恨用完了,能不能设置成只放箭塔或优先放箭塔
 
箭塔的默认是憎恨大于等于30才用,这个无法设置优先,你可以试下去掉这个憎恨限制
记事本打开Trinity\Combat\Abilities\DemonHunter.cs
将Player.PrimaryResource >= 30 &&
(SpellHistory.TimeSinceUse(SNOPower.DemonHunter_Sentry) >
改成(SpellHistory.TimeSinceUse(SNOPower.DemonHunter_Sentry) >
 
可否设置多重和集束的触发条件为憎恨大于200,这样就可以达到目的了
 
集束
if (!UseOOCBuff && !IsCurrentlyAvoiding && CombatBase.CanCast(SNOPower.DemonHunter_ClusterArrow) && !Player.IsIncapacitated &&
Player.PrimaryResource >= 50)
多重
if (!UseOOCBuff && !IsCurrentlyAvoiding && CombatBase.CanCast(SNOPower.DemonHunter_Multishot) && !Player.IsIncapacitated &&
Player.PrimaryResource >= 30 &&
将里面的50和30改成你想要的数值应该就行了
 
Back
Top