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

────────────────
Vanilla+ 1.0
This pack will allow you to play the base game in HQ+ resolution (4K textures) but with unmatched smoothness. It took me 5 years to find the ideal settings for this game, and to obtain or create higher-quality game textures that are 10 times smaller in file size.
So your game will be ultra-smooth and ultra-gorgeous, even on low-end PCs.
────────────────
DOWNLOAD HERE────────────────
️ VIDEO SHOWCASE────────────────
The pack (ZIP) contains:
- 2 Backgrounds (MP/ZM) - CFG file (+100 modified lines) (MP) - CFG file (+100 modified lines) (ZM) - 9 Custom emblems (MP) - Default texture for all equipment modified (MP/ZM) - 177 Game textures (MP/ZM) - Automatic installation and backup script (.bat)────────────────
CFG details:
SYSTEM COMPATIBILITY - Primary GPU Targeted: Modern Dedicated Graphics (e.g., AMD RX / NVIDIA RTX) - VRAM Overhead: ~1.5 GB - 2 GB Peak - Recommended Monitor Refresh Rate: 144Hz - 240Hz+ FRAME-RATE & GRAPHICAL SYNCHRONIZATION -> - Caps the internal tick/render loop at 250 FPS. - Eliminates micro stuttering and frame-time jitter while preventing GPU thermal throttling and power spikes associated with unconstrained rendering. DIRECT INPUT PROCESSING & SUB-PIXEL ACCURACY - Forces the engine to capture raw HID (Human Interface Device) packets directly from the mouse controller, bypassing Windows API pointer precision algorithms, dynamic acceleration curves, and desktop scaling. HARDWARE-LEVEL ANTI-ALIASING & ALPHA PASSES -> - Forces 16x Multi-Sample Anti-Aliasing (MSAA) at the rasterization stage (not FXAA anymore), eliminating edge aliasing and sub-pixel crawling artifacts. - Activates Alpha-to-Coverage (A2C) anti-aliasing for transparent alpha-tested geometry (foliage, wire fences, glass textures). ADVANCED SAMPLING & TEXTURE FILTERING -> - Locks 16x Anisotropic Filtering across all texture mip-maps, maintaining high-frequency detail resolution on oblique surfaces and long view-distances. FORCE TRILINEAR -> - Overrides bilinear fallbacks, forcing full trilinear interpolation between mip-map transitions to stop texture shimmer during camera rotation. DYNAMIC LIGHTING & SCREEN-SPACE SHADOW MAPS -> - Enables real-time shadow mapping pipelines with 2x resolution depth buffers for sharp, accurate dynamic soft shadows from local lights & sun. - Enables high-precision Screen Space Ambient Occlusion (SSAO) to calculate accurate contact shadows and ambient occlusion in crevices and geometry joins. - Enables floating-point precision bloom buffers for realistic light-bleed and high-dynamic-range lens flared highlights. MODEL LOD & RIGID GEOMETRY BOUNDS -> - Disables dynamic Level of Detail (LOD) degradation algorithms. - Forces the game engine to render high-poly mesh models for character skins, weapons, and static map objects at extreme distance draw-calls. ISet the file to "Read-Only" (Optional) if you want to prevent the game menu from overriding your custom commands.────────────────
Texture details:
- Enhanced HUD quality with improved typography and crisp UI images. - Adjusted colors and default equipment camos. - Higher resolution with optimized texture file sizes. - Tweaked FX texture elements (smoke, water, fire, sky, light, sun, clouds, etc.). - Enhanced purple accents (lasers, crosshairs, power-ups, etc.). - All textures converted from hex bytes (Python .webp > .iwi, not PNG > iwi).────────────────
Enjoy

-
absolute cinema
-
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?
-
HOW???????????
-
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


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