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 uploaded new SVN lastnight, and just got onto eastern plaguelands at level 42 (lol). Everytime I load the profile for EP, HB crashes saying "<" hexadecimal value 0x3C is an invalid attribute character. Line 267, position 4. Any idea? I'll probably open it in notepad and check it out.

I looked at line 267 but not sure whats going on with <
 
Last edited:
I would love to see some more implementation of DataStore or some documentation on how to use it in profiles. For example check if something is in the bank before going to AH to buy it. Stuff like that.
 
I uploaded new SVN lastnight, and just got onto eastern plaguelands at level 42 (lol). Everytime I load the profile for EP, HB crashes saying "<" hexadecimal value 0x3C is an invalid attribute character. Line 267, position 4. Any idea? I'll probably open it in notepad and check it out.

I looked at line 267 but not sure whats going on with <

I can't see anything wrong with that line, made some modifications to it, try now. Otherwise delete that line and do it manually since the problem may be isolated to you.
 
Profile was working perfectly then stopped. Here are the details::

Singular] Casting Templar's Verdict on Abyssion
[Singular] Target is invalid. Switching to Abyssion!
Moving to Type: Harvest
Looting The First Fragment of the World Pillar Guid:0xF11320A700000807
[Singular] Casting Retribution Aura on Myself​
Moving to Type: QuestTurnIn
Choosing Amulet of Reconstruction.
Could not find quest giver NPC with ID 47195 in database.
Could not create current in quest bot!
Starting the bot!
Changing current profile to [N - Quest] Deepholm 82-84 [Kick]
Could not find quest giver NPC with ID 47195 in database.
Could not create current in quest bot!
 
when providing me with this information - i need to know what profile it has loaded - specifically the race if it's below 10

also, log.txt should always be provided
 
Started a new druid. At lvl 3 I received this error. I was just wondering. How much grinding is there?

[TalkToAndListenToStory-v184(warning)]: *****
* THIS BEHAVIOR IS DEPRECATED, and may be retired in a near, future release.
*
* TalkToAndListenToStory adds _no_ _additonal_ _value_ over the InteractWith behavior (with the "GossipOption" attribute).
* Please update the profile to use InteractWith in preference to the TalkToAndListenToStory behavior.
*****
[TalkToAndListenToStory-v184(warning)]: Found attribute via its alias name 'NpcIds'.
Please update the profile to use its primary name 'MobIds', instead.
[CastSpellOn-v187(fatal) @line 237]: Toon doesn't know SpellId(5185, "Healing Touch")
Fatal error. Stopping Honorbuddy.

fixed the fatal error. the other one is just a warning, and it will not be fixed any time soon (basically when i reflow the profile)
 
I was having trouble getting this profile to start, getting an error message "Could not create current in quest bot; exception was thrown" I think this may have to do with CC's but I'm not sure
 
I was having trouble getting this profile to start, getting an error message "Could not create current in quest bot; exception was thrown" I think this may have to do with CC's but I'm not sure

stop extracting hb and pasting it into the old hb

always use a new hb folder and copy / paste plugins / cc's / settings into it
 
I would love to see some more implementation of DataStore or some documentation on how to use it in profiles. For example check if something is in the bank before going to AH to buy it. Stuff like that.
DataStore is only used by CastSpellAction when Repeat Type is set to 'Banker'. Read the Action description for more info. If you want to access the info that's imported than use the newly added DataStore dictionary property(PB version 1.39), example if Condition="DataStore.ContainsKey(Item_ID) && DataStore[Item_ID] >0" where the key is item ID and Value is total number of that item your characters have on current server/faction. If you want to get a total number of items a specific character has in he/her gbank then you're out of luck unless you know how to get it from the Datastore addon table via lua.
 
Last edited:
.

level 18 script it gets stuck at flight path in splintertree post. Then it continuously tries to kill the raging ancient and dies. I've died over 10 times now from it....
 
It prompts this when i start the profile..."You must have the flying key or Lifetime to use this profile!"
 
Hmm okay. I figured it out, makes me remember the joys of AP computer science AB in high school, miss one little quotation and its all fucked.

<PickUp QuestName="The Trek Continues" QuestId="27448" GiverName="Fiona" GiverId="45417" X="1842.149" Y="-3698.729" Z="158.7519 />
<If Condition="HasQuest(27448) &amp;&amp; !IsQuestCompleted(27448)" >
<CustomBehavior File="InteractWith" QuestId="27448" MobId="45400" NumOfTimes="1" GossipOptions="1" WaitTime="1000" CollectionDistance="50" X="1842.149" Y="-3698.729" Z="158.7519" />
<CustomBehavior File="WaitTimer" WaitTime="120000"/>
</If>

The problem with this code is that the Z location on the first line doesnt have an ending quotation. So the right code, which is working perfectly now, is this:

<PickUp QuestName="The Trek Continues" QuestId="27448" GiverName="Fiona" GiverId="45417" X="1842.149" Y="-3698.729" Z="158.7519" />
<If Condition="HasQuest(27448) &amp;&amp; !IsQuestCompleted(27448)" >
<CustomBehavior File="InteractWith" QuestId="27448" MobId="45400" NumOfTimes="1" GossipOptions="1" WaitTime="1000" CollectionDistance="50" X="1842.149" Y="-3698.729" Z="158.7519" />
<CustomBehavior File="WaitTimer" WaitTime="120000"/>
</If>

And here I thought it was saying the ">" was messed up.
 
Last edited:
Hmm okay. I figured it out, makes me remember the joys of AP computer science AB in high school, miss one little quotation and its all fucked.



The problem with this code is that the Z location on the first line doesnt have an ending quotation. So the right code, which is working perfectly now, is this:



And here I thought it was saying the ">" was messed up.

That's very odd. The " Isn't missing over here. Anyways, glad you got it working.
 
It prompts this when i start the profile..."You must have the flying key or Lifetime to use this profile!"

Thats because you need Lifetime or the flying Key to be able to you use this, since it flies around.
 
it starts up fine

you need to always use a fresh HB and copy / paste your plugins / settings into it... not extract a new one and copy / paste into 'old' folder

hint: you have a double reference in there that needs to be deleted

I have about 6 folders with fresh copies of the latest version. I only copy over your profiles (SVN), one custom class, and thats it. All the settings I re-do.

Edit: The 7th fresh HB seemed to work.
 
Last edited:
level 18 script it gets stuck at flight path in splintertree post. Then it continuously tries to kill the raging ancient and dies. I've died over 10 times now from it....

what happens at the flight path? stuck ...... doing what? interacting and updating? if so, kill bot and restart.
added raging ancient to avoidmobs

re-svn
 
Status
Not open for further replies.
Back
Top