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
27 Posts 15 Posters 1.9k 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.
  • Diamond KK Offline
    Diamond KK Offline
    Diamond KK
    wrote last edited by
    #7

    Very cool, very cool

    1 Reply Last reply
    1
    • mr.kennutbuster mr.kennutbuster

      Rez. how did you make the fxt texture files look so good what did you use in you editing software to achieve such a good fxt texture?

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

      mr.kennutbuster hex recompiled from webp files 😛 🙏

      mr.kennutbuster 1 Reply Last reply
      0
      • Sylv3on Offline
        Sylv3on Offline
        Sylv3on
        wrote last edited by
        #9

        this is awesome honestly, really love how smooth the gameplay feels now. Is there a way to remove the purple smoke or edit it?

        krutoy rez. 2 Replies Last reply
        1
        • Sylv3on Sylv3on

          this is awesome honestly, really love how smooth the gameplay feels now. Is there a way to remove the purple smoke or edit it?

          krutoy Offline
          krutoy Offline
          krutoy
          wrote last edited by
          #10

          Sylv3on had the same issue, i just deleted all of the "fxt" files

          1 Reply Last reply
          0
          • Sylv3on Sylv3on

            this is awesome honestly, really love how smooth the gameplay feels now. Is there a way to remove the purple smoke or edit it?

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

            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)

            1 Reply Last reply
            0
            • TDALLAT Offline
              TDALLAT Offline
              TDALLAT
              wrote last edited by
              #12

              okays

              1 Reply Last reply
              0
              • rez. rez.

                mr.kennutbuster hex recompiled from webp files 😛 🙏

                mr.kennutbuster Offline
                mr.kennutbuster Offline
                mr.kennutbuster
                wrote last edited by
                #13

                Rez. you gotta show me i want to do the same thing with my camo pack make my fxt textures better lol

                1 Reply Last reply
                0
                • FaZe Flick Offline
                  FaZe Flick Offline
                  FaZe Flick
                  wrote last edited by
                  #14

                  how to install on linux?

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

                    how to install on linux?

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

                    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 1 Reply Last reply
                    0
                    • EliasXPX Offline
                      EliasXPX Offline
                      EliasXPX
                      wrote last edited by
                      #16

                      The Best

                      1 Reply Last reply
                      0
                      • GAZAwillbefree Offline
                        GAZAwillbefree Offline
                        GAZAwillbefree
                        wrote 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
                        • 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

                                          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