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

Plutonium

  1. Home
  2. BO2 Modding Releases & Resources
  3. [BO2] Vanilla+ Ultimate 2026 Pack | CFG Settings + HQ hud + Textures patch for 4k + more!

[BO2] Vanilla+ Ultimate 2026 Pack | CFG Settings + HQ hud + Textures patch for 4k + more!

Scheduled Pinned Locked Moved BO2 Modding Releases & Resources
29 Posts 15 Posters 2.0k Views 4 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.
  • GAZAwillbefree GAZAwillbefree

    idk i noticed to much input lag compared to just using rtss but good job regardless

    rez. Offline
    rez. Offline
    rez.
    wrote last edited by
    #18

    GAZAwillbefree Try to type command :

    raw_input 0 or 1
    

    For me raw input is on 0 cause i have input lag, BUT for a lot of people, you need to turn 1.
    ❤

    1 Reply Last reply
    1
    • GAZAwillbefree Offline
      GAZAwillbefree Offline
      GAZAwillbefree
      wrote last edited by
      #19

      also i want to delete the whole mod i deleted everything from images folder is that all?

      rez. 1 Reply Last reply
      0
      • GAZAwillbefree GAZAwillbefree

        also i want to delete the whole mod i deleted everything from images folder is that all?

        rez. Offline
        rez. Offline
        rez.
        wrote last edited by
        #20

        GAZAwillbefree Yes exactly 👌🏻

        GAZAwillbefree 1 Reply Last reply
        1
        • Rayantina Offline
          Rayantina Offline
          Rayantina
          wrote last edited by
          #21

          how do i delete the mod? i deleted original downloaded folder but i cant find the "images" folder GAZAwillbefree was talking about

          GAZAwillbefree 1 Reply Last reply
          1
          • punkpunk Offline
            punkpunk Offline
            punkpunk
            wrote last edited by
            #22
            This post is deleted!
            1 Reply Last reply
            0
            • rez. rez.

              GAZAwillbefree Yes exactly 👌🏻

              GAZAwillbefree Offline
              GAZAwillbefree Offline
              GAZAwillbefree
              wrote last edited by
              #23

              Rez. thx broski

              1 Reply Last reply
              0
              • Rayantina Rayantina

                how do i delete the mod? i deleted original downloaded folder but i cant find the "images" folder GAZAwillbefree was talking about

                GAZAwillbefree Offline
                GAZAwillbefree Offline
                GAZAwillbefree
                wrote last edited by
                #24

                Rayantina u have to go to C:\Users\whateveryourusernameis\AppData\Local\Plutonium\storage\t6 then u should see the images folder u can delete everything inside the images folder or just delete the images folder by itself if u dont have other stuff in it

                1 Reply Last reply
                0
                • rez. rez.

                  FaZe Flick There is command for linux:

                  #!/bin/bash
                  
                  SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
                  
                  DIR_CFG="$SCRIPT_DIR/CFG+Emblems/Files"
                  DIR_CAMO="$SCRIPT_DIR/Camos+Colors+HQ/Files"
                  
                  DEST_PLAYERS="$HOME/.local/share/plutonium/storage/t6/players"
                  DEST_IMAGES="$HOME/.local/share/plutonium/storage/t6/images"
                  
                  echo "=============================================="
                  echo "       Plutonium Full Pack Installer"
                  echo "=============================================="
                  echo ""
                  
                  # -----------------------------------------------
                  # 1. CFG + EMBLEMS
                  # -----------------------------------------------
                  echo "[1/2] Installing CFG & Emblems..."
                  echo "----------------------------------------------"
                  
                  if [ ! -d "$DIR_CFG" ]; then
                      echo "[ERROR] Folder 'CFG+Emblems/Files' not found!"
                      echo "Expected: $DIR_CFG"
                      exit 1
                  fi
                  
                  if [ ! -d "$DEST_PLAYERS" ]; then
                      echo "[ERROR] Plutonium player folder not found!"
                      echo "Expected: $DEST_PLAYERS"
                      exit 1
                  fi
                  
                  for FILE in \
                      plutonium_mp.cfg \
                      plutonium_zm.cfg \
                      1#emblem.emblem \
                      2#emblem.emblem \
                      3#emblem.emblem \
                      4#emblem.emblem \
                      5#emblem.emblem \
                      6#emblem.emblem \
                      7#emblem.emblem \
                      8#emblem.emblem \
                      9#emblem.emblem
                  do
                      if [ -f "$DIR_CFG/$FILE" ]; then
                          if [ -f "$DEST_PLAYERS/$FILE" ]; then
                              mv "$DEST_PLAYERS/$FILE" "$DEST_PLAYERS/$FILE.backup"
                              echo "[BACKUP] $FILE"
                          fi
                          cp "$DIR_CFG/$FILE" "$DEST_PLAYERS/"
                          echo "[INSTALLED] $FILE"
                      else
                          echo "[MISSING] $FILE"
                      fi
                  done
                  
                  echo ""
                  
                  # -----------------------------------------------
                  # 2. CAMOS + COLORS + HQ (.IWI)
                  # -----------------------------------------------
                  echo "[2/2] Installing Camos, Colors & HQ Images..."
                  echo "----------------------------------------------"
                  
                  if [ ! -d "$DIR_CAMO" ]; then
                      echo "[ERROR] Folder 'Camos+Colors+HQ/Files' not found!"
                      echo "Expected: $DIR_CAMO"
                      exit 1
                  fi
                  
                  if [ ! -d "$DEST_IMAGES" ]; then
                      echo "[INFO] Images folder not found. Creating it..."
                      mkdir -p "$DEST_IMAGES"
                      echo "[CREATED] Images folder successfully."
                  fi
                  
                  FOUND_IWI=0
                  
                  for FILE in "$DIR_CAMO"/*.iwi; do
                      if [ -f "$FILE" ]; then
                          FOUND_IWI=1
                          cp "$FILE" "$DEST_IMAGES/"
                          echo "[INSTALLED] $(basename "$FILE")"
                      fi
                  done
                  
                  if [ "$FOUND_IWI" -eq 0 ]; then
                      echo ""
                      echo "[ERROR] No .iwi files found in 'Camos+Colors+HQ/Files'!"
                      exit 1
                  fi
                  
                  echo ""
                  echo "=============================================="
                  echo "     All packs installed successfully!"
                  echo ""
                  echo "             - By REZ"
                  echo "=============================================="
                  echo ""
                  
                  xdg-open "$DEST_PLAYERS" 2>/dev/null &
                  xdg-open "$DEST_IMAGES" 2>/dev/null &
                  

                  Maybe change this with your game location:

                  ~/.local/share/plutonium/
                  

                  And use this to find your game location :

                  find ~ -name "plutonium" -type d 2>/dev/null
                  
                  FaZe Flick Offline
                  FaZe Flick Offline
                  FaZe Flick
                  wrote last edited by
                  #25

                  Rez. do i have to put all this in the terminal?

                  rez. 1 Reply Last reply
                  0
                  • FaZe Flick FaZe Flick

                    Rez. do i have to put all this in the terminal?

                    rez. Offline
                    rez. Offline
                    rez.
                    wrote last edited by
                    #26

                    FaZe Flick Or just found file location, drag and drop LOL, but no autobackup

                    1 Reply Last reply
                    0
                    • hmKing1337 Offline
                      hmKing1337 Offline
                      hmKing1337
                      wrote last edited by
                      #27

                      this is really cool, good job. but by any chance do you know how to change the duel band thermal background colour from green to something else?

                      1 Reply Last reply
                      0
                      • GAZAwillbefree Offline
                        GAZAwillbefree Offline
                        GAZAwillbefree
                        wrote last edited by
                        #28

                        i redownloaded the mod again how can i delete the green lava i want the original lava back? and will u ever do this for bo1? thx

                        rez. 1 Reply Last reply
                        0
                        • GAZAwillbefree GAZAwillbefree

                          i redownloaded the mod again how can i delete the green lava i want the original lava back? and will u ever do this for bo1? thx

                          rez. Offline
                          rez. Offline
                          rez.
                          wrote last edited by
                          #29

                          GAZAwillbefree delete all "rock" iwi files

                          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
                          • 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