Jump to content
  • 0

Two Different Intro Songs


prominentalex

Question

I have a halo spawn script, and I have a song that plays ONLY when you first spawn in and halo jump. Now, I have a seperate intro song I want to play for players just logging in who have already spawned. Is there anyway to do that?

 

playsound introsong.ogg

 

else

 

playsound introsong2.ogg

 

 

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

in your init file if you have something like this already put it inside this statement or make a statement something like this on buttom:

waitUntil {!isNil ("PVDZE_plr_LoginRecord")};
if (dayzPlayerLogin2 select 2) then {
//play sound here for newspawn players
}else{
//play sound here for relogging players
};
Link to comment
Share on other sites

  • 0

class CfgSounds

{
    sounds[] =
    {
    introSong,introSong2
    };
    class introSong
    {
    name="introSong";
    sound[]={introSong.ogg,0.9,1};
    titles[] = {};
    };
    class introSong2
    {
    name="introSong2";
    sound[]={introSong2.ogg,0.9,1};
    titles[] = {};
    };
};
Link to comment
Share on other sites

  • 0

Thanks! I appreciate the help guys. In the init.sqf should it look like this?

 

 

p2_newspawn = compile preprocessFileLineNumbers "newspawn\newspawn_execute.sqf";

waitUntil {!isNil ("PVDZE_plr_LoginRecord")};
if (dayzPlayerLogin2 select 2) then
{
playsound "introSong";
}else{
playsound "introSong2";
};
    player spawn p2_newspawn;
};
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...