Modcraft - The community dedicated to quality WoW modding!

Wrath of the Lich King Modding => Serverside Modding => Topic started by: lawrytrix on July 21, 2012, 05:45:30 pm

Title: [QUESTION] Custom loginscreen
Post by: lawrytrix on July 21, 2012, 05:45:30 pm
Hello modcraft community,

I have a problem with my login screen.
(http://s7.directupload.net/images/120721/temp/xma23xmf.jpg) (http://s7.directupload.net/file/d/2958/xma23xmf_jpg.htm)
When I start WoW there appears a lua-error.

The path of the error is in the vx_vars_init.lua:
Quote
function PlayLoginMusic()
   if VX_ONMUSIC then return; end
   StopGlueMusic();

    VX_MUSICTIMER = GetTime() + <0>;
   VX_ONMUSIC = true;
   PlayMusic("Interface\LoginMusic\LoginScreen.wav");

I´ve set the seconds to zero because I don´t want any music on my login-screen for now.
There is no problem to start wow up on windows cause the lua error appears and you can push it right away but on linux there appears the error that the userinterface is broken and I should reinstall wow.

I hope anyone can help me out :)
Title: Re: [QUESTION] Custom loginscreen
Post by: schlumpf on July 21, 2012, 06:25:55 pm
Well, the error is even said in the error: There is no way a < (and a >) would fit there.

Also, for disabling music, you should rather just remove the PlayMusic call.