::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ::MCTweaks Via Batch :: ::Created by RU$$ [http://russdev.mooo.com/] :: ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: @ECHO OFF @setlocal enabledelayedexpansion @title Tweaks For Minecraft @cd C:\Users\%username%\AppData\Roaming\.minecraft tasklist | find "javaw" IF [%errorlevel%] EQU [0] (GOTO :Found) ELSE (GOTO :MENU) :Found cls echo ERROR: Minecraft is open! Please close and try agian. echo( pause goto :EOF :Menu cls echo __ __ _____ _______ _ echo ^| \/ ^|/ ____^|__ __^| ^| ^| echo ^| \ / ^| ^| ^| ^|_ _____ __ _^| ^| _____ echo ^| ^|\/^| ^| ^| ^| \ \ /\ / / _ \/ _` ^| ^|/ / __^| echo ^| ^| ^| ^| ^|____ ^| ^|\ V V / __/ (_^| ^| ^<\__ \ echo ^|_^| ^|_^|\_____^| ^|_^| \_/\_/ \___^|\__,_^|_^|\_\___/ echo. echo INSTRUCTIONS: echo 1. Make sure game is CLOSED echo 2. Select an option from bellow echo. echo OPTIONS: echo 1. Render Overider. echo 2. FullBright. echo 3. Max-FPS Overider. echo 4. FoV Overider. echo 0. Delete main config. echo ------------------------------------------------------------------------------- echo. set /p optionselect=Select An Option: IF /I '%optionselect%'=='1' GOTO CustomRender IF /I '%optionselect%'=='2' GOTO FullBright IF /I '%optionselect%'=='3' GOTO FPSOveride IF /I '%optionselect%'=='4' GOTO FoVOveride IF /I '%optionselect%'=='0' GOTO RemoveConfig GOTO Menu :RemoveConfig cls DEL "C:\Users\%username%\AppData\Roaming\.minecraft\options.txt" echo Config has been deleted! echo( pause goto Menu :CustomRender cls set /p "render=Enter a custom render: " powershell -Command "(gc options.txt) -replace '(renderDistance:)\d+', 'renderDistance:%render%' | sc options.txt" powershell -Command "$Host.UI.RawUI.WindowTitle = """Tweaks For Minecraft""" cls echo Render has been set: %render% echo( pause goto Menu :FullBright cls set /p "bright=Enable or Disable: " IF /I '%bright%'=='Enable' ( powershell -Command "(gc options.txt) -replace '(gamma:)\d+\.\d+', 'gamma:100.00' | sc options.txt" powershell -Command "$Host.UI.RawUI.WindowTitle = """Tweaks For Minecraft""" cls echo FullBright was Enabled echo( pause goto Menu ) IF /I "%bright%"=="Disable" ( powershell -Command "(gc options.txt) -replace '(gamma:)\d+\.\d+', 'gamma:1.00' | sc options.txt" powershell -Command "$Host.UI.RawUI.WindowTitle = """Tweaks For Minecraft""" cls echo FullBright was Disabled echo( pause goto Menu ) goto FullBright :FPSOveride cls set /p "fps=Enter a custom FPS Cap: " powershell -Command "(gc options.txt) -replace '(maxFps:)\d+', 'maxFps:%fps%' | sc options.txt" powershell -Command "$Host.UI.RawUI.WindowTitle = """Tweaks For Minecraft""" cls echo FPS Cap has been set: %fps% echo( pause goto Menu :FoVOveride cls set /p "fov=Enter a custom FoV: " powershell -Command "(gc options.txt) -replace '(fov:)\d+', 'fov:%fov%' | sc options.txt" powershell -Command "$Host.UI.RawUI.WindowTitle = """Tweaks For Minecraft""" cls echo FPS has been set: %fov% echo( pause goto Menu :RemoveConfig cls DEL "C:\Users\%username%\AppData\Roaming\.minecraft\options.txt" echo Config has been deleted! echo( pause goto Menu