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!

HB ARCHIVES: Feedback for Honorbuddy Improvements--DO NOT DELETE!

For Questing; the bot should take into account the Hearthstone location when navigating to a new WoWPoint... if the set Hearthstone Location is closer than the "Walking" distance then the bot should utilize the Hearthstone, this would greatly increase the speed of navigation and also bridge a cap between Continents.
 
In Raids:

When you walk between bosses the bot walks in a jerking type of way. It takes a couple of steps and then pauses, takes a couple of steps and then pauses. I noticed there were about 6 other bots doing the exact same thing in the raids.
 
For Questing; the bot should take into account the Hearthstone location when navigating to a new WoWPoint... if the set Hearthstone Location is closer than the "Walking" distance then the bot should utilize the Hearthstone, this would greatly increase the speed of navigation and also bridge a cap between Continents.

This is already possible if the profile writer implements it.

As a profile writer, the very first thing you must do in a profile is write conditions that will trigger for any character in the game, in any location. All of those conditions will eventually cause your character to move to a specific location, no matter which condition triggers. In order to move a character around in the game, you must know where the character is. By forcing the character to a specific location, you now know where it is, and can plot a course of action to move it where you want it. During questing, the profile writer knows the general location of specific quest. He also knows the location of the next quest. With this condition (<If Condition="Me.HearthstoneAreaId == 5628" > ) you can determine where the hearth is set and then tell HB whether to run there or hearth/move there.

As I have said before, the bot has been written in such a way that it can perform many more things than the profiles you currently find on the forums. But the profiles/bot only has as much AI as the profile writer implements.
 
Would love it to function so that you could make i questing, but also queuing up for pvp, so that it would just switch between those when possible
 
i'm using PQR for the moment, since i really just can't play without a bot anymore, even doing rotations is killing me. while i understand that PQR is much lighter than HB, have less security and certainly needs less programming, i love the fact that it is so fast on loading. and the feature i love instantly was, i can switch combat routines on the fly so fast. i would really love tyrael as a botbase with the feature to switch CRs on the fly.
 
This is already possible if the profile writer implements it.

As a profile writer, the very first thing you must do in a profile is write conditions that will trigger for any character in the game, in any location. All of those conditions will eventually cause your character to move to a specific location, no matter which condition triggers. In order to move a character around in the game, you must know where the character is. By forcing the character to a specific location, you now know where it is, and can plot a course of action to move it where you want it. During questing, the profile writer knows the general location of specific quest. He also knows the location of the next quest. With this condition (<If Condition="Me.HearthstoneAreaId == 5628" > ) you can determine where the hearth is set and then tell HB whether to run there or hearth/move there.

As I have said before, the bot has been written in such a way that it can perform many more things than the profiles you currently find on the forums. But the profiles/bot only has as much AI as the profile writer implements.

Yep, already know and done this but it would be also better suited inside the bot then to do it in If statements... although I'll still be adding this as some features takes many months to implement.
 
EXPLORER- it would be amazing to have a script that explores the entire WOW, like every single zone im sure that would be very easy to make also but would be great to unlock many achievments.
 
For Questing; the bot should take into account the Hearthstone location when navigating to a new WoWPoint... if the set Hearthstone Location is closer than the "Walking" distance then the bot should utilize the Hearthstone, this would greatly increase the speed of navigation and also bridge a cap between Continents.

Not only that but add portal functionality to completely get rid of the whole starting bot in wrong continent problem

Sent from my SPH-L710 using TheBuddyForum mobile app
 
I was waiting for pet battle for 1mio years now, so it is actualy one of the first priority thing... i am only pvp?er and farming abit, thats all what i am doing. Using bot in pvp becus of the other mofos in bg :) like my self now :) 90% of my online time is in pvp, with or without bot... if pet battle comes, will it take more than 50% of the time..
 
Not only that but add portal functionality to completely get rid of the whole starting bot in wrong continent problem

Sent from my SPH-L710 using TheBuddyForum mobile app

Again something the bot can currently do, if the profile writer chooses to add it.

Code:
<!-- Outland -->
			<If Condition="Me.MapId == 530">
				<CustomBehavior File="Message" 
								Text="We are in Outland." 
								LogColor="Cyan" />
								
				<CustomBehavior File="Message" 
								Text="Moving to Shattrath portals." 
								LogColor="Lime" />				
								
				<!-- Fly to shattrath -->
				<CustomBehavior File="FlyTo" X="-1977.775" Y="5373.526" Z="54.82305" />

				<!-- Go to the ground -->
				<CustomBehavior File="FlyTo" X="-1920.137" Y="5400.772" Z="-12.42688" />
				
				<!-- Alliance -->
				<If Condition="Me.IsAlliance">
					<CustomBehavior File="Message" 
									Text="We are Alliance." 
									LogColor="Cyan" />
									
					<CustomBehavior File="Message" 
									Text="Taking Stormwind portal." 
									LogColor="Lime" />		
								
					<!-- Portal to stormwind -->
					<CustomBehavior File="FlyTo" X="-1892.733" Y="5390.708" Z="-12.42776" />
					
					<!-- Interact with stormwind portal -->
					<CustomBehavior File="InteractWith" 
									MobId="183325" 
									ObjectType="Gameobject" 
									Range="55.1" 
									NumOfTimes="1"
									WaitTime="10000" 
									X="-1894.18921" Y="5387.93945" Z="-12.4282484" />
					
					<!-- Horde -->
					<ElseIf Condition="Me.IsHorde">
						<CustomBehavior File="Message" 
										Text="We are Horde." 
										LogColor="Cyan" />
									
						<CustomBehavior File="Message" 
										Text="Taking Orgrimmar portal." 
										LogColor="Lime" />	
					
						<!-- Portal to org -->
						<CustomBehavior File="FlyTo" X="-1897.926" Y="5395.339" Z="-12.42868" />
						
						<!-- Interact with orgrimmar portal -->
						<CustomBehavior File="InteractWith" 
										MobId="183323" 
										ObjectType="Gameobject" 
										Range="55.1" 
										NumOfTimes="1"
										WaitTime="10000" 
										X="-1899.44971" Y="5393.01" Z="-12.4283171" />
					</ElseIf> <!-- Horde -->
				</If> <!-- Alliance -->
			</If> <!-- Outland -->
 
For Questing; the bot should take into account the Hearthstone location when navigating to a new WoWPoint... if the set Hearthstone Location is closer than the "Walking" distance then the bot should utilize the Hearthstone, this would greatly increase the speed of navigation and also bridge a cap between Continents.

This code can be used to determine where your hearth is set.
Code:
<If Condition="(Me.HearthstoneAreaId == 3538) || (Me.HearthstoneAreaId == 3536)">

The profile writer can then determine which would be better, hearth/moveto or just moveto.
 
I would like to see most the ability to do group questing. A lot of people RAF accounts and questing is the safest way up to 90. As of now, the only real ways to take advantage of HB and RAF is through dungeons and grinding. If there was a way to seamlessly implement the ability to recognize each others' quests and follow them step by step (maybe tapping into the quest book and noticing the [1] next to the quest name, denoting a group member has that quest) would be such a huge turn on i'm sure to the entire HB community.
 
I hope you take this the right way. It may be that I'm wrong, but I want to check something. I perceive that it takes longer and longer to get started HB for every small or big update, is that so and if so, what is that? I really appreciate everything else you do for us gamers.
 
dont even know why i should say this, since it has been said a million times allready, and you dont fix it.

bg buddy, fix that crap, more random paths, and as seen on the pvp forum now... this :

Mines : bots jump down after the start, run back against the wall and then turn again and follow theyre way into the mines. No normal human being does that. At the start you can see em all standing at the same position facing the same direction.

Warsong: Bot runs out of the first gate, runs back in and then out into the game.

Gilneas: all bots gather around the first flag, for alliance i know that is LH. Horde i dont know. They actually dont pack no more, but stand on a distance from eachother, but its noticeable.

Eye of the storm: Bots run down ( alliance ) and face MT on theyre mount. On the stairs. The second MT caps, they turn and run DR.

Twin peaks : Bots run out of the starter room, just past the gate, and run back in, out, in again and then go "into the game"

Temple of Kot: Bots run out of the gate, back in to the gate, then halfway into the game, back to the gate again and then follow theyre way into the game.

source: Bots in PvP - Forums - World of Warcraft

FiX IT?
 
Not sure if anyone has mentioned this yet, but before adding TO the bot, I think that the most important thing is going through it and maybe streamlining what is already available. Since I began using it it seems a little more bulky and as if it takes up more CP usage. I know from personal experience (albeit a different program altogether), that the more I improve on it, the more I add onto the newest version, seldomly going back to cull out old stuff, the bigger it gets. Just a thought and thanks for the time on development!
 
Again something the bot can currently do, if the profile writer chooses to add it.

Code:
<!-- Outland -->
<If Condition="Me.MapId == 530">
<CustomBehavior File="Message" 
Text="We are in Outland." 
LogColor="Cyan" />

<CustomBehavior File="Message" 
Text="Moving to Shattrath portals." 
LogColor="Lime" />

<!-- Fly to shattrath -->
<CustomBehavior File="FlyTo" X="-1977.775" Y="5373.526" Z="54.82305" />

<!-- Go to the ground -->
<CustomBehavior File="FlyTo" X="-1920.137" Y="5400.772" Z="-12.42688" />

<!-- Alliance -->
<If Condition="Me.IsAlliance">
<CustomBehavior File="Message" 
Text="We are Alliance." 
LogColor="Cyan" />

<CustomBehavior File="Message" 
Text="Taking Stormwind portal." 
LogColor="Lime" />

<!-- Portal to stormwind -->
<CustomBehavior File="FlyTo" X="-1892.733" Y="5390.708" Z="-12.42776" />

<!-- Interact with stormwind portal -->
<CustomBehavior File="InteractWith" 
MobId="183325" 
ObjectType="Gameobject" 
Range="55.1" 
NumOfTimes="1"
WaitTime="10000" 
X="-1894.18921" Y="5387.93945" Z="-12.4282484" />

<!-- Horde -->
<ElseIf Condition="Me.IsHorde">
<CustomBehavior File="Message" 
Text="We are Horde." 
LogColor="Cyan" />

<CustomBehavior File="Message" 
Text="Taking Orgrimmar portal." 
LogColor="Lime" />

<!-- Portal to org -->
<CustomBehavior File="FlyTo" X="-1897.926" Y="5395.339" Z="-12.42868" />

<!-- Interact with orgrimmar portal -->
<CustomBehavior File="InteractWith" 
MobId="183323" 
ObjectType="Gameobject" 
Range="55.1" 
NumOfTimes="1"
WaitTime="10000" 
X="-1899.44971" Y="5393.01" Z="-12.4283171" />
</ElseIf> <!-- Horde -->
</If> <!-- Alliance -->
</If> <!-- Outland -->

I know it can be done as most PB profiles do it already but I'm talking about something built into HB not into the profile itself. So say you start an outlands farming profile in stormwind HB already knows its not in outlands so it takes the portal to blastedlands moves about 1000 feet ahead and enters outlands then begins farming. Basically putting the farming profile on the back burner until a start zone continent or coordinates have been reached.

Sent from my SPH-L710 using TheBuddyForum mobile app
 
Back
Top