[BO2] Vanilla+ Ultimate 2026 Pack | CFG Settings + HQ hud + Textures patch for 4k + more!
-
Very cool, very cool
-
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?
mr.kennutbuster hex recompiled from webp files

-
this is awesome honestly, really love how smooth the gameplay feels now. Is there a way to remove the purple smoke or edit it?
-
this is awesome honestly, really love how smooth the gameplay feels now. Is there a way to remove the purple smoke or edit it?
-
mr.kennutbuster hex recompiled from webp files

Rez. you gotta show me i want to do the same thing with my camo pack make my fxt textures better lol
-
how to install on linux?
-
how to install on linux?
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 -
idk i noticed to much input lag compared to just using rtss but good job regardless
-
idk i noticed to much input lag compared to just using rtss but good job regardless
GAZAwillbefree Try to type command :
raw_input 0 or 1For me raw input is on 0 cause i have input lag, BUT for a lot of people, you need to turn 1.

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


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


Rez. thx broski
-
how do i delete the mod? i deleted original downloaded folder but i cant find the "images" folder GAZAwillbefree was talking about
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
-
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/nullRez. do i have to put all this in the terminal?
-
Rez. do i have to put all this in the terminal?
FaZe Flick Or just found file location, drag and drop LOL, but no autobackup
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