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

Sweeping Wind spam with Innas Set dont work

someone1989

New Member
Joined
Jun 17, 2012
Messages
39
Reaction score
0
Hello,
i run Chest runes, and i would like to use sweeping wind but it dont work.
I have check in Trinity "Innas Set for weeping wind" but nothing happened. I have also downgrade trinity 1.9.3 to 1.8.25.

I would like to spam sweeping wind but i dont know what i can edit at Monk.cs in Abilities folder? I have try edit couple lines but then i get trinity error.
 
I got it working a bit..it might be a little bodged because didn't really know what I was doing, I'm assuming you just want it to work out of combat always..so change


// Sweeping wind
if (!UseOOCBuff && CombatBase.CanCast(SNOPower.Monk_SweepingWind) && !GetHasBuff(SNOPower.Monk_SweepingWind) &&
((TargetUtil.AnyElitesInRange(25, 1) || TargetUtil.AnyMobsInRange(20, 1) || Settings.Combat.Monk.HasInnaSet ||
(CurrentTarget.IsBossOrEliteRareUnique && CurrentTarget.RadiusDistance <= 25f)) &&
// Check our mantras, if we have them, are up first
Monk_HasMantraAbilityAndBuff() &&
// Check if either we don't have blinding flash, or we do and it's been cast in the last 8000ms
(TimeSinceUse(SNOPower.Monk_BlindingFlash) <= 8000 || CheckAbilityAndBuff(SNOPower.Monk_BlindingFlash) ||
TargetUtil.AnyElitesInRange(25, 1) && TimeSinceUse(SNOPower.Monk_BlindingFlash) <= 12500)) &&
Player.PrimaryResource >= minSweepingWindSpirit)
{
SweepWindSpam = DateTime.UtcNow;
return new TrinityPower(SNOPower.Monk_SweepingWind, 0f, Vector3.Zero, CurrentWorldDynamicId, -1, 0, 0);
}



TO


// Sweeping wind
if (!GetHasBuff(SNOPower.Monk_SweepingWind) && Settings.Combat.Monk.HasInnaSet && (Player.PrimaryResource >= 10) && TimeSinceUse(SNOPower.Monk_SweepingWind) > 500)
{
return new TrinityPower(SNOPower.Monk_SweepingWind, 0f, Vector3.Zero, CurrentWorldDynamicId, -1, 0, 0);
}
 
JoshE, thanks you so much ! It works ! :)

i have make exactly the same but on wrong line where read: "// Sweeping winds spam"

thanks again !
 
JoshE, thanks you so much ! It works ! :)

i have make exactly the same but on wrong line where read: "// Sweeping winds spam"

thanks again !


Glad it works ! yeah I made similar mistake at first xd
 
Back
Top