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

monk cyclone strike bindings of the lesser gods bracers and mystic ally

There's a delay slider for Cyclone Strike. Go to Settings->Combat->Monk and set that slider to 4000 of maybe 3900. As for Mystic Ally, it's not triggered by elite mobs. If you're using Air Ally, what triggers it is dropping below 150 Spirit, any other runes are triggered by any enemies within 30 yards.
 
thank you this work so far but the bot don't use cyclone strike when fighting the rift boss can i change this that the bot use cyclone strike when the boss is in melee range because without cyclone strike i lose alot of damage on the rift boss.
 
It should cast cyclone strike regardless of the enemy type. I'm not sure why it wouldn't cast it on a boss. Can you please run a few rifts again and let me know if it's still happening? Sometimes trinity just derps a couple of times for on real reason.
 
i tried it now with a fresh db install and trinity 2.14.23 for 10 grift runs.
bot is using cyclone strike on trash and elites aslong as one mop is not in melee range.
if all mops are in melee range the bot wont use cyclone strike.
my cyclone strike settings are min trash count 1 and delay 2000.
at the rift boss the bot use cyclone strike only if the boss spawn any adds in that not in melee range or if you get kicked away from the boss or he teleport away that melee attack is not possible.
i think the problem is the minimum skill trigger range the bot use it only to pull mops into melee range.
and it looks like mystic ally is only used when there are high health point monsters or elites i use the skill with no rune selectet because u have all runes from the set bonus.
would be cool if i can set this that cyclone strike is used every few seconds in combat and mystic ally anytime when in combat and cooldown is ready.
i think that would make the inna mystic ally build work great!
 
I'm sorry, but once again that's not what the bot's programmed to do. I really don't know what's going wrong for you, wish I could be of more help.
 
i'm read enough. Jubisman have 1.106 posts, good job. I think in life you have success, but back to the problem.
dondada want to edit combat rules in bot (Plugins\Trinity\Combat for example "MonkCombat.cs" ). "jubi" You do not offer solutions. And we just want to know how edit files for use mystic ally (off cd) and cyclone strike (on solo target(min trash count 1 does not work)). Senks for all
 
I had the same problem. I fixed it by going into monkCombat.cs in trinity plugin.
ctrl-f: var conditionA and you will find this
Code:
var conditionA = ShouldRefreshBastiansSpenderBuff && TargetUtil.AnyMobsInRange(cycloneStrikeRange) ||
                               TargetUtil.AnyElitesInRange(cycloneStrikeRange) ||
                               CurrentTarget.IsBoss && CurrentTarget.Distance <= cycloneStrikeRange ||
                               TargetUtil.AnyMobsInRange(cycloneStrikeRange, Settings.Combat.Monk.MinCycloneTrashCount) ||
                               (CurrentTarget.Distance >= 10f && CurrentTarget.Distance <= cycloneStrikeRange);

Change it to this:

Code:
var conditionA = true;/*ShouldRefreshBastiansSpenderBuff && TargetUtil.AnyMobsInRange(cycloneStrikeRange) ||
                               TargetUtil.AnyElitesInRange(cycloneStrikeRange) ||
                               CurrentTarget.IsBoss && CurrentTarget.Distance <= cycloneStrikeRange ||
                               TargetUtil.AnyMobsInRange(cycloneStrikeRange, Settings.Combat.Monk.MinCycloneTrashCount) ||
                               (CurrentTarget.Distance >= 10f && CurrentTarget.Distance <= cycloneStrikeRange);*/

Then go to var conditionB right below this, and change it to this:
Code:
var conditionB = true;//TargetUtil.IsPercentUnitsWithinBand(10f, cycloneStrikeRange, 0.25) || ShouldRefreshBastiansSpenderBuff || Sets.ShenlongsSpirit.IsFullyEquipped;

This just ignored all the other reasons not to cast cyclone strike beside the timer set in trinity, your spirit pool, and if you are fighting. So in this way if you set the timer to be 4000 ms the bot will cast cyclone strike every 4 seconds while fighting regardless of the mob.

I also have a fix for the mystic ally casting issue.
crtl-f:
Code:
return CanCast(SNOPower.X1_Monk_MysticAlly_v2) && TargetUtil.EliteOrTrashInRange(30f) && !Runes.Monk.AirAlly.IsActive;
change this statement to:
Code:
return CanCast(SNOPower.X1_Monk_MysticAlly_v2) && true && !Runes.Monk.AirAlly.IsActive;

This will make it so the bot casts mystic ally whenever the cd is up.
 
I noticed that cyclone strike works on bosses only when you are out of range (dashing strike out of range to dodge ability). When this happens it will cyclone strike thin air, then go back to the boss.
 
Back
Top