Skip to content
  • 0 Unread 0
  • 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
130 Posts 58 Posters 104.0k 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.
  • A Former User? Offline
    A Former User? Offline
    A Former User
    wrote on last edited by
    #68

    Is it possible to add this mod for a bo2 plutonium server?

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

      Is it possible to add this mod for a bo2 plutonium server?

      dontknowletspl Offline
      dontknowletspl Offline
      dontknowletspl
      wrote on last edited by
      #69

      Monologue yes. I am hosting server which has these maps and few new maps. you can find it by searching UnknownsServer

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

        Monologue yes. I am hosting server which has these maps and few new maps. you can find it by searching UnknownsServer

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

        @dontknowletsplay Im basically asking how can I set this up for my server. Do you have a guide?

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

          @dontknowletsplay Im basically asking how can I set this up for my server. Do you have a guide?

          dontknowletspl Offline
          dontknowletspl Offline
          dontknowletspl
          wrote on last edited by dontknowletspl
          #71

          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.

          JezuzLizard MumTookTheXbox 2 Replies Last reply
          0
          • dontknowletspl 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.

            JezuzLizard Offline
            JezuzLizard Offline
            JezuzLizard
            Plutonium Staff
            wrote on last edited by
            #72

            @dontknowletsplay Monologue You can make custom configs in the gamesettings folder and in the sv_maprotation you would do

            sv_maprotation "exec <config1name>.cfg map <mapname1> exec <config2name>.cfg map <mapname2>" etc up to 1024 characters
            

            and in the config you would a make a copy and modify the base config the map uses such as zm_transit_classic.cfg and add the dvar CUSTOM_MAP with the desired value of it at the bottom of the config.

            An example of this is this mod: https://github.com/JezuzLizard/T6-Plutonium-Grief-Promod/tree/main/configs/gamesettings .

            1 Reply Last reply
            1
            • Casporro10 Offline
              Casporro10 Offline
              Casporro10
              wrote on last edited by
              #73
              This post is deleted!
              1 Reply Last reply
              0
              • GODmodeON Offline
                GODmodeON Offline
                GODmodeON
                wrote on last edited by
                #74

                on the custom maps. why cant i get more weapons.

                like the custom map on the bridge, you cant get the death machine etc or are they just scripted to not get them?? fix this modder

                hindercanrun dontknowletspl 2 Replies Last reply
                0
                • GODmodeON GODmodeON

                  on the custom maps. why cant i get more weapons.

                  like the custom map on the bridge, you cant get the death machine etc or are they just scripted to not get them?? fix this modder

                  hindercanrun Offline
                  hindercanrun Offline
                  hindercanrun
                  Contributor
                  wrote on last edited by
                  #75

                  GODmodeON why do u want a gun that slows u down so much?

                  1 Reply Last reply
                  0
                  • GODmodeON GODmodeON

                    on the custom maps. why cant i get more weapons.

                    like the custom map on the bridge, you cant get the death machine etc or are they just scripted to not get them?? fix this modder

                    dontknowletspl Offline
                    dontknowletspl Offline
                    dontknowletspl
                    wrote on last edited by dontknowletspl
                    #76

                    GODmodeON There is nothing to fix. Deathmachine is used in mob of the dead as powerup and when powerup end player would lose his gun. Check the original post comments which you can find in this post someone else asked this already.

                    hindercanrun 1 Reply Last reply
                    0
                    • dontknowletspl dontknowletspl

                      GODmodeON There is nothing to fix. Deathmachine is used in mob of the dead as powerup and when powerup end player would lose his gun. Check the original post comments which you can find in this post someone else asked this already.

                      hindercanrun Offline
                      hindercanrun Offline
                      hindercanrun
                      Contributor
                      wrote on last edited by
                      #77

                      @dontknowletsplay you can get the death machine out of the box in motd, idk if he means that

                      dontknowletspl 1 Reply Last reply
                      0
                      • hindercanrun hindercanrun

                        @dontknowletsplay you can get the death machine out of the box in motd, idk if he means that

                        dontknowletspl Offline
                        dontknowletspl Offline
                        dontknowletspl
                        wrote on last edited by
                        #78

                        hindercanrun Yea like i said player would lose his gun and because of this it is not in box.

                        1 Reply Last reply
                        0
                        • dontknowletspl dontknowletspl

                          This post is deleted!

                          DevilVOs Offline
                          DevilVOs Offline
                          DevilVOs
                          wrote on last edited by
                          #79

                          @dontknowletsplay How do I remove the maps from my game? I enjoyed them, but every time I launch tranzit it gives me an error and Im permanently stuck on the bridge map when I launch motd solo

                          hindercanrun 1 Reply Last reply
                          0
                          • DevilVOs DevilVOs

                            @dontknowletsplay How do I remove the maps from my game? I enjoyed them, but every time I launch tranzit it gives me an error and Im permanently stuck on the bridge map when I launch motd solo

                            hindercanrun Offline
                            hindercanrun Offline
                            hindercanrun
                            Contributor
                            wrote on last edited by
                            #80

                            DevilVOs remove the scripts from ur scripts folder

                            1 Reply Last reply
                            2
                            • YoXpertguyZ Offline
                              YoXpertguyZ Offline
                              YoXpertguyZ
                              wrote on last edited by
                              #81

                              do you need to use this in LAN mode or is online fine like in custom games so you can play it with friends

                              hindercanrun 1 Reply Last reply
                              0
                              • YoXpertguyZ YoXpertguyZ

                                do you need to use this in LAN mode or is online fine like in custom games so you can play it with friends

                                hindercanrun Offline
                                hindercanrun Offline
                                hindercanrun
                                Contributor
                                wrote on last edited by
                                #82

                                YoXpertguyZ no

                                1 Reply Last reply
                                0
                                • hindercanrun Offline
                                  hindercanrun Offline
                                  hindercanrun
                                  Contributor
                                  wrote on last edited by
                                  #83

                                  this won’t get u banned

                                  1 Reply Last reply
                                  0
                                  • Secorius Offline
                                    Secorius Offline
                                    Secorius
                                    wrote on last edited by
                                    #84

                                    I can't get it to work, the only things i've done is install survivals then started without update but the option still isn't showing, i noticed the privategamelobby_project doesn't move by itself when i press install_survivals i have to do it automatically and it still doesn't show up

                                    hindercanrun 1 Reply Last reply
                                    0
                                    • Secorius Secorius

                                      I can't get it to work, the only things i've done is install survivals then started without update but the option still isn't showing, i noticed the privategamelobby_project doesn't move by itself when i press install_survivals i have to do it automatically and it still doesn't show up

                                      hindercanrun Offline
                                      hindercanrun Offline
                                      hindercanrun
                                      Contributor
                                      wrote on last edited by
                                      #85

                                      Secorius did you put it in ur plutonium folder

                                      Secorius 1 Reply Last reply
                                      0
                                      • dontknowletspl dontknowletspl

                                        This post is deleted!

                                        Nyx18 Offline
                                        Nyx18 Offline
                                        Nyx18
                                        wrote on last edited by
                                        #86

                                        @dontknowletsplay wow thanks man, i make manual install for anyone cant install automatically https://database4all.notion.site/database4all/Custom-Map-Plutonium-5538f8ebfcf043539029364b5c266ae4 little dédication for french people ❤ 🙂 🙂

                                        ps: notion are in english 4all

                                        1 Reply Last reply
                                        0
                                        • TheOnlyXo Offline
                                          TheOnlyXo Offline
                                          TheOnlyXo
                                          wrote on last edited by
                                          #87

                                          is this map only meant for solo? ive been trying to play with a friend and its not working.. "unable to join session", is there a fix to this or you simply cant play co-op?

                                          1 Reply Last reply
                                          0

                                          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                          With your input, this post could be even better 💗

                                          Register Login
                                          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
                                          • Unread 0
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Donate