Skip to content
  • 0 Unread 0
  • Recent
  • Popular
  • Users
  • 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
38 Posts 20 Posters 5.0k Views 6 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
    #17

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

    rez. 1 Reply Last reply
    0
    • A Former User? A Former User

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

      rez. Offline
      rez. Offline
      rez.
      wrote on 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
      0
      • A Former User? Offline
        A Former User? Offline
        A Former User
        wrote on 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
        • A Former User? A Former User

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

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

          @GAZAwillbefree Yes exactly 👌🏻

          A Former User? 1 Reply Last reply
          0
          • Rayantina Offline
            Rayantina Offline
            Rayantina
            wrote on 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

            A Former User? 1 Reply Last reply
            0
            • punkpunk Offline
              punkpunk Offline
              punkpunk
              wrote on last edited by
              #22
              This post is deleted!
              1 Reply Last reply
              0
              • rez. rez.

                @GAZAwillbefree Yes exactly 👌🏻

                A Former User? Offline
                A Former User? Offline
                A Former User
                wrote on 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

                  A Former User? Offline
                  A Former User? Offline
                  A Former User
                  wrote on 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 on 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 on last edited by
                      #26

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

                      1 Reply Last reply
                      2
                      • hmKing1337 Offline
                        hmKing1337 Offline
                        hmKing1337
                        wrote on 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
                        • A Former User? Offline
                          A Former User? Offline
                          A Former User
                          wrote on 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
                          • A Former User? A Former User

                            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 on last edited by
                            #29

                            @GAZAwillbefree delete all "rock" iwi files

                            1 Reply Last reply
                            2
                            • DrSkum88 Offline
                              DrSkum88 Offline
                              DrSkum88
                              wrote on last edited by
                              #30

                              The textures look nice at 4k, but I'm not a fan of some of the color changes (the smoke being purple in aftermath is a big turn off). An option that is just the OG game but sharper would be nice.

                              rez. 1 Reply Last reply
                              0
                              • DrSkum88 DrSkum88

                                The textures look nice at 4k, but I'm not a fan of some of the color changes (the smoke being purple in aftermath is a big turn off). An option that is just the OG game but sharper would be nice.

                                rez. Offline
                                rez. Offline
                                rez.
                                wrote on last edited by
                                #31

                                DrSkum88 Delete FXT files 🙂

                                DrSkum88 1 Reply Last reply
                                3
                                • ChicoShy ChicoShy referenced this topic on
                                • rez. rez.

                                  DrSkum88 Delete FXT files 🙂

                                  DrSkum88 Offline
                                  DrSkum88 Offline
                                  DrSkum88
                                  wrote on last edited by
                                  #32

                                  rez. said:

                                  DrSkum88 Delete FXT files 🙂

                                  That's much better.
                                  One more question, what's the file(s) for the menus? I'd rather have the OG than the BO3 image.

                                  1 Reply Last reply
                                  0
                                  • rez. rez. referenced this topic on
                                  • rez. rez.

                                    Sylv3on Delete fxt file. Or add me discord "alva.rez" i can give you fxt file without color, or custom color, or "transparency" like no fxt in game (pretty nice for tryharding)

                                    ElvisCool4781MX Offline
                                    ElvisCool4781MX Offline
                                    ElvisCool4781MX
                                    wrote on last edited by
                                    #33

                                    rez. I've sent you a friend request on Discord for the transparent fxt files, I hope you reply 😄

                                    1 Reply Last reply
                                    0
                                    • SugarButterBuns Offline
                                      SugarButterBuns Offline
                                      SugarButterBuns
                                      wrote on last edited by
                                      #34

                                      Electric Cherry and Who's Who perk icons haven't been touched. And is the lava on Tranzit suppose to look green?

                                      P_McNewHold 1 Reply Last reply
                                      0
                                      • SugarButterBuns SugarButterBuns

                                        Electric Cherry and Who's Who perk icons haven't been touched. And is the lava on Tranzit suppose to look green?

                                        P_McNewHold Offline
                                        P_McNewHold Offline
                                        P_McNewHold
                                        Contributor
                                        wrote on last edited by P_McNewHold
                                        #35

                                        SugarButterBuns That's what the author thinks are "Ultimate" changes to the game. Alongside the previously discussed changes, that's a big turn off for me expecting from something actually calling itself Vanilla.

                                        rez. 1 Reply Last reply
                                        1
                                        • P_McNewHold P_McNewHold

                                          SugarButterBuns That's what the author thinks are "Ultimate" changes to the game. Alongside the previously discussed changes, that's a big turn off for me expecting from something actually calling itself Vanilla.

                                          rez. Offline
                                          rez. Offline
                                          rez.
                                          wrote on last edited by
                                          #36

                                          P_McNewHold Vanilla texture in 4k lowest size, just delete fxt file, if you are so retarded for understand i cant do anything for you my contributor

                                          P_McNewHold 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
                                          • Popular
                                          • Users
                                          • Donate