Modcraft - The community dedicated to quality WoW modding!

Wrath of the Lich King Modding => Miscellaneous => Topic started by: iviaguic on March 29, 2013, 07:05:53 pm

Title: [QUESTION] Problems with CharacterCreate.XML
Post by: iviaguic on March 29, 2013, 07:05:53 pm
Hello EO.
I'm just here to see if anyone can help me sort out these problem, 'coz i've been looking guides, books, tutorials, etc and i can't fix this.

I'm implementing Worgens & Goblins to 335a, everything it's fine (for now), but i can't get to position the race icons on the creation screen in the right place!

What i want to do it's transform these icons:
[attachment=1:27k4ntma]WoWScrnShot_032913_185046.jpg[/attachment:27k4ntma]
Into this:
[attachment=0:27k4ntma]WoWScrnShot_032913_190139.jpg[/attachment:27k4ntma]
Here is my CharacterCreate.XML file:





<CheckButton name="CharacterCreateRaceButton1" inherits="CharacterCreateRaceButtonTemplate" id="1">
                        <Anchors>
                           <Anchor point="TOP" relativePoint="TOP" x="-50" y="-61"/>
                        </Anchors>
                     </CheckButton>
                     <CheckButton name="CharacterCreateRaceButton2" inherits="CharacterCreateRaceButtonTemplate" id="2">
                        <Anchors>
                           <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton1" relativePoint="BOTTOMLEFT" x="0" y="-21"/>
                        </Anchors>
                     </CheckButton>
                     <CheckButton name="CharacterCreateRaceButton3" inherits="CharacterCreateRaceButtonTemplate" id="3">
                        <Anchors>
                           <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton2" relativePoint="BOTTOMLEFT" x="0" y="-21"/>
                        </Anchors>
                     </CheckButton>
                     <CheckButton name="CharacterCreateRaceButton4" inherits="CharacterCreateRaceButtonTemplate" id="4">
                        <Anchors>
                           <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton3" relativePoint="BOTTOMLEFT" x="0" y="-21"/>
                        </Anchors>
                     </CheckButton>
                     <CheckButton name="CharacterCreateRaceButton5" inherits="CharacterCreateRaceButtonTemplate" id="5">
                        <Anchors>
                           <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton4" relativePoint="BOTTOMLEFT" x="0" y="-21"/>
                        </Anchors>
                     </CheckButton>
                     <CheckButton name="CharacterCreateRaceButton6" inherits="CharacterCreateRaceButtonTemplate" id="6">
                        <Anchors>
                           <Anchor point="TOP" relativePoint="TOP" x="50" y="-61"/>
                        </Anchors>
                     </CheckButton>
                     <CheckButton name="CharacterCreateRaceButton7" inherits="CharacterCreateRaceButtonTemplate" id="7">
                        <Anchors>
                           <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton6" relativePoint="BOTTOMLEFT" x="0" y="-21"/>
                        </Anchors>
                     </CheckButton>
                     <CheckButton name="CharacterCreateRaceButton8" inherits="CharacterCreateRaceButtonTemplate" id="8">
                        <Anchors>
                           <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton7" relativePoint="BOTTOMLEFT" x="0" y="-21"/>
                        </Anchors>
                     </CheckButton>
                     <CheckButton name="CharacterCreateRaceButton9" inherits="CharacterCreateRaceButtonTemplate" id="9">
                        <Anchors>
                           <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton8" relativePoint="BOTTOMLEFT" x="0" y="-21"/>
                        </Anchors>
                     </CheckButton>
                     <CheckButton name="CharacterCreateRaceButton10" inherits="CharacterCreateRaceButtonTemplate" id="10">
                        <Anchors>
                           <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton9" relativePoint="BOTTOMLEFT" x="0" y="-21"/>
                        </Anchors>
                     </CheckButton>
                     <CheckButton name="CharacterCreateRaceButton11" inherits="CharacterCreateRaceButtonTemplate" id="11">
                        <Anchors>
                           <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton5" relativePoint="BOTTOMLEFT" x="0" y="-14"/>
                        </Anchors>
                     </CheckButton>
                     <CheckButton name="CharacterCreateRaceButton12" inherits="CharacterCreateRaceButtonTemplate" id="12">
                        <Anchors>
                           <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton10" relativePoint="BOTTOMLEFT" x="0" y="-14"/>
                        </Anchors>
                     </CheckButton>





Thank you in advance ;)
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: noc on March 29, 2013, 11:19:16 pm
Is it good for you?
Quote

<CheckButton name="CharacterCreateRaceButton1" inherits="CharacterCreateRaceButtonTemplate" id="1">
   <Anchors>
      <Anchor point="TOP" relativePoint="TOP" x="-50" y="-50"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton2" inherits="CharacterCreateRaceButtonTemplate" id="2">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton1" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton3" inherits="CharacterCreateRaceButtonTemplate" id="3">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton2" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton4" inherits="CharacterCreateRaceButtonTemplate" id="4">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton3" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton5" inherits="CharacterCreateRaceButtonTemplate" id="5">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton4" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton11" inherits="CharacterCreateRaceButtonTemplate" id="11">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton5" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>

<CheckButton name="CharacterCreateRaceButton6" inherits="CharacterCreateRaceButtonTemplate" id="6">
   <Anchors>
      <Anchor point="TOP" relativePoint="TOP" x="50" y="-50"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton7" inherits="CharacterCreateRaceButtonTemplate" id="7">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton6" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton8" inherits="CharacterCreateRaceButtonTemplate" id="8">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton7" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton9" inherits="CharacterCreateRaceButtonTemplate" id="9">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton8" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton10" inherits="CharacterCreateRaceButtonTemplate" id="10">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton9" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton12" inherits="CharacterCreateRaceButtonTemplate" id="12">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton10" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: iviaguic on March 30, 2013, 12:09:36 am
Quote from: "noc"
Is it good for you?
Quote

<CheckButton name="CharacterCreateRaceButton1" inherits="CharacterCreateRaceButtonTemplate" id="1">
   <Anchors>
      <Anchor point="TOP" relativePoint="TOP" x="-50" y="-50"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton2" inherits="CharacterCreateRaceButtonTemplate" id="2">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton1" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton3" inherits="CharacterCreateRaceButtonTemplate" id="3">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton2" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton4" inherits="CharacterCreateRaceButtonTemplate" id="4">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton3" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton5" inherits="CharacterCreateRaceButtonTemplate" id="5">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton4" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton11" inherits="CharacterCreateRaceButtonTemplate" id="11">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton5" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>

<CheckButton name="CharacterCreateRaceButton6" inherits="CharacterCreateRaceButtonTemplate" id="6">
   <Anchors>
      <Anchor point="TOP" relativePoint="TOP" x="50" y="-50"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton7" inherits="CharacterCreateRaceButtonTemplate" id="7">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton6" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton8" inherits="CharacterCreateRaceButtonTemplate" id="8">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton7" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton9" inherits="CharacterCreateRaceButtonTemplate" id="9">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton8" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton10" inherits="CharacterCreateRaceButtonTemplate" id="10">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton9" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton12" inherits="CharacterCreateRaceButtonTemplate" id="12">
   <Anchors>
      <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton10" relativePoint="BOTTOMLEFT" x="0" y="-10"/>
   </Anchors>
</CheckButton>

I get exactly the same thing ;(
Im starting to get angry with this, i've been literally 2 days with this... PISSED OFF!
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: noc on March 30, 2013, 08:05:09 am
So, perhaps it ...
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: Steff on March 30, 2013, 11:41:40 am
Im starting to get angry with this, i've been literally 2 days with this... PISSED OFF!

Hahah  ONLY 2 Days. How funny. I spend on some things weeks.....

Hope it will work for you. Twist thumbs.
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: iviaguic on March 30, 2013, 12:04:40 pm
Quote from: "noc"
So, perhaps it ...
Quote from: "Steff"
Im starting to get angry with this, i've been literally 2 days with this... PISSED OFF!

Hahah  ONLY 2 Days. How funny. I spend on some things weeks.....

Hope it will work for you. Twist thumbs.

GODDANGIT! Didn't work as expected, but it's not bad at all.Here u have a screenshot:

[attachment=3:1jjgr0dh]WoWScrnShot_033013_115853.jpg[/attachment:1jjgr0dh]

BTW, now i have 2 more problems...

GOBLINS:

[attachment=2:1jjgr0dh]WoWScrnShot_033013_115856.jpg[/attachment:1jjgr0dh]
[attachment=1:1jjgr0dh]WoWScrnShot_033013_115903.jpg[/attachment:1jjgr0dh]

Worgens:

[attachment=0:1jjgr0dh]worgen.png[/attachment:1jjgr0dh]

REALLY PISSED OFF MODE ACTIVATED
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: Ascathos on March 30, 2013, 12:40:19 pm
Good thing that you specifically showed the part that is not interesting. But let me elaborate.
You are missing relevant .dbc edits, namely chargeosets. I thing that you also failed to edit charraces properly, as there are missing facial choices. Thus, CharSections may also be involved.
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: iviaguic on March 30, 2013, 12:43:31 pm
Quote from: "Ascathos"
Good thing that you specifically showed the part that is not interesting. But let me elaborate.
You are missing relevant .dbc edits, namely chargeosets. I thing that you also failed to edit charraces properly, as there are missing facial choices. Thus, CharSections may also be involved.

Could you explain how to edit them please? I would really much appreciate it
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: Ascathos on March 30, 2013, 12:46:11 pm
Quote from: "iviaguic"
Quote from: "Ascathos"
Good thing that you specifically showed the part that is not interesting. But let me elaborate.
You are missing relevant .dbc edits, namely chargeosets. I thing that you also failed to edit charraces properly, as there are missing facial choices. Thus, CharSections may also be involved.

Could you explain how to edit them please? I would really much appreciate it
The easiest method is copying all the goblin Geosets from a Cata+ (best MoP) CharGeoset.dbc to your own. Make sure to change the race. Also add CharFacialHair.dbc like this. Personally, I also suggest copying the CharSections.dbc content for Goblins into your local files.

Basically, everything that may be related to the Goblins has to be copied if you want 100% support.
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: iviaguic on March 30, 2013, 12:49:45 pm
Quote from: "Ascathos"
Quote from: "iviaguic"
Quote from: "Ascathos"
Good thing that you specifically showed the part that is not interesting. But let me elaborate.
You are missing relevant .dbc edits, namely chargeosets. I thing that you also failed to edit charraces properly, as there are missing facial choices. Thus, CharSections may also be involved.

Could you explain how to edit them please? I would really much appreciate it
The easiest method is copying all the goblin Geosets from a Cata+ (best MoP) CharGeoset.dbc to your own. Make sure to change the race. Also add CharFacialHair.dbc like this. Personally, I also suggest copying the CharSections.dbc content for Goblins into your local files.

Basically, everything that may be related to the Goblins has to be copied if you want 100% support.


Ok im in it right now, ill see if i manage to do it by myself.

Any idea on how to fix worgens?
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: iviaguic on March 30, 2013, 12:54:54 pm
Pfff... I opened the files and i don't know where to start from...

DEADPOINT
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: Ascathos on March 30, 2013, 01:01:26 pm
Quote from: "iviaguic"
Quote from: "Ascathos"
Quote from: "iviaguic"
Quote from: "Ascathos"
Good thing that you specifically showed the part that is not interesting. But let me elaborate.
You are missing relevant .dbc edits, namely chargeosets. I thing that you also failed to edit charraces properly, as there are missing facial choices. Thus, CharSections may also be involved.

Could you explain how to edit them please? I would really much appreciate it
The easiest method is copying all the goblin Geosets from a Cata+ (best MoP) CharGeoset.dbc to your own. Make sure to change the race. Also add CharFacialHair.dbc like this. Personally, I also suggest copying the CharSections.dbc content for Goblins into your local files.

Basically, everything that may be related to the Goblins has to be copied if you want 100% support.


Ok im in it right now, ill see if i manage to do it by myself.

Any idea on how to fix worgens?
Same thing. Just that you have to include two races here, a Gilnean (human) race and the actual Worgen. I don't know if 4.0.6+ Servers require a coded spell to change their display id. May as well be that the client can do it on it's own. You are on your own there.
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: iviaguic on March 30, 2013, 01:04:33 pm
Ok this looks good. I've finished the CharSections.DBC

MMM...
Are you saying that i would have to do the Huargen (human) and an invisible race (worgens) and transform them via custom spell?
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: Ascathos on March 30, 2013, 01:52:31 pm
Quote from: "iviaguic"
Ok this looks good. I've finished the CharSections.DBC

MMM...
Are you saying that i would have to do the Huargen (human) and an invisible race (worgens) and transform them via custom spell?
Sí.
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: iviaguic on March 30, 2013, 01:55:52 pm
Quote from: "Ascathos"
Quote from: "iviaguic"
Ok this looks good. I've finished the CharSections.DBC

MMM...
Are you saying that i would have to do the Huargen (human) and an invisible race (worgens) and transform them via custom spell?
Sí.

...
...
...
...
OMG UN ESPAÑOLLLLLLLL
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: Ascathos on March 30, 2013, 02:11:58 pm
Quote from: "iviaguic"
Quote from: "Ascathos"
Quote from: "iviaguic"
Ok this looks good. I've finished the CharSections.DBC

MMM...
Are you saying that i would have to do the Huargen (human) and an invisible race (worgens) and transform them via custom spell?
Sí.

...
...
...
...
OMG UN ESPAÑOLLLLLLLL
No, I am German. I know some parts Spanish, but not enough to legitimate it. I like the language though. May or may not learn it at some point (again).
Title: Re: [QUESTION] Problems with CharacterCreate.XML
Post by: iviaguic on March 30, 2013, 02:48:39 pm
Quote from: "Ascathos"
Quote from: "iviaguic"
Quote from: "Ascathos"
Quote from: "iviaguic"
Ok this looks good. I've finished the CharSections.DBC

MMM...
Are you saying that i would have to do the Huargen (human) and an invisible race (worgens) and transform them via custom spell?
Sí.

...
...
...
...
OMG UN ESPAÑOLLLLLLLL
No, I am German. I know some parts Spanish, but not enough to legitimate it. I like the language though. May or may not learn it at some point (again).

Ok ich spreche Deutsch, aber nicht gut, und ich bin Spanish...
Ich mage Deutsch, es ist ein interessant Sprache