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

PLEASE show DungeonBuddy some LOVE

Would you like to see DungeonBuddy updated on the next release?

  • Yes

    Votes: 0 0.0%
  • No

    Votes: 0 0.0%
  • Don't care

    Votes: 0 0.0%

  • Total voters
    0
Status
Not open for further replies.

hazard

Well-Known Member
Joined
Sep 16, 2010
Messages
1,854
Reaction score
59
As stated in the title I myself would like to see DungeonBuddy now have the last 3 wings of SoO updated on the next release. All other features of the bot base appears to be stable now and seeing that DungeonBuddy has become another main feature of the bot it should become a priority.
 
As stated in the title I myself would like to see DungeonBuddy now have the last 3 wings of SoO updated on the next release. All other features of the bot base appears to be stable now and seeing that DungeonBuddy has become another main feature of the bot it should become a priority.

As I state before, Dungeonbuddy is lower on the priority list than other botbases such as questing.
This means that before HV will work on dungeon scripts, he is focusing his time on questing and repairing kick's profiles, mesh issue, and other core problems.
He is a core developer now.

Weeks ago, I was getting ready to write the script for wing two, having all the data I needed.
Unfortunately I got banned literally THE night I finished my data collection. I got careless and was grinding some black prince rep.

However, My latest toon is at 86 now, so it may be a short while before I get him back into SoO, but I will finish writing and testing my script for it.
If things go well, it will be included as a default dungeon script in future releases.
 
keeep up the work Bam! as ive said so many tmes i would really love to learn to code and help out and making profiles or code something bigger if i could!
If you have any good profiles pls send me a pm and i can buy a few from you if you would accept it!
 
As I state before, Dungeonbuddy is lower on the priority list than other botbases such as questing.
This means that before HV will work on dungeon scripts, he is focusing his time on questing and repairing kick's profiles, mesh issue, and other core problems.
He is a core developer now.

Community says since months, that building more and more bots beside HB will reduce the effort being put into HB. As mods and devs never forget to decline this, I thank you now for confirming it officially.

And yes, please give HB some love.
 
...<snip>...
Unfortunately I got banned literally THE night I finished my data collection. I got careless and was grinding some black prince rep.
...<snip>...

N00b ;P
Joking aside, the rest of your post is nice :) Keep it up man.
 
N00b ;P
Joking aside, the rest of your post is nice :) Keep it up man.

Not making any excuses buuuuut, I had a massive headache and loaded the wrong black prince profile and immediately went to sleep.
I have a much better and much less population location for a rep farm, but didn't care because i was in excruciating pain.
LFR gives me a conniption.
I'm 100% confident that it was multiple player reports. When I checked the log, I was getting farmed for over an hour by 3 different people.
Blood DKs aren't that great in PvP with PVE gear.

But yea, I'll have my 87 to 90 within 36 hours. It may be a week or two before I get the ilvl to enter SoO again.
I had originally planned to write scripts for all the wings over my Thanksgiving break from school, but the toon was banned 2 days into the break.
Since I am back in class, it will be slower since my school work takes priority over everything. But I will be trying me best to get something released.
 
I'm trying to figure out where do you get profiles to run Dungeonbuddy? :O or raidbot, or BGbuddy? cant find the profiles.
 
the profiles for dungeonbuddy are included in the botbase,however, you must choose the dungeons/raids you want to queue from the dropdown menus.

raidbot is a 'no movement' botbase so no profiles are available for it.

bgbuddy has the profile built into the botbase so be careful when running for an extended period of time. everyone gets the same basic profile for the same bg's
 
Community says since months, that building more and more bots beside HB will reduce the effort being put into HB. As mods and devs never forget to decline this, I thank you now for confirming it officially.

And yes, please give HB some love.

Did you even read his post?
 
Bam, if you could. Why is dungeon buddy not an open botbase? Would be nice if we could open it to the community and allow people easier access on making scripts for it. Just a thought. I know a bunch of us have said it but just wanted to know if there was a reason why it was not open.
 
you can create your own scripts for DB, all the scripts are found in the Dungeon Scripts folder in your HB folder.
 
Bam, if you could. Why is dungeon buddy not an open botbase? Would be nice if we could open it to the community and allow people easier access on making scripts for it. Just a thought. I know a bunch of us have said it but just wanted to know if there was a reason why it was not open.

You could make your own scripts if you wanted to.
However, we have internal tools that collect raid data that makes our lives sooo much easier.
Look in the dungeon scripts folder to see how they are written.
 
You could make your own scripts if you wanted to.
However, we have internal tools that collect raid data that makes our lives sooo much easier.
Look in the dungeon scripts folder to see how they are written.

Couldnt you release that data to the community and see if someone is willing to have a go at creating the scripts?
 
I didn't even know that raids were supported.
Best time to find out because I need the legendary collectibles from ToT :)
 
I didn't even know that raids were supported.
Best time to find out because I need the legendary collectibles from ToT :)

If you check the Dungeon Scripts directory in your HB install directory, you can see what Dungeons, Raids and Scenarios are scripted and supported, even though a couple of them seem to need a bit of tweaking, was one (can't remember which one currently) where your toons couldn't navigate correctly.

Of course, once HB is up and running again, you can alway select DungeonBuddy in the dropdown, click configure bot and see all the glorious content you can kick butt in, courtesy of the devs :)
 
Couldnt you release that data to the community and see if someone is willing to have a go at creating the scripts?
All of the data is readily available to you through sites like WoWHead.

The reason why dungeon&raid data we collect for scripts will never be released is because the tools we use record EVERYTHING.
And by everything, I mean literally everything.

Character names
Each spell each character casts in the raid
Every time an aura wears off on a mod.

Besides there being sensitive data, there is just too much of it.

For instance:
PHP:
		[EncounterHandler(68078, "Iron Qon")]
		public Composite IronQonEncounter()
		{
			WoWUnit boss = null;
			AddAvoidObject(
				ctx => !Me.IsMoving,
				2,
				o =>
					((o is WoWAreaTrigger && (((WoWAreaTrigger)o).SpellId == BurningCindersSpellId || ((WoWAreaTrigger)o).SpellId == FrozenBloodSpellId)) ||
					 o.Entry == StormCloudId) && o.DistanceSqr <= 30 * 30,
				null,
				true);

			AddAvoidObject(ctx => true, 6, RushingWindsId);
			AddAvoidObject(ctx => true, 8, RushingWindsIgniteCycloneId);

You write the script in the same way you would do the encounter manually.
If there is something that needs to be avoided, you have to write it in.
Say you get focused by the boss and need to run away. You need to have this written in the event your character is in fact targeted.
 
Thanks for the answer Bam, and I can understand then that you dont want to relase it public :)
 
Just wanna say that, i like Hazard.

Carry on.
 
I dont want to sound like a jerk but...

If you use bot for gold...
If you use bot to farm rep...
If you use bot to level...
If you use bot to get achievements...
If you use bot for instances and raids...

Why exactly people are paying the game sub for ? :P

I understand the point of making gold to sell (which I dont btw), but these people that want the game 100% automated, they are kinda silly and I dont get the point of paying a sub if your not gonna play part of it...

(again, this is different from people who pay sub to basically farm gold for RMT)
 
Status
Not open for further replies.
Back
Top