Modcraft - The community dedicated to quality WoW modding!

Wrath of the Lich King Modding => Miscellaneous => Topic started by: darksoke on January 26, 2016, 01:44:52 pm

Title: [QUESTION] Setting up new screen for Gnome and Trolll
Post by: darksoke on January 26, 2016, 01:44:52 pm
I've managed to extract cata Troll and GNOME and tested them as Login screen and work perfect but i have a problem setting them up for the races

I've tried to use them for Worgen and goblin and they work but when i try to use them on Gnome and Troll it stil show the default ones

Code: [Select]
if (name == "Goblin" or name == "GOBLIN") then
name = "Goblin";
end

if (name == "FelOrc" or name == "FELORC") then
name = "Gnome"; <- Here it work
end

if (name == "Gnome" or name == "GNOME") then
name = "Gnome"; <- Here don't
end

if (name == "Troll" or name == "TROLL") then
name = "Troll"; <-Same for this one
end

Does anybody know what else i have to edit ?