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

Staff of Herding set of profiles!!!

Let me know if my profiles helped you in your Quest for the Staff!?!?

  • Yes

    Votes: 1 100.0%
  • No

    Votes: 0 0.0%
  • I saved a few click!

    Votes: 0 0.0%

  • Total voters
    1
Hello Hellcom and Marks1,

I will test this tonight when I'm back home.
This is definitely not the right behavior if the bot does not search the entire level 2 of the Cavern of Frost.

I will check to update the Profile as soon as possible.
Thank you for reporting those to me.
 
Exact same thing happens to me, enters level two then stops.

Can confirm this issue. Also had an issue where it didn't actually talk to the guy outside the Liquid Rainbow cave when he appeared. Just waited for awhile and left the game.

Also, I wanted to give a big thanks to matamort. I had the staff on my softcore characters and I really did not feel like grinding it out on my hardcore characters again. This profile is a godsend and I'm really happy someone put the time into making this work for everyone else.
 
Exact same thing happens to me, enters level two then stops.

Code:
==== Search Exit inside Caverns of Frost Level 1 ====
[ExploreDungeonTag] ExploreDungeon Started
[ExploreDungeonTag] Found exitNameHash 151580180!
Interacting with object g_Portal_Oval_Orange-5394
Stopping the bot.
Session lasted for: 00:00:28.8350103
Chose Trinity as your combat routine
Bot Thread Ended. Was this requested?

same here!
 
Last edited:
For those of you who have issue with the Gibbering Gemstone profiles.

I will upload a new version today. My bot is currently running my latest version of the profiles since
yesterday. When I woke up this morning the bot was stuck in the field of slaughter because he got
drag to far from the portal location because of mob density in front of the cave.

But I found 1 more Gibbering Gemstone over night so with a Gold Inactivity we can at least AFK.

My issue at the moment is with the Explore tag. I look for the actor ID instead of the nameHash and
the 2 portal used the same ActorID and a different nameHash. So when you enter in the Cave level 1,
the explore is instantly finish because he found the Actor id in is range.

Tonight I will provide an updated version of the Gibbering Gemstone and Liquid Rainbow.
For Solo Adventure mode and Adventure mode.
 
My bot is currently running my latest version of the profiles since
yesterday. When I woke up this morning the bot was stuck in the field of slaughter because he got
drag to far from the portal location because of mob density in front of the cave.

But I found 1 more Gibbering Gemstone over night so with a Gold Inactivity we can at least AFK.

My issue at the moment is with the Explore tag. I look for the actor ID instead of the nameHash and
the 2 portal used the same ActorID and a different nameHash. So when you enter in the Cave level 1,
the explore is instantly finish because he found the Actor id in is range.

Glad to hear you're working on the issue. I ended up rewriting the Adventure mode profile for Gibbering Gemstone using your profile as a base. The new one I'm using now seems to be working flawlessly, so I'll post it here in hopes that it can help you or anyone else. The problem you say you're having with the actor IDs doesn't seem to occur in the profile I modified, so take a look and see if you can get anything from it (or even just use it). This modified profile has some additional advantages over the original profile:
  • Bounties are detected while you are still in town, allowing you to leave the game before going through the teleport load screen.
  • The method for entering Caverns of Frost from Fields of Slaughter is different so that the bot does not become stuck if it wanders away from the entrance while following a monster.
  • PriorityScenes are used in Fields of Slaughter so it doesn't need to go check a bunch of points that the cave will not be at if the correct scene is ever loaded into memory.
  • Tyrael is blacklisted so we don't run up and talk to him all the time.

Code:
<Profile>
	<!--
	Gibbering Gemstone - Diablo Wiki
	http://www.diablowiki.net/Gibbering_Gemstone
	-->
	<Name>Staff of Herding - Gibbering Gemstone [Adventure]</Name>
	<GameParams act="OpenWorld" difficulty="Normal" resumeFromSave="False" isPrivate="True" numGames="-1"  />
	<KillMonsters>True</KillMonsters>
	<PickupLoot>True</PickupLoot>

	<TargetBlacklists>		
		<TargetBlacklist actorId="114622" /> <!-- Tyrael -->
	</TargetBlacklists>

	<Order>
		<ToggleTargeting questId="1" combat="True" killRadius="45" looting="True" lootRadius="100" />
		<TrinityMaxDeaths questId="1" max="2" />

		<!-- Check if any bounties related Icefall Caves have spawned, leave if true -->

		<!-- Bounty: The Cursed Glacier (X1_Bounty_A3_Battlefields_Event_DeathChill) -->
		<If condition="HasQuest(369851)">
			<If condition="not Me.IsInTown">
				<TrinityTownPortal questId="1" />
				<WaitTimer questId="1" waitTime="1000" />
			</If>
			<LeaveGame reason="Found Bounty: The Cursed Glacier (Caverns of Frost cannot spawn)" />
		</If>

		<!-- Bounty: Clear Icefall Caves -->
		<If condition="HasQuest(346192)">
			<If condition="not Me.IsInTown">
				<TrinityTownPortal questId="1" />
				<WaitTimer questId="1" waitTime="1000" />
			</If>
			<LeaveGame reason="Found Bounty: Clear Icefall Caves (Caverns of Frost cannot spawn)" />
		</If>

		<!-- Teleport to the necessary area -->
		<While condition="CurrentLevelAreaId != 155048 and CurrentLevelAreaId != 112565 and CurrentWorldId != 189259 and CurrentWorldId != 221688">
			<UseWaypoint waypointNumber="32" questId="1" />
			<WaitTimer waitTime="1000" questId="1" />
		</While>

		<!-- Fields of Slaughter -->
		<If condition="CurrentWorldId == 95804">
			<!-- Move from the Bridge of Korsikk to Fields of Slaughter -->
			<If condition="CurrentLevelAreaId == 155048">
				<SafeMoveTo questId="1" x="3331" y="597" z="0" pathPrecision="5" pathPointLimit="250" statusText="" />
			</If>

			<!-- Explore for entrance to Caverns of Frost Level 1 -->
			<TrinityExploreDungeon questId="1" until="ObjectFound" exitNameHash="942020622" actorId="176003" pathPrecision="25" boxSize="25" boxTolerance="0.01" objectDistance="50">
				<PrioritizeScenes>
					<PriorityScene sceneName="Entrance" />
				</PrioritizeScenes>
				<IgnoreScenes>
					<IgnoreScene sceneName="_Chokepoint" />
					<IgnoreScene sceneName="a3dun_Bridge_" />
				</IgnoreScenes>
			</TrinityExploreDungeon>

			<!-- Interact with the entrance -->
			<MoveToActor questId="1" actorId="176003" interactRange="12" name="g_Portal_Circle_Blue-1156" isPortal="True" destinationWorldId="189259" pathPrecision="5" pathPointLimit="250" statusText="" /> 
			<WaitTimer questId="1" waitTime="500" />
		</If>

		<!-- Caverns of Frost Level 1 -->
		<If condition="CurrentWorldId == 189259">
			<!-- Explore for entrance to Caverns of Frost Level 2 -->
			<TrinityExploreDungeon questId="1" until="ExitFound" exitNameHash="151580180" actorId="176038" pathPrecision="25" boxSize="25" boxTolerance="0.1" objectDistance="45">
				<PrioritizeScenes>
					<PriorityScene sceneName="Exit" />
				</PrioritizeScenes>
				<IgnoreScenes>
					<IgnoreScene sceneName="_N_" />
					<IgnoreScene sceneName="_S_" />
					<IgnoreScene sceneName="_E_" />
					<IgnoreScene sceneName="_W_" />
				</IgnoreScenes>
			</TrinityExploreDungeon>

			<!-- Interact with the entrance -->
			<MoveToActor questId="1" actorId="176038" interactRange="15" isPortal="True" destinationWorldId="221688" pathPrecision="5" pathPointLimit="250" /> 
			<WaitTimer questId="1" waitTime="500" />
		</If>

		<!-- Caverns of Frost Level 2 -->
		<If condition="CurrentWorldId == 221688">
			<!-- Fully explore the area in hopes of running into Chiltara -->
			<TrinityExploreDungeon questId="1" stepId="1" until="FullyExplored" boxSize="15" boxTolerance="0.1" pathPrecision="10" ignoreMarkers="True"></TrinityExploreDungeon>
			<WaitTimer questId="1" waitTime="2000" />
		</If>

		<!-- Use Town Portal if we aren't already in town -->
		<If condition="not Me.IsInTown">
			<TrinityTownPortal questId="1" />
			<WaitTimer questId="1" waitTime="1000" />
		</If>
		<LeaveGame reason="All finished!" />
	</Order>
</Profile>

<!--
	Bastion's Keep Stronghold
	World: (172909) LevelArea: a3dun_hub_keep (92945)

	The Bridge of Korsikk
	World: A3_Battlefields_02 (95804) LevelArea: A3_Bridge_Choke_A (155048)
	<If condition="CurrentWorldId==95804 and CurrentLevelAreaId==155048">

	Fields of Slaughter
	World: [sno unknown] (95804) LevelArea: A3_Battlefield_B (112565)
	<If condition="CurrentWorldId==95804 and CurrentLevelAreaId==112565">

	Caverns of Frost Level 1
	World: a3dun_IceCaves_Random_01 (189259) LevelArea: A3_dun_IceCaves_Random_01 (189345)
	<If condition="CurrentWorldId==189259 and CurrentLevelAreaId==189345">

	Caverns of Frost Level 2
	World: a3dun_IceCaves_Random_01_Level_02 (221688) LevelArea: A3_dun_IceCaves_Random_01_Level_02 (221702)
	<If condition="CurrentWorldId==221688 and CurrentLevelAreaId==221702">

	Icefall Caves
	World: a3dun_IceCaves_Timed_01 (189910) LevelArea: A3_dun_IceCaves_Timed_01 (191078)
	<If condition="CurrentWorldId==189910 and CurrentLevelAreaId==191078">

	[1E6A0C20] GizmoType: PortalDestination Name: Start_Location_0-2748 ActorSNO: 5502 Distance: 0.07867575 Position: <3320.286, 550.5212, -3.762003> Barracade: False Radius: 6.631498
	[1E6A106C] GizmoType: Portal Name: g_Portal_Circle_Blue-2749 ActorSNO: 176003 Distance: 12.81864 Position: <3307.468, 550.6309, -3.698896> Barracade: False Radius: 12.81815
-->

View attachment Custom_Adventure_GibberingGemstone.xml
 
Last edited:
thanks dude!
I'm running this right now and no stucks for the last hour!


edit: do I have to change lootrule or does the bot pick up gemstone automaticly?
 
do I have to change lootrule or does the bot pick up gemstone automaticly?

Mine picked it up after about 2 hours of farming. I didn't do anything special from my normal loot settings, my bot was set to loot all rares, all legendary items, and all materials of any quality.
 
Curiosity, does anyone else have issues with the bot not logging/or teleporting to town and logging and then redoing the liquid rainbow part? It just goes there and stand in the same spot when the bot stops.
 
black mushroom profile is bad...
after clearing the whole area, it just wanders around over an over....untill my gold timer kicks in....it then starts over again...

something v. odd in it...lots of back tracking etc...
please see Black Mushroom - Diablo Wiki for locations and search these, if not found, move to next profile
 
Curiosity, does anyone else have issues with the bot not logging/or teleporting to town and logging and then redoing the liquid rainbow part? It just goes there and stand in the same spot when the bot stops.

This.. just stands there when he doesn't find the merchant.
 
Any word on a fix with this profile? Would love to get the Staff so that I can get my spectrum and hamburger transmogs
 
Gibbering worked for me so far with latest db/trinity, got it in less then 5 runs luckily after doing 20ish by hand. I am testing the adventure mode rainbow and so far its found him 3 times, Once it got to level two then zoned back to level 1 and tried to exit game before i stopped bot. Second time, it did not interact with zohan merchant to unlock the cave. third time, it entered cave and exploredlevel 2 but no rainbow. Guessing might be best off watching this profile while its ran, as for mushroom I only ran it like 2 times and each time it wandered all of level 1 nonstop, lots of back tracking and such never left the game on its own had to forefully leave via inactivity timer.
 
so my last post was season 1, anyone succesfully find a gemstone season 2 yet? the campaign mode profile for it doesn't seem to work, gets to lvl 2 caverns of frost and bot stops most of the time. Adventure mode works, So far I am probably up to 20 chiltara kills with nada. Heard old rumors of bugs, but considering it worked as of my last post I assume getting it in a few quick botted runs I got lucky. As this time around, I botted the shinbone, rainbow, and mushrooms and shinbone/mushrooms were first try, rainbow took 4 runs. Just curious if anyone else cares about this stuff, since spectrum transmog is cool and relying on rainbow goblins blows.

Any chance theres any room for improvements on the profile for gemstone only or is this as good as it will get assuming no one can look over it that has some better knowledge? if theres a cavern of frost to the immediate left, where the profile paths first, it works just fine, if its on the right side. it takes the bot a couple of minutes just to get to it because theres no zerg mode, and theres hundreds of monsters that stop the bot so it can kill them over and over.


edit - got the gemstone after about 2-3 hours of running, have to babysit the gibbering gemstone profile to make it work(almost better off using turbohud or just plain running manually) whatever changes were made to trinity or QT, the profile does not get close enough to the level 2 caverns of frost in order to enter it, leading to the bot running back and forth lvl 1 map til timeout. you can force the bot in without clicking the next level, just by dragging him on top of the next level(you literally need to be on top of it for the bot to 'detect' it) otherwise you can just pause the bot, click in and unpause and it will detect each level again. Chiltara is a smug bitch with low ass drop rate! now for spectrum again.
 
Last edited:
I was hoping this was going to be updated to dude, but now im in the middle of doing it all myself lol
 
I just started running this for the gemstone and it seems to make it to the cave just fine but then goes to the second story and it just stops and says bot ended was this a request? I am very new to this and I would just seriously like to get my staff but its annoying to keep farming and I don't have the time. would ya please help me out.
 
I just started running this for the gemstone and it seems to make it to the cave just fine but then goes to the second story and it just stops and says bot ended was this a request? I am very new to this and I would just seriously like to get my staff but its annoying to keep farming and I don't have the time. would ya please help me out.

As far as we know this or parts of this profile doesn't work, Last update was 24.05.2014
 
I see there was an update to this on 7.22.15, but it still doesn't seem to work. When it gets to 2nd level of cave of frost for Gibbering gemstone, the bot just ends. The adventure mode doesnt work either as he teleports and then keeps trying to teleport to the same spot. Any helpw ould be great
 
Install the latest Trinity and BETA DB version for optimize result

I see there was an update to this on 7.22.15, but it still doesn't seem to work. When it gets to 2nd level of cave of frost for Gibbering gemstone, the bot just ends. The adventure mode doesnt work either as he teleports and then keeps trying to teleport to the same spot. Any helpw ould be great

Hi,

I just release a new version of the Adventure profiles and remove all the other obsolete profile. I do not play Campaign mode anymore so I will not support those profiles. If you still need it because you do not own ROS please send me a private message and I will send you the last copy I have.

I am running the Staff of Herding profile random routine with a brand new Champion in Hardcore and Season 3. So far he manage to build up the staff before reaching the level 40. 100% AFKable so far when ExperienceInactivity is enable and set to 200. I also find out that using the Trinity Fork post by BuddyMe increase the success rate of each run and lower the chance to die.
[Plugin] Trinity Fork (Kite/Avoidance)
 
I see there was an update to this on 7.22.15, but it still doesn't seem to work. When it gets to 2nd level of cave of frost for Gibbering gemstone, the bot just ends. The adventure mode doesnt work either as he teleports and then keeps trying to teleport to the same spot. Any helpw ould be great

same here, bot ends and uses town portal as soon as it gets to 2nd level.
 
same here, bot ends and uses town portal as soon as it gets to 2nd level.
The issue is the following. It seem that DB, Trinity and Questtool where updated and the TrinityExploreDungeon tag do not support
FullyExplored anymore.

I have the fix at home and I will publish it tonight. I use the new BountyActorFound to check for the Exit portal or Chiltara actorid.
 
Back
Top