Results 1 to 3 of 3

Thread: Need "WELCOME' Startup and ENDROUND Music Script for DM

  1. #1
    Private First Class G-Stuff002's Avatar
    Join Date
    Jan 2018
    Posts
    212
    Thanks
    42
    Thanked 109 Times in 107 Posts

    Need "WELCOME' Startup and ENDROUND Music Script for DM

    Hi guys, somebody know script code for DM Startup and endround Music ?

    I Finded only for TDM. (tdm.gsc) StartUp Welcome us_welcome.mp3

    Code:
    }

    //quake mod insert
    if(!level.splitscreen)
    {
    if(team == "allies")

    self playlocalSound("uk_welcome");

    else if(team == "axis")
    self playlocalSound("ge_welcome");

    }
    //end quake mod insert
    }

    Source:
    zzz_quakeheadshot_v1.1c.iwd or this is same zzz_Nukes_killingspree_beta1.0.iwd
    Last edited by G-Stuff002; 9th January 2018 at 07:23.

  2. #2
    Assadministrator IzNoGoD's Avatar
    Join Date
    Aug 2012
    Posts
    1,718
    Thanks
    17
    Thanked 1,068 Times in 674 Posts
    Quote Originally Posted by G-Stuff002 View Post
    Hi guys, somebody know script code for DM Startup and endround Music ?

    I Finded only for TDM. (tdm.gsc) StartUp Welcome us_welcome.mp3

    Code:
    }

    //quake mod insert
    if(!level.splitscreen)
    {
    if(team == "allies")

    self playlocalSound("uk_welcome");

    else if(team == "axis")
    self playlocalSound("ge_welcome");

    }
    //end quake mod insert
    }

    From:
    zzz_quakeheadshot_v1.1c.iwd or this is same zzz_Nukes_killingspree_beta1.0.iwd

    You should be able to get it working by inserting something like

    PHP Code:

    //quake mod insert
        
    if(!level.splitscreen)
        {
            if(
    team == "allies")

            
    self playlocalSound("uk_welcome");

            else if(
    team == "axis")
            
    self playlocalSound("ge_welcome");
        
        }
    //end quake mod insert 
    in your dm.gsc (source: tdm.gsc)
    "Does not work" is an error report for a bug between keyboard and chair.

    All hail Artie Effem

  3. #3
    Private First Class G-Stuff002's Avatar
    Join Date
    Jan 2018
    Posts
    212
    Thanks
    42
    Thanked 109 Times in 107 Posts
    This code work for me in TDM but i need something like this for DM for welcome sound and endround sound

    ...for TDM endround sound i use standart sounds but changed .wav (without any codes)


    This code in zzz_quakeheadshot_v1.1c.iwd Mod, mod which I use, but he does not have for DM



    ""Does not work" is an error..in dm.gsc" I Know!
    Last edited by G-Stuff002; 9th January 2018 at 07:52.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •