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

Check for Bounties (Skull of Raylend Farm)

merkd

New Member
Joined
Feb 3, 2012
Messages
38
Reaction score
0
I am looking for a profile that checks for the Act 3 Bounties (Bounty: Kill Bholen, Bounty: Kill Garganug, Bounty: Kill Gorog the Bruiser).
If they are not there, it simply resets and checks again.
 
You can use something like this. If you check the "bounty community edition" thread, you'll find a link to a google spreadsheet that has all the questId values for bounties (just create one <HaveBounty> element for each bounty you want)
For the waypoint_id, you can open the "quest tools" tab of DB and click "use waypoint" button when you're in the zone, it will print the zone's waypoint Id in the log.

And then there is the part I do not know how to do, to pause/quit the bot from profile so it lets you do your stuff, and you can just start again/unpause to continue. Hopefully someone can bring the answer here.

Code:
<Profile>
  <Name>Bounty Hunting</Name>
  <GameParams act="OpenWorld" resumeFromSave="False" isPrivate="True" numGames="-1" />

  <Order>

    <HaveBounty questId="bounty_quest_id_here">
	<UseWaypoint waypointNumber="waypoint_id_here" questId="1" /> 
	<-- Replace this by some instruction to pause/leave the bot -->
    </HaveBounty>

    <HaveBounty questId="bounty_quest_id_here">
	<UseWaypoint waypointNumber="waypoint_id_here" questId="1" /> 
	<-- Replace this by some instruction to pause/leave the bot -->
    </HaveBounty>

    <LeaveGame reason="Restarting game"/>
  </Order>
</Profile>

Edit: You can use a very long wait inside the HaveBounty tags as a pause, you'd just have to stop/start after completing your bounty to check if others are here or start scanning new games again

Code:
<WaitTimer questId="1" waitTime="99999" />
 
Last edited:
Back
Top