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!

Public Fire Mage

greenbrad

Community Developer
Joined
Aug 10, 2012
Messages
105
A very basic, Fire Mage PvE combat routine.

Rotation is based off of what is being used in Simcraft, for the most part; like I said though, extremely simple CR for those of you mages that don't have anything except singular. This is putting out around 280k dps single target on dungeons on my mage.
 

Attachments

Last edited:
btw, why in main folder: Pubfiremage is again folder Pubfiremage with the same contend as in main Pubfiremage? :D
 
I'm not sure, it's something 7zip keeps doing and I"m not sure how to fix it. Just delete the extra PubFireMage folder.
 
yeah i figured that out,

now to the routine: everything very nice and quick but
mage is not using Flame On, just put it in the routine when fireblats and phoenix flames are on CD :)

and next would be great if you add AOE rotation when there are 3+mobs :) :) :)

but gz nice job
 
This was not intended to be the best. This was intended for the community to use freely. It was based off of dagradt's profiles, and singular. If you'd like something better the Buddy Store is always open =).
 
This was not intended to be the best. This was intended for the community to use freely. It was based off of dagradt's profiles, and singular. If you'd like something better the Buddy Store is always open =).


nah iam just saying that you can do this and the profile will be perfect :) :) no offence :)
 
I did do that, in a private version of it, well, and a lot more also but yea.
 
Highly doubtful, I don't have access to the developers who are knowledgable on Honorbuddies API and interfaces/classes, etc. Plus the community is just not what it used to be. I did this one because I play a mage.
 
isn't it like more detectable when it spamms buttons like this fast? I have so many more key presses..
 
isn't it like more detectable when it spamms buttons like this fast? I have so many more key presses..

I doubt it. Keypresses are local and client side, if you can't cast an ability it will just reject it. I doubt they would log every time someone is rejected an action, it would be extremely cumbersome on their end to even have to sift through that mess.
 
Quest profiles don't work using this routine. Bot just stands still. What's wrong?
 
Quest profiles don't work using this routine. Bot just stands still. What's wrong?

The Combat Routine is extremely simple. Meaning, it does NOT contain movement. You MUST move it yourself.
 
Highly doubtful, I don't have access to the developers who are knowledgable on Honorbuddies API and interfaces/classes, etc. Plus the community is just not what it used to be. I did this one because I play a mage.

AOE detection is hardly difficult - just update the below for a ranged class

PHP:
static IEnumerable<WoWUnit> UnfriendlyUnits
{
    get { return ObjectManager.GetObjectsOfType<WoWUnit>(true, false).
            Where(u => !u.IsDead && 
                  u.CanSelect && 
                  u.Attackable && 
                  !u.IsFriendly && 
                  u.IsWithinMeleeRange); }
}

PHP:
 if (UnfriendlyUnits.Count() >= 2) // if I must execute AOE
 {
    //Do  stuff
 }
 
AOE detection is hardly difficult - just update the below for a ranged class

PHP:
static IEnumerable<WoWUnit> UnfriendlyUnits
{
    get { return ObjectManager.GetObjectsOfType<WoWUnit>(true, false).
            Where(u => !u.IsDead && 
                  u.CanSelect && 
                  u.Attackable && 
                  !u.IsFriendly && 
                  u.IsWithinMeleeRange); }
}

PHP:
 if (UnfriendlyUnits.Count() >= 2) // if I must execute AOE
 {
    //Do  stuff
 }

I don't recall saying it was hard. i recall saying I didn't have access to the material I needed at the time. I also made it extremely clear that it was not something that I intended on keeping updated. Aside from that, you can't put an if statement in a decorator, it errors every time.
 
hey,

how do i get this running? If I copy it into the routine folder I cannot change my CC after restarting HB. Do I do anything wrong?
 
hey,

how do i get this running? If I copy it into the routine folder I cannot change my CC after restarting HB. Do I do anything wrong?

All you should be doing is putting the Combat Routine folder in to the Routines folder. You may need to reinstall honorbuddy if it's not compiling on the Honorbuddy startup.
 
Back
Top