Modcraft - The community dedicated to quality WoW modding!

Content creation => Texturing and 2D Art => Topic started by: Aentium on July 13, 2016, 09:27:06 pm

Title: [QUESTION] How to find an NPC texture
Post by: Aentium on July 13, 2016, 09:27:06 pm
Is there any way to find an NPC's texture inside the BakedNPCTextures folder without having to look for it among the thousands of other NPC's textures? For example, i want to look for the Spirit healer's texture. Any help?
Title: Re: [QUESTION] How to find an NPC texture
Post by: Amaroth on July 14, 2016, 10:26:35 am
You need to get NPC's displayID (from creature_template table from world database, or from .npc info command in game). Open CreatureDisplayInfo.dbc. Go to your NPC's displayID's row, and take a look at field #4. Open CreatureDisplayInfoExtra.dbc, go to your displayID's extra row. Texture's name is in the last field.

If you are a beginner, those links might help you.
viewtopic.php?f=78&t=3381 (http://modcraft.io/viewtopic.php?f=78&t=3381" onclick="window.open(this.href);return false;)
https://wowdev.wiki/DB/CreatureDisplayInfo (https://wowdev.wiki/DB/CreatureDisplayInfo" onclick="window.open(this.href);return false;)
https://wowdev.wiki/DB/CreatureDisplayInfoExtra (https://wowdev.wiki/DB/CreatureDisplayInfoExtra" onclick="window.open(this.href);return false;)