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

[Program - Dev] Apoc's Profile Editor [Semi-Beta]

Status
Not open for further replies.
Questing is not an issue. The <Objective> tag *must* be contained in a <Quest> tag, or <QuestOrder> tag. Not just by itself. It is not valid XML for HB2 profiles. (Thusly; not an issue with my editor)

As for the editor not properly showing the names of the continents; this is due to a somewhat lazy way of handling the names. I read the DBCs in whatever locale the current user's WoW is. (In your case, I'd assume a non-English version) This has inherent flaws, mostly due to some bugs in my DBC code. I'll look at it again, and see if I can solve the issue.
I'm pretty shure that all Objective tags are inside a Quest tag or inside the QuestOrder, but thanks for the hint. I will look into it to make it XML valid.

If I can help you with your DBC issues just let me know it. I'm on a german client and could provide more informations or even upload them.
 
Zo0o0oM posted before me to Edit - NPC filter's to bring up my vendor location's but i posted my UI to show i dont have a edit button.


All profile's i have created i have released to the public without testing for some feedback, but while looking threw the profile code i noticed nearly every faction ID had 14 init.


If you look at the UI i posted earlier you will notice i dont have a vendor checkbox to enable at the bottom-center of the editor or anywere else.

The filter he's talking about came from a very old build of the editor.

Check the 'NPCs' box at the bottom, that'll show vendors.

I'm pretty shure that all Objective tags are inside a Quest tag or inside the QuestOrder, but thanks for the hint. I will look into it to make it XML valid.

If I can help you with your DBC issues just let me know it. I'm on a german client and could provide more informations or even upload them.

I'm fairly positive that the issue is just with the font being used. (MS Sans Serif can't display certain characters)
 
Apoc i appoligise if im really annoying you but i dont have a NPC's box to enable, the only boxes i can enable is mob's, Hotspot's and blackspot's and the center bottom.
 
Apoc i appoligise if im really annoying you but i dont have a NPC's box to enable, the only boxes i can enable is mob's, Hotspot's and blackspot's and the center bottom.

Yeah.. Apoc is right, my bad >.<
Had 2 version and kinda messed up between them.

I have the boxes visible at the bottom as it should be. using HBPE_9192010_744.

And Apoc, i had a profile that i modified and created hotspots in it using an older version of the editor. But i can't seem to be able to load it on this one.

This is the error i'm getting:
Untitled.webp

What could it be? =o
 
Apoc i appoligise if im really annoying you but i dont have a NPC's box to enable, the only boxes i can enable is mob's, Hotspot's and blackspot's and the center bottom.

Sounds like your screen resolution is very low.

Make the window wider, and they'll show. I'll see about fixing the anchoring and overlap stuff in the next few builds.


Yeah.. Apoc is right, my bad >.<
Had 2 version and kinda messed up between them.

I have the boxes visible at the bottom as it should be. using HBPE_9192010_744.

And Apoc, i had a profile that i modified and created hotspots in it using an older version of the editor. But i can't seem to be able to load it on this one.

This is the error i'm getting:
View attachment 8828

What could it be? =o

Send me the profile. :)
 
Sounds like your screen resolution is very low.

Make the window wider, and they'll show. I'll see about fixing the anchoring and overlap stuff in the next few builds.

My screen ress is at the highest i can go to 1024 x 768, suppose ill have to wait in your next few build's :( Thank's anyway's :)
 
My screen ress is at the highest i can go to 1024 x 768, suppose ill have to wait in your next few build's :( Thank's anyway's :)

You can drag the window to the left (so some of it is no longer visible) then drag the right hand side to make it wider.
 
Send me the profile. :)
No need :)
Found the issue! :D

As i said, i used an older version to edit the profile. I added a bunch of hotspots.
The older version didn't have fix bad coords thing, instead it used the "findhighest" tag.

All i had to do is replace those with 0's and loaded it then used the Fix Bad coords tool :D
 
I keep getting the below error when attempting to load a profile:

Capture Error.webp
 
You can drag the window to the left (so some of it is no longer visible) then drag the right hand side to make it wider.

It was the first and last thing i tryed, i can make the editor go as small as i want but when i try and make the editor wider it just wont go any wider.

Probaly due to me having a shitty old monitor :(
 
Last edited:
I'm fairly positive that the issue is just with the font being used. (MS Sans Serif can't display certain characters)

I checked xml validity and saved the file without formatting any font now. I saved the file in UNIX format and also tried pasting the code into a clean *.txt with notepad and renaming it to *.xml.

It's still the same error Message when the editor tries to parse tags like:


Code:
  <Quest Id="xxx" Name="xxx">
    <Objective Type="Collect" ItemId="xxx" CollectCount="xx">
      <CollectFrom>
        <Mob Name="xxx" Entry="xxx" />
      </CollectFrom>
      <Hotspots>
        <Hotspot X="xxx.xxx" Y="xxx.xxx" Z="xx.xxx" />
      </Hotspots>
    </Objective>
  </Quest>
 

Attachments

  • loadingerror.webp
    loadingerror.webp
    40.6 KB · Views: 59
Last edited:
your screenie is complaining about element <collectfrom>
 
I checked xml validity and saved the file without formatting any font now. I saved the file in UNIX format and also tried pasting the code into a clean *.txt with notepad and renaming it to *.xml.

It's still the same error Message when the editor tries to parse tags like:


Code:
  <Quest Id="xxx" Name="xxx">
    <Objective Type="Collect" ItemId="xxx" CollectCount="xx">
      <CollectFrom>
        <Mob Name="xxx" Entry="xxx" />
      </CollectFrom>
      <Hotspots>
        <Hotspot X="xxx.xxx" Y="xxx.xxx" Z="xx.xxx" />
      </Hotspots>
    </Objective>
  </Quest>

CollectFrom is not a valid HB2 profile element. Not sure where you're getting your list of valid elements from. o.O
 
As your Wiki says its valid for "Quest Overrides".

Don't know if it's valid for HB2 cause I'm not that long back to the "business" but I thought "Quest Overrides" and "QuestOrder" are replacing "ForcedQuestList" with HB2. So why shouldn't it be valid?

Please teach me if I'm wrong.

/EDIT

Even Hawker uses <CollectFrom> tags in his profile which is claimed to be HB2 compatible.
 
Last edited:
Got an issue with "z" coordinates with hotspots added by shift+clicking. It just doesn't add a "z" coordinate and I have to run tools > fix bad coordinates everytime I add one or more hotpots. HB bugs out (keeps standing in one spot) if I don't fix the coordinates.

Also, a way to drag hotspots for finetuning would also be greatly appreciated, if possible.
 
Does this do blackspots as well? I know it can do hotspots, just haven't figured out blackspots yet. I see them on some of the screenshots posted, just can't find where to click to add them in. Also, what is the purpose of the filter button? I click it and it doesn't do anything.
 
Does this do blackspots as well? I know it can do hotspots, just haven't figured out blackspots yet. I see them on some of the screenshots posted, just can't find where to click to add them in. Also, what is the purpose of the filter button? I click it and it doesn't do anything.

Same Questions, looking for answer :)
 
As I state; I have no intention on supporting adding blackspots in the editor. This is something you *need* to do in game. There's no way the editor can be accurate enough.

You can however; make adjustments with the editor, and delete blackspots.

@iggi66; can you send me the profile please. I see that I somehow missed that tag in the profile engine. (Hey, bound to miss one!) It may have been added recently, or was just tucked away into the HB source where I couldn't find it.
 
Last edited:
when im starting my selfmade profile it says; "no profiles fitting the character"
The profile should farm mobs in tyr's hand on my level 80 rogue. Any idea what Im doing wrong?
 
Status
Not open for further replies.
Back
Top