This is a read only copy without any forum functionality of the old Modcraft forum.
If there is anything that you would like to have removed, message me on Discord via Kaev#5208.
Big thanks to Alastor for making this copy!

Menu

Author Topic: [QUESTION] [WotLk] Problem exporting Worgen model to wotlk  (Read 782 times)

darksoke

  • Registred Member
  • GM Isle Explorer
  • *****
  • Posts: 20
    • View Profile
[QUESTION] [WotLk] Problem exporting Worgen model to wotlk
« on: January 25, 2016, 05:57:51 pm »
EDIT: Nvm got it working using another extractor


I've just succesfully managed to export goblin models and now i'm stuck on worgen because when i open the game i see just a black page on login/char creation http://prntscr.com/9uoi8w

Here is the goblin http://prntscr.com/9uoil6
And here is Worgen http://prntscr.com/9uoivv

I used the same extraction method as for goblin
and here is the function that sets the background model , i use FelOrc as replacement since i don't thing that adding a new race id will work because of hardcodes
Code: [Select]
function SetBackgroundModel(model, name)
    local nameupper = strupper(name);

if (name == "Goblin" or name == "GOBLIN") then
name = "Goblin";
end

if (name == "FelOrc" or name == "FELORC") then
name = "Worgen";
end

    local path = "Interface\Glues\Models\UI_"..name.."\UI_"..name..".m2";
if ( model == CharacterCreate ) then
SetCharCustomizeBackground(path);
else
SetCharSelectBackground(path);
end
PlayGlueAmbience(GlueAmbienceTracks[nameupper], 4.0);
SetLighting(model, nameupper)
end

And here is the structure of the UI_Worgen.M2 file http://prntscr.com/9uok7v

I cand find what is wrong , and about worgen model it works just perfect when i Log in so there's no problem with creature model.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »