Forum > Serverside Modding

[REQUEST] Faction and Race name change

<< < (2/7) > >>

XxXGenesisXxX:
The Alliance/Horde are both blp images. In fact they are pretty much the only text on the creation screen that isn't editable text but an image instead.

LordAres:
That's what I figured. So if I change the race names and class names it will change in character selection screen and all other  screens? Says I change paladin to paragon or Templar or whatever it'll change in the character selection screen and character info? When I get time ill mess around with the files but right now I'm at work and my mind is all over the place thinking about what to do.

XxXGenesisXxX:
Foir he most part changing the name in CharClasses.dbc will change the name. However character info on the creation screen is done via GlueStrings.lua in the InterfaceGlueXML folder.

LordAres:
At first after the changes I got this error



So I got into Patch-enUS-3.MPQ Interface/GlueXML and there is no CharacterCreate.lua so i went down to Patch-enUS-2.MPQ and look in the Interface/GlueXML folder and there it is. So i export it and edit it in the only spot I can find that makes sense

from

--- Code: ---CLASS_ICON_TCOORDS = {
["WARRIOR"] = {0, 0.25, 0, 0.25},
["MAGE"] = {0.25, 0.49609375, 0, 0.25},
["ROGUE"] = {0.49609375, 0.7421875, 0, 0.25},
["DRUID"] = {0.7421875, 0.98828125, 0, 0.25},
["HUNTER"] = {0, 0.25, 0.25, 0.5},
["SHAMAN"] = {0.25, 0.49609375, 0.25, 0.5},
["PRIEST"] = {0.49609375, 0.7421875, 0.25, 0.5},
["WARLOCK"] = {0.7421875, 0.98828125, 0.25, 0.5},
["PALADIN"] = {0, 0.25, 0.5, 0.75},
["DEATHKNIGHT"] = {0.25, 0.49609375, 0.5, 0.75},
};

--- End code ---

to


--- Code: ---CLASS_ICON_TCOORDS = {
["PARAGON"] = {0, 0.25, 0, 0.25},
["WIZARD"] = {0.25, 0.49609375, 0, 0.25},
["ASSASSIN"] = {0.49609375, 0.7421875, 0, 0.25},
["WARDEN"] = {0.7421875, 0.98828125, 0, 0.25},
["BEASTLORD"] = {0, 0.25, 0.25, 0.5},
["MYSTIC"] = {0.25, 0.49609375, 0.25, 0.5},
["INQUISITOR"] = {0.49609375, 0.7421875, 0.25, 0.5},
["WARLOCK"] = {0.7421875, 0.98828125, 0.25, 0.5},
["CRUSADER"] = {0, 0.25, 0.5, 0.75},
["SHADOWKNIGHT"] = {0.25, 0.49609375, 0.5, 0.75},
};
--- End code ---

and then I saved it and added it to my patch-a.MPQ like so



and then I added my patch to my wowfolder/Data like you normally would and i get this error 8'(



I was on a roll this time! lol

Ascathos:

--- Quote from: "LordAres" ---[...][/img]

I was on a roll this time! lol
--- End quote ---
1. You need the changed exe file. "Remove GlueXML Check from WoW.exe" <- Search function.
2. You need to have these definitions within your ChrClass dbc, else the interface can not make sense of these icons to an according class.
3. There are more files you require to edit; look further. GlueStrings if I remember correctly is an example.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version