Guest User

you belive me now?

a guest
Feb 20th, 2016
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. @echo off
  2. title TFRun by Acrid V: 1.0.1
  3. color 8f
  4. mode 100
  5. echo -Enter a name-
  6. set /p name=Name:
  7. pause
  8. cls
  9. goto TFRunMenu
  10. :TFRunMenu
  11. cls
  12. echo -Welcome %name%-
  13. echo If it is your first time, please view the INTRODUCTION.
  14. echo Otherwise, choose your options below.
  15. echo WARNING: SOME OPTIONS ARE BLOCKED IF NOT RUNNING AS ADMIN.
  16. echo -------------------------------------
  17. echo [1] OPTIONS 1
  18. echo [2] OPTIONS 2
  19. echo [3] INTRODUCTION
  20. echo [4] EXIT
  21. set /p menuChoice=]
  22. if %menuChoice%==1 goto options1
  23. if %menuChoice%==2 goto options2
  24. if %menuChoice%==3 goto intro
  25. if %menuChoice%==4 exit
  26. pause
  27. goto TFRunMenu
  28. :options1
  29. cls
  30. echo --Pure FPS--
  31. echo [1] Disable desktop [2] Enable desktop.
  32. echo [3] Delete demos
  33. echo [4] Disable hibernation (run as admin) [5] Enable hibernation (run as admin)
  34. echo --Manual FPS--
  35. echo Oldschool Pack: [6]
  36. echo Comanglia's Config: [7]
  37. echo Clean TF2+Prism HUD: [8]
  38. echo Set Timer Resolution: [9]
  39. echo SweetFX: [10]
  40. echo HUDs: [11]
  41. set /p options1OPT=]
  42. if %options1OPT%==1 taskkill /im explorer.exe /f
  43. if %options1OPT%==2 start explorer.exe
  44. if %options1OPT%==3 del /p C:\"Program Files (x86)"\Steam\SteamApps\common\"Team Fortress 2"\tf\*.dem
  45. if %options1OPT%==4 powercfg /h off
  46. if %options1OPT%==5 powercfg /h on
  47. if %options1OPT%==6 start https://facepunch.com/showthread.php?t=1250115
  48. if %options1OPT%==7 start http://www.teamfortress.tv/25328/comanglia-s-config-fps-guide
  49. if %options1OPT%==8 start http://www.teamfortress.tv/21756/prism-hud-clean-tf2
  50. if %options1OPT%==9 start http://www.lucashale.com/timer-resolution/
  51. if %options1OPT%==10 start https://sfx.thelazy.net/games/
  52. if %options1OPT%==11 start http://huds.tf
  53. pause
  54. goto TFRunMenu
  55. :options2
  56. cls
  57. echo --Connection--
  58. echo [1] TCPOptimizer
  59. echo [2] Ethernet
  60. echo Sorry, there ins't much I can do about internet connection :(
  61. echo --Lag? Try these!--
  62. echo [3] NvidiaInspector
  63. echo [4] RadeonPro
  64. echo [5] MSI Afterburner (overclocking, be careful)
  65. set /p options2OPT=]
  66. if %options2OPT%==1 start http://www.speedguide.net/downloads.php
  67. 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
  68. if %options2OPT%==3 start http://www.guru3d.com/files-details/nvidia-inspector-download.html
  69. if %options2OPT%==4 start http://www.radeonpro.info/
  70. if %options2OPT%==5 start https://gaming.msi.com/features/afterburner
  71. pause
  72. goto TFRunMenu
  73. :intro
  74. cls
  75. echo Hello and welcome to TFRun.
  76. echo This program is meant to increase your TF2 performance.
  77. echo Feel free to experiment with the options.
  78. echo Generally, Options 1 are fps fixes, while Options 2 are to reduce stuttering and general fps spikes.
  79. echo You might notice your desktop disappearing when changing the "Pure FPS" section of Options 1.
  80. echo Don't panic, that is meant to happen. Your desktop uses a lot of memory.
  81. echo If you want it back, reverse the option. This works for nearly all options.
  82. echo It is impossible to get VAC banned for using this.
  83. echo ----------------------------------------------
  84. echo ETF2L PLAYERS READ
  85. echo ----------------------------------------------
  86. echo Allowed?
  87. echo I read the rules multiple times and it said nothing about fps programs being banned.
  88. echo AFAIK should be allowed.
  89. pause
  90. goto TFRunMenu
Add Comment
Please, Sign In to add comment