ERROR #132 (0x85100084) Fatal ExceptionProgram: C:World of WorldcraftClient & ServerWorld of WarcraftWow.exeException: 0xC0000005 (ACCESS_VIOLATION) at 0023:004F3C22The instruction at "0x004F3C22" referenced memory at "0x3D2D8AA8".The memory could not be "read".
Sounds like the XML button ID does not match the DBC ID (note: the row ID in the DBC is not the ID used for the XML button - the XML buttons are the chronological order of races marked as playable).
Quote from: "stoneharry"Sounds like the XML button ID does not match the DBC ID (note: the row ID in the DBC is not the ID used for the XML button - the XML buttons are the chronological order of races marked as playable).I'll go through and double check that now. But I'm not 100% sure that's the issue. When I do .morph to a DisplayID of the Worgen Models, my client also crashes with the same error. :S
<CheckButton name="CharacterCreateRaceButton7" inherits="CharacterCreateRaceButtonTemplate" id="7"><Anchors> <Anchor point="TOP" relativePoint="TOP" x="50" y="-61"/></Anchors></CheckButton>
Yeah but that's not a solution which is acceptable to me. We need to find out how to properly add new races and what causes these crashes.Not to mention...That method screws up NPCs. I.E all Fel orcs will now be Worgen.For instance, what makes the Lua recognize things such as TROLL_RACE_ID.This stuff must be stored somewhere, and that's where we have to add an additional line for the new races. Another observation I had, is that I was unable to add flavor text for Worgen, it was ignored ingame.To make an example..The game recognizes this line:ABILITY_INFO_FORESTTROLL1 = "- Berserk, increasing attack and casting speed.";But not this:ABILITY_INFO_WORGEN1 = "- Roar.";It's as if the information pertaining all the original 21 races are stored somewhere.We need to figure out where, so that we can add the new races we want to add.
ABILITY_INFO_WORGEN1 = "- Can periodically move quickly.";ABILITY_INFO_WORGEN2 = "- Critical chance increased.";ABILITY_INFO_WORGEN3 = "- Resistant to Nature and Shadow damage.";ABILITY_INFO_WORGEN4 = "- Skinning skill and speed increased.";