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: [SOLVED] [QUESTION] Custom Login screen/music  (Read 2717 times)

caduceus

  • Registred Member
  • Race Changer
  • *****
  • Posts: 25
    • View Profile
[SOLVED] [QUESTION] Custom Login screen/music
« on: July 27, 2013, 05:59:36 pm »
Hello, I am a complete newbie here. I came in looking for info on creating a serverside login screen with custom music (non animated) . If anyone could direct me to a tutorial or give instructions on how to to go about doing so, i would be eternally grateful. I have search over and over with no prevail on the subject with no luck as of yet. Thank you in advance for any useful info.
« Last Edit: November 06, 2013, 10:58:21 am by Admin »

XxXGenesisXxX

  • Contributors
  • Model Change Addict
  • *****
  • Posts: 204
    • View Profile
Re: [QUESTION] Custom Login screen/music
« Reply #1 on: July 27, 2013, 06:40:36 pm »
There are different variations of "custom" login screens. Just changing the music and the background to a 1024x1024 pixel image is kids stuff. But if you want animated models like Mordreds login screens takes a lot more effort. But if you are after that, check this tutorial: http://modcraft.io/viewtopic.php?f=20&t=1652
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

caduceus

  • Registred Member
  • Race Changer
  • *****
  • Posts: 25
    • View Profile
Re: [QUESTION] Custom Login screen/music
« Reply #2 on: July 27, 2013, 07:12:39 pm »
Ok, how do I do this kids stuff? I seen his tutorial, however i am not quite ready to tackle that challenge. I have been toying with open WoW for maybe a month. Obviously, I have no experience in the advanced mods.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

stoneharry

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 617
    • View Profile
Re: [QUESTION] Custom Login screen/music
« Reply #3 on: July 27, 2013, 08:13:05 pm »
Quote from: "caduceus"
Ok, how do I do this kids stuff? I seen his tutorial, however i am not quite ready to tackle that challenge. I have been toying with open WoW for maybe a month. Obviously, I have no experience in the advanced mods.

The login screen is made up of Lua and XML files (as is everything pretty much before you get in game). This is the GlueXML folder in the Interface folder of your local MPQ.

The music that is played is handled within these files. You would need to find where it plays the sound and change it to yours. However, we know where Blizzard stores the login screen music, so we can just find this file and replace it with your own with the same name.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

caduceus

  • Registred Member
  • Race Changer
  • *****
  • Posts: 25
    • View Profile
Re: [QUESTION] Custom Login screen/music
« Reply #4 on: July 27, 2013, 08:55:25 pm »
Ok, so i just want a simple
Quote
changing the music and the background to a 1024x1024 pixel image
where where might i obtain some basic knowledge on this "simple task"? Thank you, Stoneharry, for your explanation.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

schlumpf

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 2967
    • View Profile
Re: [QUESTION] Custom Login screen/music
« Reply #5 on: July 27, 2013, 09:00:43 pm »
Look for mp3 in the lua files.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

caduceus

  • Registred Member
  • Race Changer
  • *****
  • Posts: 25
    • View Profile
Re: [QUESTION] Custom Login screen/music
« Reply #6 on: July 27, 2013, 09:47:07 pm »
come on guys, really. why the run around. I understand I need to learn this stuff, but give a guy a break.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

stoneharry

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 617
    • View Profile
Re: [QUESTION] Custom Login screen/music
« Reply #7 on: July 27, 2013, 09:59:23 pm »
I have these two functions, but my files are not the same as Blizzard's and I can't be bothered to re-extract right now:

Code: [Select]
function PlayLoginMusic()
if VX_ONMUSIC then return; end
StopGlueMusic();

VX_MUSICTIMER = GetTime() + 500;
VX_ONMUSIC = true;
PlayMusic("Interface\LoginMusic\LoginScreen.wav");
end

function StopLoginMusic()
StopMusic();
StopGlueMusic();
VX_ONMUSIC = nil;
VX_MUSICTIMER = nil;
end

Look in AccountLogin.lua
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

caduceus

  • Registred Member
  • Race Changer
  • *****
  • Posts: 25
    • View Profile
Re: [QUESTION] Custom Login screen/music
« Reply #8 on: July 27, 2013, 10:08:19 pm »
I have the music under control, however I cannot locate the image to replace & how to rid myself of this dragon. Thank you for your help, stoneharry.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Ascathos

  • Moderators
  • Creator of Worlds
  • *****
  • Posts: 1129
    • View Profile
Re: [QUESTION] Custom Login screen/music
« Reply #9 on: July 27, 2013, 10:42:29 pm »
Quote from: "caduceus"
I have the music under control, however I cannot locate the image to replace & how to rid myself of this dragon. Thank you for your help, stoneharry.
That's a .m2. Somewhere within the world files. Can't remember.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

schlumpf

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 2967
    • View Profile
Re: [QUESTION] Custom Login screen/music
« Reply #10 on: July 27, 2013, 11:57:54 pm »
default login background models are in interface/model/ or something like that. Non-locale, iirc.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »