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!

X,Y,Z Randomiser

MiseryInc

New Member
Joined
Jul 31, 2013
Messages
13
Hello,

Im thinking about getting back into the botting scene again but want to do it properly without the normal HIGH risk of getting banned specifically for GatherBuddy.

Is the ban rate still high even if you act within "human like behaviour" boundaries?

Also, whats the (only way I can describe it) plugin called for randomising the X,Y,Z co-ordinates of GatherBuddy slightly so it looks as if, you arent following the EXACT same path?

Many thanks,
M
 
Never really tried this, but you can try this inside the gatherbuddy profile

<RandomizeHotspots>true</RandomizeHotspots>
 
<RandomizeHotspots>true</RandomizeHotspots>
won't work. It will randomize the hotspots in order. not the single hotspots itself.
examlpe:
Hotspot# 1,2,3,4,5 will be randomized to Hotspot# 5,2,4,1,3

Randomizing x,y,z will be tricky, cos HB will try to reach the hotspot. if the random hotspot is not reachable (10 meters in the air, or on an obstacle), HB will stuck.

edit: forget the following. it is for Questing botbase. not for gatherbuddy.

A possibility is, that you do a number of hotspots for yourself, and randomize, which hotspot will be chosen.
example:
PHP:
<If Condition="Chance(25)">
						<RunTo X="1433.899" Y="43.04556" Z="56.6673" />
						<ElseIf Condition="Chance(25)">
							<RunTo X="1439.997" Y="43.77538" Z="56.6677" />
						</ElseIf>
						<ElseIf Condition="Chance(25)">
							<RunTo X="1439.857" Y="29.09636" Z="56.66845" />
						</ElseIf>
						<Else>
							<RunTo X="1434.605" Y="30.1355" Z="56.66845" />
						</Else>
					</If>

that snip will chose 1 of 4 random hotspots and ignore the other 3.
 
check out the store honorbuddy > plugins > gathering > rndbuddy
just looked at above link made by same person. the one im talking about might be outdated not sure. best of luck
 
Last edited:
Just something for everyone. Gatherbuddy will automatically randomize the exact hotspot already and has had the feature since beginning of mop if not earlier. Randomization factor is what you would need to adjust in the GB settings.

All's well that Heals well,
Bennyquest
 
I stopped using GatherBuddy in WoD, you don't need that anymore to farm herbs or ore. You need a whole lot of alts and a garrison bot.
 
MoveTo and FlyTo (and I think RunTo) supported AllowedVariance, AKA you can specify a yard range from the point where honorbuddy will go to instead. Just make the variance huge (and give it a decent 10+ tolerance to avoid stuck issues) and it has a more generic path. Bonus of the arrivaltolerance is that it makes HB faster because it doesn't stop at hotspots and smooth(ish)ly goes between them.
 
Just something for everyone. Gatherbuddy will automatically randomize the exact hotspot already and has had the feature since beginning of mop if not earlier. Randomization factor is what you would need to adjust in the GB settings.

All's well that Heals well,
Bennyquest
Only horizontal, not Z coord.
 
Here's what I did to do this:

Code:
<CustomBehavior File="RunCode" Type="Definition" Code="int randomCount = 0;" />

<CustomBehavior File="RunCode">
	<![CDATA[ 
		randomCount = 0;
	]]>
</CustomBehavior>

<While Condition="[INSERT YOUR CONDITION]">
  <CustomBehavior File="RunCode">
  	<![CDATA[ 
  		randomCount= new Random().Next(1, 4);
  	]]>
  </CustomBehavior>

  <If Condition="randomCount== 1">
	do stuff
  </If>
  <If Condition="randomCount== 2">
        do different stuff
  </If>
  <If Condition="randomCount == 3">
	do more different stuff
  </If>	
  <If Condition="randomCount== 4">
	Even more different stuff
  </If>	

</While>
 
Back
Top