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: Kick's Old Posts Thread--DO NOT DELETE!

Status
Not open for further replies.
I had a problem with the quest "Stranglethorn Fever". Even my toon didn't have the item to start the quest (Gorilla Fang), it kept going out and back in the cave trying to start the event over and over again talking to NPC.

unless you sold them - it should have plenty - i'll put in a dummy check
 
I've observed an issue on a couple of toons now. The issue is in this part:
PHP:
            <If Condition="((!HasQuest(25807)) &amp;&amp; (!IsQuestCompleted(25807)))" >
                <CustomBehavior File="FlyTo" DestName="Pickup Quest" X="4926.755" Y="-2699.472" Z="1432.118" />
                <CustomBehavior File="ForcedDismount" />
        <PickUp QuestName="An Ancient Reborn" QuestId="25807" GiverName="Choluna" GiverId="41005" />
            </If>
            <If Condition="((HasQuest(25807)) &amp;&amp; (!IsQuestCompleted(25807)))" >
                <UseItem QuestName="An Ancient Reborn" QuestId="25807" ItemId="56016" X="4842.62" Y="-2811.798" Z="1444.529" />
                <CustomBehavior File="WaitTimer" WaitTime="3000" GoalText="Waiting for quest to complete {TimeRemaining}" />
            </If>
            <If Condition="((HasQuest(25807)) &amp;&amp; (IsQuestCompleted(25807)))" >
        <TurnIn QuestName="An Ancient Reborn" QuestId="25807" TurnInName="Aviana" TurnInId="41308" />
        <PickUp QuestName="The Hatchery Must Burn" QuestId="25810" GiverName="Morthis Whisperwing" GiverId="41003" />
        <PickUp QuestName="The Last Living Lorekeeper" QuestId="25830" GiverName="Vision of Ysera" GiverId="47002" />
            </If>
            <If Condition="((!HasQuest(25810)) &amp;&amp; (!IsQuestCompleted(25810)))" >
                <CustomBehavior File="FlyTo" DestName="Pickup Quest" X="4926.755" Y="-2699.472" Z="1432.118" />
                <CustomBehavior File="ForcedDismount" />
        <PickUp QuestName="The Hatchery Must Burn" QuestId="25810" GiverName="Morthis Whisperwing" GiverId="41003" />
            </If>
What I see happening is the finish of "An Ancient Reborn", then the bot not registering the quest as being finished, thus moving on to "pick up The Hatchery Must Burn". But that one doesn't become available until "An Ancient Reborn" has been turned in.

This could probably be fixed by changing the code as follows:
PHP:
            <If Condition="((!HasQuest(25807)) &amp;&amp; (!IsQuestCompleted(25807)))" >
                <CustomBehavior File="FlyTo" DestName="Pickup Quest" X="4926.755" Y="-2699.472" Z="1432.118" />
                <CustomBehavior File="ForcedDismount" />
        <PickUp QuestName="An Ancient Reborn" QuestId="25807" GiverName="Choluna" GiverId="41005" />
            </If>
            <If Condition="((HasQuest(25807)) &amp;&amp; (!IsQuestCompleted(25807)))" >
                <UseItem QuestName="An Ancient Reborn" QuestId="25807" ItemId="56016" X="4842.62" Y="-2811.798" Z="1444.529" />
                <CustomBehavior File="WaitTimer" WaitTime="3000" GoalText="Waiting for quest to complete {TimeRemaining}" />
            </If>
            <CustomBehavior File="FlyTo" DestName="Turn in Quest" X="4926.755" Y="-2699.472" Z="1432.118" />
            <If Condition="((HasQuest(25807)) &amp;&amp; (IsQuestCompleted(25807)))" >
        <TurnIn QuestName="An Ancient Reborn" QuestId="25807" TurnInName="Aviana" TurnInId="41308" />
        <PickUp QuestName="The Hatchery Must Burn" QuestId="25810" GiverName="Morthis Whisperwing" GiverId="41003" />
        <PickUp QuestName="The Last Living Lorekeeper" QuestId="25830" GiverName="Vision of Ysera" GiverId="47002" />
            </If>
The flight time should be enough to register the quest as done and the bot needs to fly there anyway.
 
here, i added it into the hasquest and !iqc

PHP:
			<If Condition="((!HasQuest(25807)) &amp;&amp; (!IsQuestCompleted(25807)))" >
				<CustomBehavior File="FlyTo" DestName="Pickup Quest" X="4926.755" Y="-2699.472" Z="1432.118" />
				<CustomBehavior File="ForcedDismount" />
		<PickUp QuestName="An Ancient Reborn" QuestId="25807" GiverName="Choluna" GiverId="41005" />
			</If>
			<If Condition="((HasQuest(25807)) &amp;&amp; (!IsQuestCompleted(25807)))" >
				<UseItem QuestName="An Ancient Reborn" QuestId="25807" ItemId="56016" X="4842.62" Y="-2811.798" Z="1444.529" />
				<CustomBehavior File="WaitTimer" WaitTime="3000" GoalText="Waiting for quest to complete {TimeRemaining}" />
				
				<CustomBehavior File="FlyTo" DestName="Turn in Quest" X="4926.755" Y="-2699.472" Z="1432.118" />
			</If>
			<If Condition="((HasQuest(25807)) &amp;&amp; (IsQuestCompleted(25807)))" >
		<TurnIn QuestName="An Ancient Reborn" QuestId="25807" TurnInName="Aviana" TurnInId="41308" />
		<PickUp QuestName="The Hatchery Must Burn" QuestId="25810" GiverName="Morthis Whisperwing" GiverId="41003" />
		<PickUp QuestName="The Last Living Lorekeeper" QuestId="25830" GiverName="Vision of Ysera" GiverId="47002" />
			</If>
			<If Condition="((!HasQuest(25810)) &amp;&amp; (!IsQuestCompleted(25810)))" >
				<CustomBehavior File="FlyTo" DestName="Pickup Quest" X="4926.755" Y="-2699.472" Z="1432.118" />
				<CustomBehavior File="ForcedDismount" />
		<PickUp QuestName="The Hatchery Must Burn" QuestId="25810" GiverName="Morthis Whisperwing" GiverId="41003" />
			</If>
			<If Condition="((!HasQuest(25830)) &amp;&amp; (!IsQuestCompleted(25830)))" >
				<CustomBehavior File="FlyTo" DestName="Pickup Quest" X="4926.755" Y="-2699.472" Z="1432.118" />
				<CustomBehavior File="ForcedDismount" />
		<PickUp QuestName="The Last Living Lorekeeper" QuestId="25830" GiverName="Vision of Ysera" GiverId="47002" />
			</If>
			<!-- End of Sethria's Roost Quests -->
 
Last edited:
well, got that solved by doing the quest manually;) but now im stuck at a flight path, i just opens the screen and does nothing after that. The log keeps repeating the following:

[10:29:41 PM:332] Changed POI to:Type: Fly, R: Update
[10:29:41 PM:520] Cleared POI - Reason Done with FP
[10:29:41 PM:520] Cleared POI
[10:29:41 PM:629] Changed POI to:Type: Fly, R: Update
[10:29:41 PM:940] Cleared POI - Reason Done with FP
[10:29:41 PM:940] Cleared POI
[10:29:42 PM:044] Changed POI to:Type: Fly, R: Update
[10:29:42 PM:276] Cleared POI - Reason Done with FP
[10:29:42 PM:276] Cleared POI
[10:29:42 PM:366] Changed POI to:Type: Fly, R: Update
[10:29:42 PM:650] Cleared POI - Reason Done with FP
[10:29:42 PM:650] Cleared POI
 

Attachments

well, got that solved by doing the quest manually;) but now im stuck at a flight path, i just opens the screen and does nothing after that. The log keeps repeating the following:

[10:29:41 PM:332] Changed POI to:Type: Fly, R: Update
[10:29:41 PM:520] Cleared POI - Reason Done with FP
[10:29:41 PM:520] Cleared POI
[10:29:41 PM:629] Changed POI to:Type: Fly, R: Update
[10:29:41 PM:940] Cleared POI - Reason Done with FP
[10:29:41 PM:940] Cleared POI
[10:29:42 PM:044] Changed POI to:Type: Fly, R: Update
[10:29:42 PM:276] Cleared POI - Reason Done with FP
[10:29:42 PM:276] Cleared POI
[10:29:42 PM:366] Changed POI to:Type: Fly, R: Update
[10:29:42 PM:650] Cleared POI - Reason Done with FP
[10:29:42 PM:650] Cleared POI

did you dc and relog? that usually causes this issue

try restarting bot
 
In eastern plaguelands, my toon loved to get stuck in the water with the bridge - zone cords 47,61 and around that there are some hills my toon also loved to just keep walking into and couldnt get around till I stepped in.

Sorry I dont have the exact cords.
 
Okay I just started using this profile few hours ago (started at lvl 65) and I changed that option that u said for characters in the middle way.

The bot started off in Terokkar and from what I can see it completed only 6 quests I was away from home but it was stuck on "picking up quest item" or something like that, he was farming the Cabals near the Ring of Observerance, but this could be my fault since the option for looting wasnt set on. A quest item that starts a quest if I recall corectly.

Beside that after I stopped/started it again it flied to Nagrand and started farming ogres, I guess that's for the reputation with Kurenai? If that's the case there's no point in doing that because there is a quest that's available in Kurenai at Unfriendly its 2 quests actually and they bring you all the way up to friendly so you might want to skip the farming ogre part ^^ .

Do my eyes deceive me is the name of the quest

I agree that the Kurenai rep grind could be changed (unless it in fact can't be changed lol)... but it only takes like 30 minutes? probably less.

Running all the way through Zangarmarsh to get the going to Telaar quest is even worse though because you get no exp and it's a really really long run.

My main problem... which is now the 2nd character that's done this... I get stuck on "HELP!" - talking to Arechron for hours until I get back to manually do the quest. Attached log.



Edit: Thanks Kickazz. I now have more 85s to spend my money on.
 

Attachments

Last edited:
I agree that the Kurenai rep grind could be changed (unless it in fact can't be changed lol)... but it only takes like 30 minutes? probably less.

Running all the way through Zangarmarsh to get the going to Telaar quest is even worse though because you get no exp and it's a really really long run.

My main problem... which is now the 2nd character that's done this... I get stuck on "HELP!" - talking to Arechron for hours until I get back to manually do the quest. Attached log.

i'm not searching through a 10mb log

... get me a smaller log
 
Hi Kickazz really nice work you got going on ! just a little issue so it seems, atleast for me.

The thing is i have gotten to Howling Fjord and now when i start the Quest profile the character just stands there and looks, and the honorbuddy log says "Activity: Downloading Mesh..." all the time.

I tried the grind profile aswell but didn't go as planned, the character walks out in the water and just swims around, all along the cost up to grizzly hills, and i am 68, so i should be good where i am right ?
 
[12:38:05:377] Could not generate full path from {277.9836, 1669.526, 346.6815} to {229.3333, 1693.667, 380.0191} (time used: 565 milliseconds)
 
The Quest " Tahlet the tacticen ", isnt it possible to use a QB that hold the Lions in the middle of the field and then press 2 and 3 on cooldown? never saw to fail this quest.
possible to use a QB from another quest where you use this vehicle bar?

The Quest " The Defense of Nahom" is the same. If there is a QB where its possible to set the pointer and then the Abilitys 1-2-3 to press in a time, like every 15 or 25 sec. i think it will work afk. if you got a QB for this, i can try this two quests, got some toons soon in this area.
 
Last edited:
i'm not searching through a 10mb log

... get me a smaller log


Sorry about that... There's actually 2 stick points within that. I edited out the majority of the "Quest completed" and repeated interaction, and broke it in to the two parts where I stopped the bot to fix the first one.

Hopefully this is sufficient. If it isn't let me know. I am continuing to try to learn the language within the logs and profiles so that I can be more helpful. Thank you for your patience.
 

Attachments

Status
Not open for further replies.
Back
Top