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!

[Request] Isle of Giants - Giant Dinosaur Bone turn in.

TheDude111

New Member
Joined
Oct 21, 2014
Messages
7
Hello! After finding a profile to grind it (10 eur on the store) I now need a profile that will stand at the undead troll in the cave and turn in all of my bones, 1 by 1, in exchange for the 1g 14s you get for that.
Doing this with 9999 is mind numbingly boring, and I think it'd be a fairly simple profile to make. He doesnt need to move or anything, just turn in a quest over and over again.

Thanks!
 
as far as I know, it's a daily quest and you can only turn in ONE single bone per day

that said:

Code:
<HBProfile>

<Name>bones</Name>


<MinDurability>0.6</MinDurability>
<MinFreeBagSlots>1</MinFreeBagSlots>


<MinLevel>100</MinLevel>
<MaxLevel>101</MaxLevel>


<MailGrey>false</MailGrey>
<MailWhite>false</MailWhite>
<MailGreen>false</MailGreen>
<MailBlue>false</MailBlue>
<MailPurple>false</MailPurple>


<SellGrey>true</SellGrey>
<SellWhite>false</SellWhite>
<SellGreen>false</SellGreen>
<SellBlue>false</SellBlue>
<SellPurple>false</SellPurple>




 <QuestOrder>
 
 <While Condition="true">
 
	
	<While Condition="GetItemCount(94288) >= 20">
		<CustomBehavior File="NoCombatMoveTo" X="6049.106" Y="1422.105" Z="26.40157"   />
		<CustomBehavior File="InteractWith" MobId="70022" Range="5" />
		<CustomBehavior File="RunMacro" Macro="/script SelectGossipAvailableQuest(1)" WaitTime="200" />
		<CustomBehavior File="Misc\RunLua" Lua="QuestFrameCompleteButton:Click()" WaitTime="200" />
		<CustomBehavior File="Misc\RunLua" Lua="QuestFrameCompleteQuestButton:Click()" WaitTime="200" />
	</While>
	
</While>
	   
</QuestOrder>
</HBProfile>
 
Last edited:
Because I'm bored, if it were possible it'd be:
PHP:
<MoveTo Spot/>
<While Condition="GetItemCount(Bones) &gt; 0">
<CustomBehavior File="InteractWith" MobId="Dude" InteractByGossipOptions="Whichever One it is (probably 1)"/>
<CustomBehavior File="RunMacro" Macro="/run CompleteQuest()"/>
</While>

I think /run CompleteQuest() is the macro to turn in, don't remember. If it's continue before complete you'd need a macro to accept the first option (can't remember what it is). Maybe also one to hit accept on the confirm box which is another macro.
 
Back
Top