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.
anyone have any idea how to use an item, I.E. turn crystallized earth into eternal earth.
this is what I use in my 1-525 mining/herb profile.
if InbagCount(37701) >= 10
Lua.DoString("for bag = 0,4 do for slot=1,GetContainerNumSlots(bag) do local id = GetContainerItemID(bag,slot) or 0 if id == 37701 then UseContainerItem(bag,slot) end end end");
 
What do I have to use to enable repeat type banker? As if I use it now, it does not count any items I already have in my bank/inventory etc. I got the datastore addon.

PHP:
 <?xml version="1.0" encoding="utf-8" ?> 
- <Professionbuddy ChildrenCount="231">  <CastSpellAction Entry="58346" Repeat="2" RepeatType="Banker" />   <CastSpellAction Entry="58344" Repeat="2" RepeatType="Banker" />   <CastSpellAction Entry="58342" Repeat="2" RepeatType="Banker" />   <CastSpellAction Entry="57162" Repeat="2" RepeatType="Banker" />     </Professionbuddy> 
 
-
 
Last edited:
Hello,

I am trying to run this but i have no idea how to do it.. can you please explain this in detail as i am not that computer savvy

I don't see a plugins folder in any of my wow folder

Thank you in advance ! :)
 
does PB have anything to do with clients which are NOT in english?

i'm having problems as it is not selling.. or buying anything from the AH..

also i noticed it is using the Mailbox outside the AH while being inside the AH ... in stormwind.. very bottish imo
 
oh, you *don't* have to complete that quest for the others to be offered? i thought you did
Nopes, the other quests appear at level 83, same time as "The Explorers" appears. So I wouldn't worry to much about it to be honest. Don't need it to get the achievement and the XP is hardly worth it.
I'm not sure if you can put an <if> on character level.... could just do that and if you miss the quest there's no harm done.
 
Running my second toon through this profile. Hit The Reliquary again and i'm only 82.

I started the profile when i was almost freshly 82(bout 2-3 bars in).
 
So far starting from 0 at both Herbalism and Mining I'm up to 298 Herb and 278 Mining.

Some issues: When you gather a herb from beneath a tree your character won't mount up again till you move him out from under it. Not sur eif this second one is just me but when he goes back to train mining in org he just stands in front of the building and I have to run in and manually train mining and herbalism.
 
hello i have one question,

when we are already 200 exemple on minning we cant forward? it must restart at lvl1 ?
 
does anyone know how I could get PB to check the characters level? Me.Level doesnt work and I'd like to be able to create a profile that makes sure a character is high enough level to challenge mobs
 
Ok so i am on my way of making professionbuddy profile that mills herbs, and then makes fortune cards of ashen pigments and darkmoon cards out of burning embers.
Now my prob is when i mill the herbs and make blackfallow ink i have X amount of ink and i need PB to go buy the same amount of parchments in order to make fortune cards.
So i use a buy item method for parchments and try to put (InbagCount(blackfallow ID here)) as count argument but it won't accept it. That's cool, but you might want to add it in future releases.
So now i make a loop
Code:
while (InbagCount(blacfallow ink ID)>InbagCount(parchments ID)
buy item: parchment x 1
Won't work. It buys random amount of parchments and exits the loop. I.E i have 200 inks, he buys 15, 40, sometimes 100 parchments then exits loop.
Then i figure it might be lag issues between buying and item appearing in backpack so i add
Code:
while (InbagCount(blacfallow ink ID)>InbagCount(parchments ID)
buy item: parchment x 1
wait(false) timeout:2000
And still same problem. Random amounts of parchments are bought before loop is exited.

Anyone can help me out on this one?
 
Running this through on a 2nd toon

Issues so far where i have had to stop and progress manually
-On one of the early quests it seems to be pathing through barron geddon and getting instagibbed over and over, this is before the quest to weaken barron geddon himself although i cant quite remember which, sorry :/, perhaps when i start it on my next toon if you havent caught it by then
-While collecting core hound entrails it could really do with having nemesis as an avoid mob, bot gets it in its mind that it would like to kill nemesis and subsequently gets faceraped by giant turtle genitals
-On "Aessina's Miracle" handin there is a RunTo and a FlyTo, the RunTo seems to move it to a spot where it just stands there and stalls. If i remove the RunTo it seems to progress as it should
<If Condition="(HasQuest(25372))" >
<RunTo X="4931.668" Y="-2697.221" Z="1431.327" />
<CustomBehavior File="FlyTo" X="5120.946" Y="-1754.386" Z="1334.546" />
I remembered all 3 of these occured on the other toon, dunno if its possible to blackspot geddon for the earlier quest but it should be possible to put nemesis in the avoid list for the whole profile since that quest is one where the player needs to do it manually anyway

--Further adjustments--:
If you start the profile after a certain point then whenever you start it again it insists on flying back to 2 spots on the map before going to where it should actually be

To fix
<If Condition="(IsQuestCompleted(25904))" >
<CustomBehavior File="FlyTo" X="4472.452" Y="-2723.056" Z="1100.863" />
<CustomBehavior File="RunMacro" Macro="/dismount\n/cancelaura Swift Flight Form\n/cancelaura Flight Form" NumOfTimes="1" WaitTime="2000" />
</If>
Needs to be changed to
<If Condition="((HasQuest(25904)) &amp;&amp; (IsQuestCompleted(25904)))" >
<CustomBehavior File="FlyTo" X="4472.452" Y="-2723.056" Z="1100.863" />
<CustomBehavior File="RunMacro" Macro="/dismount\n/cancelaura Swift Flight Form\n/cancelaura Flight Form" NumOfTimes="1" WaitTime="2000" />
</If>

And
<If Condition="(IsQuestCompleted(25899))" >
<CustomBehavior File="FlyTo" X="4664.163" Y="-3353.545" Z="1024.168" />
<CustomBehavior File="RunMacro" Macro="/dismount\n/cancelaura Swift Flight Form\n/cancelaura Flight Form" NumOfTimes="1" WaitTime="2000" />
</If>
Needs to be changed to
<If Condition="((HasQuest(25899)) &amp;&amp; (IsQuestCompleted(25899)))" >
<CustomBehavior File="FlyTo" X="4664.163" Y="-3353.545" Z="1024.168" />
<CustomBehavior File="RunMacro" Macro="/dismount\n/cancelaura Swift Flight Form\n/cancelaura Flight Form" NumOfTimes="1" WaitTime="2000" />
</If>
 
Last edited:
PHP:
Could not create current in quest bot; exception was thrown
Could not find file 'C:\Users\Danny\Desktop\Neuer Ordner (2)\Quest Behaviors\BasicUseObject.cs'.

i controlled it an it is a 100% in the right place! don't know what hb want me to do...^^
AND it is definatley yours ;)

log attached
 
Last edited by a moderator:
PHP:
Could not create current in quest bot; exception was thrown
Could not find file 'C:\Users\Danny\Desktop\Neuer Ordner (2)\Quest Behaviors\BasicUseObject.cs'.

i controlled it an it is a 100% in the right place! don't know what hb want me to do...^^

log attached

delete your settings folder and restart bot
 
just dinged 80, nice work kickazz................... quested from 70-78 then it did some grinding to 80, routing was awesome think i only had to assist like 3 or 4 times, had to intervene a few times with doing 1 or 2 quests manually, had to restart bot a few times also but other than than these few niggles pretty awesome overall
 
Status
Not open for further replies.
Back
Top