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!

[FREE] [Bot] Enyo - The ultimate raiding botbase!

Status
Not open for further replies.
hello a question what is the new mode Healing Mode what does it do when having that on?
 
hello a question what is the new mode Healing Mode what does it do when having that on?
What Amputations said. But the CR has to support it. I only know 2 who actively support this; PureRotation & Leaves.
 
Does it walk to the boss and wait for pull ?

Can i just run the bot for LFR and get afk ?
 
Had a couple posts in Singular regarding functionality not working with Tyrael. After looking at it noticed the following:

- PreCombatBuffs is being called while the character is in Combat. This should only be called out of combat
- CombatBuffs is not being called while in combat

For a manual assist Bot, the tree root should typically be some derivative of the following:

Code:
private Composite CreateRootBehavior()
{
    return new PrioritySelector(
        new Decorator(
            ret => !StyxWoW.Me.Combat,
            new PrioritySelector(
                RoutineManager.Current.RestBehavior,
                RoutineManager.Current.PreCombatBuffBehavior
                )
            ),
        new Decorator(
            ret => StyxWoW.Me.Combat,
            new PrioritySelector( 
                RoutineManager.Current.HealBehavior,
                RoutineManager.Current.CombatBuffBehavior,
                RoutineManager.Current.CombatBehavior
                )
            )
        );
}
The above doesn't deal with behaviors returning 'null' references which can be handled in whatever way fits your implementation style best. I didn't look into this, but saw mention of non-combat healing being implemented. The standard way to do this within the Combat Routine non-combat trees (so Rest or PreCombatBuff behaviors.) That's the reason why non-combat healing hasn't worked with RaidBot or Tyrael in the past.

The above does not deal with the PullBuffs or Pull behavior of the combat routine as those don't typically apply to manual assist bot implementations.

Nice bot btw. Let me know if you have any questions. -Bobby53
 
Gibt es eventuell einen deutsch Guide f?r Tyrael? Mein Englisch ist leider nicht das Beste. Die Suchfunktion diesbez?glich verlief negativ.
 
Gibt es eventuell einen deutsch Guide f?r Tyrael? Mein Englisch ist leider nicht das Beste. Die Suchfunktion diesbez?glich verlief negativ.
die Files bzw den Ordner Tyrael in HB Ordner Bots ablegen, -> HB starten dann im dropdown oben Tyrael als bot ausw?hlen.
je nach CC dann Framelock an oder nicht bzw die Ticks pro Sek festlegen.

rest sollte selbsterkl?rend sein notfalls google translate bzw ?ber chrome f?r die erste Seite hernehmen.
 
So is Tyrael mostly for raiding? Would there be any advantage/reason to use tyrael with Kick's profiles?
 
Status
Not open for further replies.
Back
Top