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!

lyvewyre

Member
Joined
Jan 3, 2013
Messages
418
Hey all,

Have a character that'd I'd like to setup where it uses a skill if the character is not at max charges. For example, I'd like the character to use Frenzy when not at max charges or there is less than 5 seconds left on the frenzy charges (and a valid target is available).

The logic is sort of present already with enduring cry, which casts if (EnduranceChargesTimeLeft.TotalSeconds < 5 && Utility.NumberOfMobsNear(LokiPoe.Me, 30) > 0) - so if timer left is less than 5 seconds and there is mobs nearby.

How easy would it be to set something like this up for frenzy? I can see there'd need to be a melee/ranged weapon check (if we are melee or ranged frenzy), if less than max charges and if time left is less than X.

I know there was a flicker strike combat routine previously that did something like that, I'll try to dig it up and see what he did.

Fortify would be another buff would be great to setup a 'do I have this active, if not use this skill' setting, but it is up most of the time due to movement skill anyway so not as big of a priority.

Any help would be greatly appreciated, thanks!
 
Hey all,

Have a character that'd I'd like to setup where it uses a skill if the character is not at max charges. For example, I'd like the character to use Frenzy when not at max charges or there is less than 5 seconds left on the frenzy charges (and a valid target is available).

The logic is sort of present already with enduring cry, which casts if (EnduranceChargesTimeLeft.TotalSeconds < 5 && Utility.NumberOfMobsNear(LokiPoe.Me, 30) > 0) - so if timer left is less than 5 seconds and there is mobs nearby.

How easy would it be to set something like this up for frenzy? I can see there'd need to be a melee/ranged weapon check (if we are melee or ranged frenzy), if less than max charges and if time left is less than X.

I know there was a flicker strike combat routine previously that did something like that, I'll try to dig it up and see what he did.

Fortify would be another buff would be great to setup a 'do I have this active, if not use this skill' setting, but it is up most of the time due to movement skill anyway so not as big of a priority.

Any help would be greatly appreciated, thanks!

Something like this ?

Code:
[AdvancedRoutine] AR.Cast("Frenzy", True) returned true for the condition "t.Distance <= AR.CombatRange and (AR.MyFrenzyCharges < 3 or AR.FrenzyChargesTimeleft <= 3000)"

yep, basically it's the same as endurance charges, except you'll need to use :

Code:
LokiPoe.Me.FrenzyChargeAura.TimeLeft
LokiPoe.Me.FrenzyCharges
LokiPoe.Me.HasFrenzyCharges

and then ofc cast the specific slot for frenzy.
 
I'll add this to Ouroboros, seems useful. I actually have a curse on hit skill on my current character so I was thinking of adding support for that, this seems like it'd be similar.
 
Back
Top