@echo off title TFRun by Acrid V: 1.0.1 color 8f mode 100 echo -Enter a name- set /p name=Name: pause cls goto TFRunMenu :TFRunMenu cls echo -Welcome %name%- echo If it is your first time, please view the INTRODUCTION. echo Otherwise, choose your options below. echo WARNING: SOME OPTIONS ARE BLOCKED IF NOT RUNNING AS ADMIN. echo ------------------------------------- echo [1] OPTIONS 1 echo [2] OPTIONS 2 echo [3] INTRODUCTION echo [4] EXIT set /p menuChoice=] if %menuChoice%==1 goto options1 if %menuChoice%==2 goto options2 if %menuChoice%==3 goto intro if %menuChoice%==4 exit pause goto TFRunMenu :options1 cls echo --Pure FPS-- echo [1] Disable desktop [2] Enable desktop. echo [3] Delete demos echo [4] Disable hibernation (run as admin) [5] Enable hibernation (run as admin) echo --Manual FPS-- echo Oldschool Pack: [6] echo Comanglia's Config: [7] echo Clean TF2+Prism HUD: [8] echo Set Timer Resolution: [9] echo SweetFX: [10] echo HUDs: [11] set /p options1OPT=] if %options1OPT%==1 taskkill /im explorer.exe /f if %options1OPT%==2 start explorer.exe if %options1OPT%==3 del /p C:\"Program Files (x86)"\Steam\SteamApps\common\"Team Fortress 2"\tf\*.dem if %options1OPT%==4 powercfg /h off if %options1OPT%==5 powercfg /h on if %options1OPT%==6 start https://facepunch.com/showthread.php?t=1250115 if %options1OPT%==7 start http://www.teamfortress.tv/25328/comanglia-s-config-fps-guide if %options1OPT%==8 start http://www.teamfortress.tv/21756/prism-hud-clean-tf2 if %options1OPT%==9 start http://www.lucashale.com/timer-resolution/ if %options1OPT%==10 start https://sfx.thelazy.net/games/ if %options1OPT%==11 start http://huds.tf pause goto TFRunMenu :options2 cls echo --Connection-- echo [1] TCPOptimizer echo [2] Ethernet echo Sorry, there ins't much I can do about internet connection :( echo --Lag? Try these!-- echo [3] NvidiaInspector echo [4] RadeonPro echo [5] MSI Afterburner (overclocking, be careful) set /p options2OPT=] if %options2OPT%==1 start http://www.speedguide.net/downloads.php if %options2OPT%==2 start http://www.ebay.com/itm/New-10M-30ft-CAT5E-CAT5-RJ45-Ethernet-Internet-Network-Patch-Lan-Cable-Cord-Blue-/380521690639?hash=item5898dc360f:m:mBgzRWZuAj0FaLodNgwTXew if %options2OPT%==3 start http://www.guru3d.com/files-details/nvidia-inspector-download.html if %options2OPT%==4 start http://www.radeonpro.info/ if %options2OPT%==5 start https://gaming.msi.com/features/afterburner pause goto TFRunMenu :intro cls echo Hello and welcome to TFRun. echo This program is meant to increase your TF2 performance. echo Feel free to experiment with the options. echo Generally, Options 1 are fps fixes, while Options 2 are to reduce stuttering and general fps spikes. echo You might notice your desktop disappearing when changing the "Pure FPS" section of Options 1. echo Don't panic, that is meant to happen. Your desktop uses a lot of memory. echo If you want it back, reverse the option. This works for nearly all options. echo It is impossible to get VAC banned for using this. echo ---------------------------------------------- echo ETF2L PLAYERS READ echo ---------------------------------------------- echo Allowed? echo I read the rules multiple times and it said nothing about fps programs being banned. echo AFAIK should be allowed. pause goto TFRunMenu