Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

  1. Home
  2. BO2 Modding Releases & Resources
  3. [Release] [Zombies] "Custom Survival Maps" option for custom games

[Release] [Zombies] "Custom Survival Maps" option for custom games

Scheduled Pinned Locked Moved BO2 Modding Releases & Resources
124 Posts 53 Posters 59.2k Views 8 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • dontknowletsplundefined dontknowletspl

    Monologue There is no guide for this. Map is picked by dvar "CUSTOM_MAP" so you have to either make script which changes this dvars value or manually set it in config.

    This is my map rotation script. (This might not be correct because on my server is more maps and i had to cut out some of the code)

    main()
    {
        if(getDvar("CUSTOM_MAP_ENABLED") != "1" )
    		setDvar( "CUSTOM_MAP", 1 );
            
        thread map_rotation();
    }
    
    map_rotation()
    {
    	level waittill( "end_game");
    	wait 2;
        setDvar( "CUSTOM_MAP_ENABLED", 1 );
        
        if( getDvar("CUSTOM_MAP") == "1")
            setDvar( "CUSTOM_MAP", 2 );
    
        else if( getDvar("CUSTOM_MAP") == "2" )
            setDvar( "CUSTOM_MAP", 3 );
    
        else if( getDvar("CUSTOM_MAP") == "3" )
            setDvar( "CUSTOM_MAP", 4 );
    
        else if( getDvar("CUSTOM_MAP") == "4" )
            setDvar( "CUSTOM_MAP", 5 );
    
        else if( getDvar("CUSTOM_MAP") == "5" )
        {
            SetDvar("sv_maprotation","exec zm_classic_prison.cfg map zm_prison");
            setDvar( "CUSTOM_MAP", 6 );
        }
        else if( getDvar("CUSTOM_MAP") == "6" )
        {
            SetDvar("sv_maprotation","exec zm_classic_prison.cfg map zm_prison");
            setDvar( "CUSTOM_MAP", 7 );
        }
        if(getDvar("CUSTOM_MAP") == "7")
        {
            SetDvar("sv_maprotation","exec zm_classic_transit.cfg map zm_transit");
            setDvar( "CUSTOM_MAP", 1 );
        }
    	return;
    }
    

    Also i recommend using the map folders so wrong files cannot be loaded in wrong maps.

    Example: transit maps goes into zm_transit folder etc.

    MumTookTheXboxundefined Offline
    MumTookTheXboxundefined Offline
    MumTookTheXbox
    wrote on last edited by
    #89
    This post is deleted!
    1 Reply Last reply
    0
    • A Former User? Offline
      A Former User? Offline
      A Former User
      wrote on last edited by A Former User
      #90

      @dontknowletsplay JezuzLizard Im sorry but I really don't understand how to host it on my server, do you guys have a more detailed guide? Im really confused since I do not know anything about coding

      dontknowletsplundefined 1 Reply Last reply
      0
      • A Former User? A Former User

        @dontknowletsplay JezuzLizard Im sorry but I really don't understand how to host it on my server, do you guys have a more detailed guide? Im really confused since I do not know anything about coding

        dontknowletsplundefined Offline
        dontknowletsplundefined Offline
        dontknowletspl
        wrote on last edited by
        #91

        Monologue Compile this

        main()
        {
            if(getDvar("CUSTOM_MAP_ENABLED") != "1" )
                setDvar( "CUSTOM_MAP", 1 ); //nacht
                
            thread map_rotation();
        }
        
        map_rotation()
        {
            level waittill( "end_game");
            wait 2;
            setDvar( "CUSTOM_MAP_ENABLED", 1 );
            
            if( getDvar("CUSTOM_MAP") == "1")
                setDvar( "CUSTOM_MAP", 2 ); //diner
        
            else if( getDvar("CUSTOM_MAP") == "2" && getdvar("mapname") == "zm_transit" )
                setDvar( "CUSTOM_MAP", 3 ); //bus
        
            else if( getDvar("CUSTOM_MAP") == "3" )
                setDvar( "CUSTOM_MAP", 4 ); //forest
        
            else if( getDvar("CUSTOM_MAP") == "4" )
                setDvar( "CUSTOM_MAP", 5 ); //lab
        
            else if( getDvar("CUSTOM_MAP") == "5" )
            {
                SetDvar("sv_maprotation","exec zm_classic_prison.cfg map zm_prison");
                setDvar( "CUSTOM_MAP", 1 ); //bridge
            }
            else if( getDvar("CUSTOM_MAP") == "1" && getdvar("mapname") == "zm_prison" )
            {
                SetDvar("sv_maprotation","exec zm_classic_prison.cfg map zm_prison");
                setDvar( "CUSTOM_MAP", 2 ); //rooftop
            }
            else if(getDvar("CUSTOM_MAP") == "2" && getdvar("mapname") == "zm_prison")
            {
                SetDvar("sv_maprotation","exec zm_classic_transit.cfg map zm_transit");
                setDvar( "CUSTOM_MAP", 1 ); //nacht
            }
            return;
        }
        

        and copy it with the zm_prison and zm_transit folders which you get from the download link to %localappdata%/plutonium/storage/t6/scripts/zm

        A Former User? 1 Reply Last reply
        0
        • dontknowletsplundefined dontknowletspl

          Monologue Compile this

          main()
          {
              if(getDvar("CUSTOM_MAP_ENABLED") != "1" )
                  setDvar( "CUSTOM_MAP", 1 ); //nacht
                  
              thread map_rotation();
          }
          
          map_rotation()
          {
              level waittill( "end_game");
              wait 2;
              setDvar( "CUSTOM_MAP_ENABLED", 1 );
              
              if( getDvar("CUSTOM_MAP") == "1")
                  setDvar( "CUSTOM_MAP", 2 ); //diner
          
              else if( getDvar("CUSTOM_MAP") == "2" && getdvar("mapname") == "zm_transit" )
                  setDvar( "CUSTOM_MAP", 3 ); //bus
          
              else if( getDvar("CUSTOM_MAP") == "3" )
                  setDvar( "CUSTOM_MAP", 4 ); //forest
          
              else if( getDvar("CUSTOM_MAP") == "4" )
                  setDvar( "CUSTOM_MAP", 5 ); //lab
          
              else if( getDvar("CUSTOM_MAP") == "5" )
              {
                  SetDvar("sv_maprotation","exec zm_classic_prison.cfg map zm_prison");
                  setDvar( "CUSTOM_MAP", 1 ); //bridge
              }
              else if( getDvar("CUSTOM_MAP") == "1" && getdvar("mapname") == "zm_prison" )
              {
                  SetDvar("sv_maprotation","exec zm_classic_prison.cfg map zm_prison");
                  setDvar( "CUSTOM_MAP", 2 ); //rooftop
              }
              else if(getDvar("CUSTOM_MAP") == "2" && getdvar("mapname") == "zm_prison")
              {
                  SetDvar("sv_maprotation","exec zm_classic_transit.cfg map zm_transit");
                  setDvar( "CUSTOM_MAP", 1 ); //nacht
              }
              return;
          }
          

          and copy it with the zm_prison and zm_transit folders which you get from the download link to %localappdata%/plutonium/storage/t6/scripts/zm

          A Former User? Offline
          A Former User? Offline
          A Former User
          wrote on last edited by A Former User
          #92

          @dontknowletsplay hey thank you for your response it worked, the only problem I have is I cannot run this on my actual server without the vanilla tranzit being bugged, the bus doesn't work, ect, is there a way I can run the mod without actually glitching the vanilla maps, because I got a custom bank and level system and I want it to be linked to the main plutonium instance, sadly I had to run a second plutonium instance because it wasn't working,

          Im basically looking to run the vanilla tranzit map a second server with the custom maps with the same plutonium instance

          Thank you for your help in advance!

          dontknowletsplundefined 1 Reply Last reply
          0
          • A Former User? A Former User

            @dontknowletsplay hey thank you for your response it worked, the only problem I have is I cannot run this on my actual server without the vanilla tranzit being bugged, the bus doesn't work, ect, is there a way I can run the mod without actually glitching the vanilla maps, because I got a custom bank and level system and I want it to be linked to the main plutonium instance, sadly I had to run a second plutonium instance because it wasn't working,

            Im basically looking to run the vanilla tranzit map a second server with the custom maps with the same plutonium instance

            Thank you for your help in advance!

            dontknowletsplundefined Offline
            dontknowletsplundefined Offline
            dontknowletspl
            wrote on last edited by
            #93

            Monologue Cannot help you with that problem since i run only 3 same servers.

            If EFG server is yours it seems like you took wrong map rotation script from the comments and motd maps doesnt work properly. Take the one i commented back to you.

            1 Reply Last reply
            0
            • hindercanrunundefined hindercanrun

              Secorius did you put it in ur plutonium folder

              Secoriusundefined Offline
              Secoriusundefined Offline
              Secorius
              wrote on last edited by
              #94
              This post is deleted!
              1 Reply Last reply
              0
              • dontknowletsplundefined dontknowletspl

                This post is deleted!

                STARIJ_DEDundefined Offline
                STARIJ_DEDundefined Offline
                STARIJ_DED
                wrote on last edited by
                #95

                @dontknowletsplay Can u play these custom maps with your friends?

                dontknowletsplundefined 1 Reply Last reply
                0
                • dontknowletsplundefined dontknowletspl

                  This post is deleted!

                  simplemortaljrundefined Offline
                  simplemortaljrundefined Offline
                  simplemortaljr
                  wrote on last edited by
                  #96

                  @dontknowletsplay Hello, I need to know in which folder I should put the file privategamelobby_project.lua

                  dontknowletsplundefined 1 Reply Last reply
                  0
                  • STARIJ_DEDundefined STARIJ_DED

                    @dontknowletsplay Can u play these custom maps with your friends?

                    dontknowletsplundefined Offline
                    dontknowletsplundefined Offline
                    dontknowletspl
                    wrote on last edited by
                    #97

                    STARIJ_DED Never tested it but you should be able if host has the mod installed.

                    1 Reply Last reply
                    0
                    • simplemortaljrundefined simplemortaljr

                      @dontknowletsplay Hello, I need to know in which folder I should put the file privategamelobby_project.lua

                      dontknowletsplundefined Offline
                      dontknowletsplundefined Offline
                      dontknowletspl
                      wrote on last edited by
                      #98

                      simplemortaljr You place it to

                      %localappdata%\Plutonium\storage\t6\ui_mp\t6\menus
                      

                      or use the install_survivals.bat which will copy all the files automatically.

                      1 Reply Last reply
                      0
                      • TheZProject115undefined TheZProject115

                        Hey quick question...think you could end up combining the privategamelobby_project file with JezuzLizards file? since I'm trying to play without having to constantly switch files with mates.

                        A Former User? Offline
                        A Former User? Offline
                        A Former User
                        wrote on last edited by
                        #99
                        This post is deleted!
                        1 Reply Last reply
                        0
                        • darkjhon_1203undefined Offline
                          darkjhon_1203undefined Offline
                          darkjhon_1203
                          wrote on last edited by
                          #100

                          could you add survival maps to origins, buried and die rise?

                          dontknowletsplundefined 1 Reply Last reply
                          0
                          • darkjhon_1203undefined darkjhon_1203

                            could you add survival maps to origins, buried and die rise?

                            dontknowletsplundefined Offline
                            dontknowletsplundefined Offline
                            dontknowletspl
                            wrote on last edited by
                            #101

                            darkjhon_1203 There is already some on our servers 7385d68c-bf79-473a-a647-7c4e201a0aec-kuva.png df8db473-7b21-44f1-8db3-b2b9f9f33a3a-kuva.png

                            darkjhon_1203undefined 1 Reply Last reply
                            0
                            • dontknowletsplundefined dontknowletspl

                              darkjhon_1203 There is already some on our servers 7385d68c-bf79-473a-a647-7c4e201a0aec-kuva.png df8db473-7b21-44f1-8db3-b2b9f9f33a3a-kuva.png

                              darkjhon_1203undefined Offline
                              darkjhon_1203undefined Offline
                              darkjhon_1203
                              wrote on last edited by
                              #102

                              @dontknowletsplay could you add to custom games lobby?, my internet is very bad to play

                              dontknowletsplundefined 1 Reply Last reply
                              0
                              • dontknowletsplundefined dontknowletspl

                                This post is deleted!

                                Amatras_xundefined Offline
                                Amatras_xundefined Offline
                                Amatras_x
                                wrote on last edited by
                                #103
                                This post is deleted!
                                dontknowletsplundefined Amatras_xundefined 2 Replies Last reply
                                0
                                • darkjhon_1203undefined darkjhon_1203

                                  @dontknowletsplay could you add to custom games lobby?, my internet is very bad to play

                                  dontknowletsplundefined Offline
                                  dontknowletsplundefined Offline
                                  dontknowletspl
                                  wrote on last edited by
                                  #104

                                  darkjhon_1203 Im not updating this project anymore. It will stop working when plutonium decide stop using already compiled gsc files.

                                  1 Reply Last reply
                                  0
                                  • Amatras_xundefined Amatras_x

                                    This post is deleted!

                                    dontknowletsplundefined Offline
                                    dontknowletsplundefined Offline
                                    dontknowletspl
                                    wrote on last edited by
                                    #105

                                    Ahmed358 Try reading the install guide.

                                    darkjhon_1203undefined 1 Reply Last reply
                                    0
                                    • IamSwapundefined Offline
                                      IamSwapundefined Offline
                                      IamSwap
                                      wrote on last edited by
                                      #106
                                      This post is deleted!
                                      1 Reply Last reply
                                      0
                                      • dontknowletsplundefined dontknowletspl

                                        Ahmed358 Try reading the install guide.

                                        darkjhon_1203undefined Offline
                                        darkjhon_1203undefined Offline
                                        darkjhon_1203
                                        wrote on last edited by
                                        #107

                                        @dontknowletsplay Is there any way to play these maps but only me, without other players on the server?

                                        dontknowletsplundefined 1 Reply Last reply
                                        0
                                        • darkjhon_1203undefined darkjhon_1203

                                          @dontknowletsplay Is there any way to play these maps but only me, without other players on the server?

                                          dontknowletsplundefined Offline
                                          dontknowletsplundefined Offline
                                          dontknowletspl
                                          wrote on last edited by
                                          #108

                                          darkjhon_1203 The extra maps are only on our server and we will add more once in while.

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • 1
                                          • 2
                                          • 3
                                          • 4
                                          • 5
                                          • 6
                                          • 7
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Donate