View Single Post
07-17-11, 04:18 PM   #6
cokedrivers
A Rage Talon Dragon Guard
 
cokedrivers's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2009
Posts: 325
Originally Posted by Seerah View Post
What you're looking for (and using) isn't a static texture/image. It's found in the mpq files amongst the skins and texture files of npcs, objects, spells, etc.

You can browse for it here: http://www.wowinterface.com/download...delViewer.html

Or... you can find the icon texture itself (rather than the portal image) here: http://wowprogramming.com/utils/artb...nterface/ICONS
With some looking around and looking into the art.MPQ i finally got what I was after thank you for the point in the right direction.

And for those using ZOMGBuffs Portalz to pull all the images from the art.MPQ do the following:

Open ZOMGBuffs_Portalz.lua at line 1164 paste the following and delete the old :

Code:
		if (UnitFactionGroup("player") == "Horde") then
			self.portals = {
				["Dalaran"]			= {group = 53142, single = 53140,	tex = "World\\GENERIC\\ACTIVEDOODADS\\SpellPortals\\Dalaran_Portal"},
				["Shattrath"]		= {group = 35717, single = 35715,	tex = "World\\GENERIC\\ACTIVEDOODADS\\SpellPortals\\Shattrath_Portal"},
				["Orgrimmar"]		= {group = 11417, single = 3567,	tex = "SPELLS\\Ogrimmar_Portal"},
				["Undercity"]		= {group = 11418, single = 3563,	tex = "SPELLS\\Undercity_Portal"},
				["Thunder Bluff"]	= {group = 11420, single = 3566,	tex = "SPELLS\\ThunderBluff_Portal"},
				["Silvermoon"]		= {group = 32267, single = 32272, 	tex = "World\\GENERIC\\ACTIVEDOODADS\\SpellPortals\\SILVERMOON_PORTAL"},
				["Stonard"]			= {group = 49361, single = 49358, 	tex = "World\\GENERIC\\ACTIVEDOODADS\\SpellPortals\\STONARD_PORTAL"},
				["Tol Barad"]		= {group = 88346, single = 88344,	tex = "World\\GENERIC\\ACTIVEDOODADS\\SpellPortals\\Portal_TolBarad"},
			}
		else
			self.portals = {
				["Dalaran"]			= {group = 53142, single = 53140,	tex = "World\\GENERIC\\ACTIVEDOODADS\\SpellPortals\\Dalaran_Portal"},
				["Shattrath"]		= {group = 33691, single = 33690, 	tex = "World\\GENERIC\\ACTIVEDOODADS\\SpellPortals\\Shattrath_Portal"},
				["Stormwind"]		= {group = 10059, single = 3561, 	tex = "World\\GENERIC\\ACTIVEDOODADS\\MAGEPORTALS\\STORMWIND_PORTAL"},
				["Ironforge"]		= {group = 11416, single = 3562, 	tex = "SPELLS\\Ironforge_Portal"},
				["Darnassus"]		= {group = 11419, single = 3565, 	tex = "SPELLS\\Darnassus_Portal"},
				["Exodar"]			= {group = 32266, single = 32271, 	tex = "World\\GENERIC\\ACTIVEDOODADS\\SpellPortals\\Exodar_Portal"},
				["Theramore"]		= {group = 49360, single = 49359, 	tex = "World\\GENERIC\\ACTIVEDOODADS\\SpellPortals\\Theramore_Portal"},
				["Tol Barad"]		= {group = 88345, single = 88342,	tex = "World\\GENERIC\\ACTIVEDOODADS\\SpellPortals\\Portal_TolBarad"},
			}
		end
Hope this helps others.

Coke
  Reply With Quote