Facebook
From Ivory Hornbill, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 84
  1. import os
  2. import getpass
  3. user_name = getpass.getuser()
  4.  
  5. #Function for menu
  6. def menu():
  7.     print("""
  8.     ***************************
  9.     * GTA V Optimization Menu *
  10.     ***************************
  11.     *   1 - Optimization type *
  12.     *   2 - Restore Default   *
  13.     *   3 - Instructions      *
  14.     *   00 - Exit             *
  15.     ***************************
  16.                                 """)
  17.  
  18. #Optimization menu part one
  19. def Optimization():
  20.     print("""
  21.     ****************************************************
  22.     *       GTA V Optimization Menu (Page 1)           *
  23.     ****************************************************
  24.     *    1 - Ultra High                                *
  25.     *    2 - Very High                                 *
  26.     *    3 - High                                      *
  27.     *    4 - Medium-High                               *
  28.     *    5 - Medium                                    *
  29.     *    6 - Medium-Low                                *
  30.     *    7 - Next Page....                             *
  31.     *    0 - Go back...                                *
  32.     *    00 - Exit...                                  *
  33.     ****************************************************
  34.                                                         """)
  35.  
  36. #Optimization menu part two
  37. def Optimization2():
  38.     print("""
  39.     ****************************************************
  40.     *        GTA V Optimization Menu (Page 2)          *
  41.     ****************************************************
  42.     *    1 - Low                                       *
  43.     *    2 - Ultra Low                                 *
  44.     *    3 - Single Player                             *
  45.     *    4 - POTATO!!                                  *
  46.     *    5 - TOASTER!!                                 *
  47.     *    6 - CALCULATOR (ONLY NVIDIA GRAPHIC CARD!!!!) *
  48.     *    0 - Go back...                                *
  49.     *   00 - Exit...                                   *
  50.     ****************************************************
  51.                                                         """)
  52.  
  53. # Function for Restore
  54. def restore():
  55.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  56.     f.close()
  57.  
  58. # Function Optimize (Ultra High)
  59. def optimize1():
  60.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  61.     f.write("""
  62.     <?xml version="1.0" encoding="UTF-8"?>
  63.         <Settings>
  64.         <version value="27" />
  65.         <configSource>SMC_AUTO</configSource>
  66.         <graphics>
  67.             <Tessellation value="0" />
  68.             <LodScale value="0.00000" />
  69.             <PedLodBias value="-0.400000" />
  70.             <VehicleLodBias value="-0.400000" />
  71.             <ShadowQuality value="1" />
  72.             <ReflectionQuality value="1" />
  73.             <ReflectionMSAA value="0" />
  74.             <SSAO value="0" />
  75.             <AnisotropicFiltering value="8" />
  76.             <MSAA value="0" />
  77.             <MSAAFragments value="0" />
  78.             <MSAAQuality value="0" />
  79.             <SamplingMode value="0" />
  80.             <TextureQuality value="0" />
  81.             <ParticleQuality value="0" />
  82.             <WaterQuality value="0" />
  83.             <GrassQuality value="0" />
  84.             <ShaderQuality value="0" />
  85.             <Shadow_SoftShadows value="0" />
  86.             <UltraShadows_Enabled value="false" />
  87.             <Shadow_ParticleShadows value="false" />
  88.             <Shadow_Distance value="0.500000" />
  89.             <Shadow_LongShadows value="false" />
  90.             <Shadow_SplitZStart value="0.000000" />
  91.             <Shadow_SplitZEnd value="0.000000" />
  92.             <Shadow_aircraftExpWeight value="0.000000" />
  93.             <Shadow_DisableScreenSizeCheck value="false" />
  94.             <Reflection_MipBlur value="false" />
  95.             <FXAA_Enabled value="true" />
  96.             <TXAA_Enabled value="false" />
  97.             <Lighting_FogVolumes value="false" />
  98.             <Shader_SSA value="false" />
  99.             <DX_Version value="0" />
  100.             <CityDensity value="-0.200000" />
  101.             <PedVarietyMultiplier value="-0.300000" />
  102.             <VehicleVarietyMultiplier value="-0.300000" />
  103.             <PostFX value="0" />
  104.             <DoF value="false" />
  105.             <HdStreamingInFlight value="false" />
  106.             <MaxLodScale value="0.000000" />
  107.             <MotionBlurStrength value="0.000000" />
  108.         </graphics>
  109.         <system>
  110.             <numBytesPerReplayBlock value="0" />
  111.             <numReplayBlocks value="0" />
  112.             <maxSizeOfStreamingReplay value="0" />
  113.             <maxFileStoreSize value="0" />
  114.         </system>
  115.         <audio>
  116.             <Audio3d value="false" />
  117.         </audio>
  118.         <video>
  119.             <AdapterIndex value="0" />
  120.             <OutputIndex value="0" />
  121.             <ScreenWidth value="1280" />
  122.             <ScreenHeight value="720" />
  123.             <RefreshRate value="60" />
  124.             <Windowed value="0" />
  125.             <VSync value="1" />
  126.             <Stereo value="0" />
  127.             <Convergence value="0.100000" />
  128.             <Separation value="1.000000" />
  129.             <PauseOnFocusLoss value="1" />
  130.             <AspectRatio value="0" />
  131.         </video>
  132.         <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  133.         </Settings>
  134.         """)
  135.     f.close()
  136.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  137.     f.write("""-fullscreen
  138. -ignoreDifferentVideoCard
  139. -DX10
  140. -anisotropicQualityLevel 0
  141.                         """)
  142.     f.close()
  143.     os.system("cls")
  144.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  145.     os.system("cls")
  146.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  147.     os.system("cls")
  148.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  149.     os.system("cls")
  150.  
  151. # Function Optimize 2 (Very High)
  152. def optimize2():
  153.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  154.     f.write("""
  155.     <?xml version="1.0" encoding="UTF-8"?>
  156.  
  157.     <Settings>
  158.     <version value="27" />
  159.     <configSource>SMC_AUTO</configSource>
  160.     <graphics>
  161.         <Tessellation value="0" />
  162.         <LodScale value="0.000000" />
  163.         <PedLodBias value="-0.400000" />
  164.         <VehicleLodBias value="-0.400000" />
  165.         <ShadowQuality value="1" />
  166.         <ReflectionQuality value="0" />
  167.         <ReflectionMSAA value="0" />
  168.         <SSAO value="0" />
  169.         <AnisotropicFiltering value="4" />
  170.         <MSAA value="0" />
  171.         <MSAAFragments value="0" />
  172.         <MSAAQuality value="0" />
  173.         <SamplingMode value="0" />
  174.         <TextureQuality value="0" />
  175.         <ParticleQuality value="0" />
  176.         <WaterQuality value="0" />
  177.         <GrassQuality value="0" />
  178.         <ShaderQuality value="0" />
  179.         <Shadow_SoftShadows value="0" />
  180.         <UltraShadows_Enabled value="false" />
  181.         <Shadow_ParticleShadows value="false" />
  182.         <Shadow_Distance value="0.200000" />
  183.         <Shadow_LongShadows value="false" />
  184.         <Shadow_SplitZStart value="0.000000" />
  185.         <Shadow_SplitZEnd value="0.000000" />
  186.         <Shadow_aircraftExpWeight value="0.000000" />
  187.         <Shadow_DisableScreenSizeCheck value="false" />
  188.         <Reflection_MipBlur value="false" />
  189.         <FXAA_Enabled value="false" />
  190.         <TXAA_Enabled value="false" />
  191.         <Lighting_FogVolumes value="false" />
  192.         <Shader_SSA value="false" />
  193.         <DX_Version value="0" />
  194.         <CityDensity value="-0.250000" />
  195.         <PedVarietyMultiplier value="-0.350000" />
  196.         <VehicleVarietyMultiplier value="-0.300000" />
  197.         <PostFX value="0" />
  198.         <DoF value="false" />
  199.         <HdStreamingInFlight value="false" />
  200.         <MaxLodScale value="-0.150000" />
  201.         <MotionBlurStrength value="0.000000" />
  202.     </graphics>
  203.     <system>
  204.         <numBytesPerReplayBlock value="0000000" />
  205.         <numReplayBlocks value="00" />
  206.         <maxSizeOfStreamingReplay value="0000" />
  207.         <maxFileStoreSize value="00000" />
  208.     </system>
  209.     <audio>
  210.         <Audio3d value="false" />
  211.     </audio>
  212.     <video>
  213.         <AdapterIndex value="0" />
  214.         <OutputIndex value="0" />
  215.         <ScreenWidth value="1280" />
  216.         <ScreenHeight value="720" />
  217.         <RefreshRate value="60" />
  218.         <Windowed value="0" />
  219.         <VSync value="1" />
  220.         <Stereo value="0" />
  221.         <Convergence value="0.100000" />
  222.         <Separation value="1.000000" />
  223.         <PauseOnFocusLoss value="1" />
  224.         <AspectRatio value="0" />
  225.     </video>
  226.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  227.     </Settings>
  228.         """)
  229.     f.close()
  230.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  231.     f.write("""-fullscreen
  232. -hdr
  233. -ignoreDifferentVideoCard
  234. -DX10
  235. -anisotropicQualityLevel 0
  236.                         """)
  237.     f.close()
  238.     os.system("cls")
  239.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  240.     os.system("cls")
  241.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  242.     os.system("cls")
  243.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  244.     os.system("cls")
  245.  
  246.  
  247. # Function Optimize 3 (High)
  248. def optimize3():
  249.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  250.     f.write("""
  251.     <?xml version="1.0" encoding="UTF-8"?>
  252.  
  253.     <Settings>
  254.     <version value="27" />
  255.     <configSource>SMC_AUTO</configSource>
  256.     <graphics>
  257.         <Tessellation value="0" />
  258.         <LodScale value="0.050000" />
  259.         <PedLodBias value="-0.400000" />
  260.         <VehicleLodBias value="-0.400000" />
  261.         <ShadowQuality value="1" />
  262.         <ReflectionQuality value="0" />
  263.         <ReflectionMSAA value="0" />
  264.         <SSAO value="0" />
  265.         <AnisotropicFiltering value="4" />
  266.         <MSAA value="0" />
  267.         <MSAAFragments value="0" />
  268.         <MSAAQuality value="0" />
  269.         <SamplingMode value="0" />
  270.         <TextureQuality value="0" />
  271.         <ParticleQuality value="0" />
  272.         <WaterQuality value="0" />
  273.         <GrassQuality value="0" />
  274.         <ShaderQuality value="0" />
  275.         <Shadow_SoftShadows value="0" />
  276.         <UltraShadows_Enabled value="false" />
  277.         <Shadow_ParticleShadows value="false" />
  278.         <Shadow_Distance value="0.200000" />
  279.         <Shadow_LongShadows value="false" />
  280.         <Shadow_SplitZStart value="0.000000" />
  281.         <Shadow_SplitZEnd value="0.000000" />
  282.         <Shadow_aircraftExpWeight value="0.000000" />
  283.         <Shadow_DisableScreenSizeCheck value="false" />
  284.         <Reflection_MipBlur value="false" />
  285.         <FXAA_Enabled value="false" />
  286.         <TXAA_Enabled value="false" />
  287.         <Lighting_FogVolumes value="false" />
  288.         <Shader_SSA value="false" />
  289.         <DX_Version value="0" />
  290.         <CityDensity value="-0.250000" />
  291.         <PedVarietyMultiplier value="-0.300000" />
  292.         <VehicleVarietyMultiplier value="-0.300000" />
  293.         <PostFX value="0" />
  294.         <DoF value="false" />
  295.         <HdStreamingInFlight value="false" />
  296.         <MaxLodScale value="-0.250000" />
  297.         <MotionBlurStrength value="0.000000" />
  298.     </graphics>
  299.     <system>
  300.         <numBytesPerReplayBlock value="0000000" />
  301.         <numReplayBlocks value="00" />
  302.         <maxSizeOfStreamingReplay value="0000" />
  303.         <maxFileStoreSize value="00000" />
  304.     </system>
  305.     <audio>
  306.         <Audio3d value="false" />
  307.     </audio>
  308.     <video>
  309.         <AdapterIndex value="0" />
  310.         <OutputIndex value="0" />
  311.         <ScreenWidth value="1280" />
  312.         <ScreenHeight value="720" />
  313.         <RefreshRate value="60" />
  314.         <Windowed value="0" />
  315.         <VSync value="1" />
  316.         <Stereo value="0" />
  317.         <Convergence value="0.100000" />
  318.         <Separation value="1.000000" />
  319.         <PauseOnFocusLoss value="1" />
  320.         <AspectRatio value="0" />
  321.     </video>
  322.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  323.     </Settings>
  324.         """)
  325.     f.close()
  326.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  327.     f.write("""-fullscreen
  328. -hdr
  329. -ignoreDifferentVideoCard
  330. -DX10
  331. -anisotropicQualityLevel 0
  332.                         """)
  333.     f.close()
  334.     os.system("cls")
  335.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  336.     os.system("cls")
  337.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  338.     os.system("cls")
  339.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  340.     os.system("cls")
  341. # Function Optimize 4 (Medium-High)
  342. def optimize4():
  343.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  344.     f.write("""
  345.     <?xml version="1.0" encoding="UTF-8"?>
  346.  
  347.     <Settings>
  348.     <version value="27" />
  349.     <configSource>SMC_AUTO</configSource>
  350.     <graphics>
  351.         <Tessellation value="0" />
  352.         <LodScale value="0.050000" />
  353.         <PedLodBias value="-0.400000" />
  354.         <VehicleLodBias value="-0.400000" />
  355.         <ShadowQuality value="0" />
  356.         <ReflectionQuality value="0" />
  357.         <ReflectionMSAA value="0" />
  358.         <SSAO value="0" />
  359.         <AnisotropicFiltering value="4" />
  360.         <MSAA value="0" />
  361.         <MSAAFragments value="0" />
  362.         <MSAAQuality value="0" />
  363.         <SamplingMode value="0" />
  364.         <TextureQuality value="0" />
  365.         <ParticleQuality value="0" />
  366.         <WaterQuality value="0" />
  367.         <GrassQuality value="0" />
  368.         <ShaderQuality value="0" />
  369.         <Shadow_SoftShadows value="0" />
  370.         <UltraShadows_Enabled value="false" />
  371.         <Shadow_ParticleShadows value="false" />
  372.         <Shadow_Distance value="0.200000" />
  373.         <Shadow_LongShadows value="false" />
  374.         <Shadow_SplitZStart value="0.000000" />
  375.         <Shadow_SplitZEnd value="0.000000" />
  376.         <Shadow_aircraftExpWeight value="0.000000" />
  377.         <Shadow_DisableScreenSizeCheck value="false" />
  378.         <Reflection_MipBlur value="false" />
  379.         <FXAA_Enabled value="false" />
  380.         <TXAA_Enabled value="false" />
  381.         <Lighting_FogVolumes value="false" />
  382.         <Shader_SSA value="false" />
  383.         <DX_Version value="0" />
  384.         <CityDensity value="-0.250000" />
  385.         <PedVarietyMultiplier value="-0.300000" />
  386.         <VehicleVarietyMultiplier value="-0.300000" />
  387.         <PostFX value="0" />
  388.         <DoF value="false" />
  389.         <HdStreamingInFlight value="false" />
  390.         <MaxLodScale value="-0.250000" />
  391.         <MotionBlurStrength value="0.000000" />
  392.     </graphics>
  393.     <system>
  394.         <numBytesPerReplayBlock value="0000000" />
  395.         <numReplayBlocks value="00" />
  396.         <maxSizeOfStreamingReplay value="0000" />
  397.         <maxFileStoreSize value="00000" />
  398.     </system>
  399.     <audio>
  400.         <Audio3d value="false" />
  401.     </audio>
  402.     <video>
  403.         <AdapterIndex value="0" />
  404.         <OutputIndex value="0" />
  405.         <ScreenWidth value="1280" />
  406.         <ScreenHeight value="720" />
  407.         <RefreshRate value="60" />
  408.         <Windowed value="0" />
  409.         <VSync value="2" />
  410.         <Stereo value="0" />
  411.         <Convergence value="0.100000" />
  412.         <Separation value="1.000000" />
  413.         <PauseOnFocusLoss value="1" />
  414.         <AspectRatio value="0" />
  415.     </video>
  416.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  417.     </Settings>
  418.         """)
  419.     f.close()
  420.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  421.     f.write("""-fullscreen
  422. -hdr
  423. -ignoreDifferentVideoCard
  424. -noquattransform
  425. -DX10
  426. -anisotropicQualityLevel 0
  427.                         """)
  428.     f.close()
  429.     os.system("cls")
  430.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  431.     os.system("cls")
  432.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  433.     os.system("cls")
  434.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  435.     os.system("cls")
  436. # Function Optimize 5 (Medium)
  437. def optimize5():
  438.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  439.     f.write("""
  440.     <?xml version="1.0" encoding="UTF-8"?>
  441.  
  442.     <Settings>
  443.     <version value="27" />
  444.     <configSource>SMC_AUTO</configSource>
  445.     <graphics>
  446.         <Tessellation value="0" />
  447.         <LodScale value="0.07000" />
  448.         <PedLodBias value="-0.400000" />
  449.         <VehicleLodBias value="-0.400000" />
  450.         <ShadowQuality value="0" />
  451.         <ReflectionQuality value="0" />
  452.         <ReflectionMSAA value="0" />
  453.         <SSAO value="0" />
  454.         <AnisotropicFiltering value="0" />
  455.         <MSAA value="0" />
  456.         <MSAAFragments value="0" />
  457.         <MSAAQuality value="0" />
  458.         <SamplingMode value="0" />
  459.         <TextureQuality value="0" />
  460.         <ParticleQuality value="0" />
  461.         <WaterQuality value="0" />
  462.         <GrassQuality value="0" />
  463.         <ShaderQuality value="0" />
  464.         <Shadow_SoftShadows value="0" />
  465.         <UltraShadows_Enabled value="false" />
  466.         <Shadow_ParticleShadows value="false" />
  467.         <Shadow_Distance value="0.000000" />
  468.         <Shadow_LongShadows value="false" />
  469.         <Shadow_SplitZStart value="0.000000" />
  470.         <Shadow_SplitZEnd value="0.000000" />
  471.         <Shadow_aircraftExpWeight value="0.000000" />
  472.         <Shadow_DisableScreenSizeCheck value="false" />
  473.         <Reflection_MipBlur value="false" />
  474.         <FXAA_Enabled value="false" />
  475.         <TXAA_Enabled value="false" />
  476.         <Lighting_FogVolumes value="false" />
  477.         <Shader_SSA value="false" />
  478.         <DX_Version value="0" />
  479.         <CityDensity value="-0.250000" />
  480.         <PedVarietyMultiplier value="-0.300000" />
  481.         <VehicleVarietyMultiplier value="-0.300000" />
  482.         <PostFX value="0" />
  483.         <DoF value="false" />
  484.         <HdStreamingInFlight value="false" />
  485.         <MaxLodScale value="-0.300000" />
  486.         <MotionBlurStrength value="0.000000" />
  487.     </graphics>
  488.     <system>
  489.         <numBytesPerReplayBlock value="0000000" />
  490.         <numReplayBlocks value="00" />
  491.         <maxSizeOfStreamingReplay value="0000" />
  492.         <maxFileStoreSize value="00000" />
  493.     </system>
  494.     <audio>
  495.         <Audio3d value="false" />
  496.     </audio>
  497.     <video>
  498.         <AdapterIndex value="0" />
  499.         <OutputIndex value="0" />
  500.         <ScreenWidth value="800" />
  501.         <ScreenHeight value="600" />
  502.         <RefreshRate value="60" />
  503.         <Windowed value="0" />
  504.         <VSync value="1" />
  505.         <Stereo value="0" />
  506.         <Convergence value="0.100000" />
  507.         <Separation value="1.000000" />
  508.         <PauseOnFocusLoss value="1" />
  509.         <AspectRatio value="0" />
  510.     </video>
  511.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  512.     </Settings>
  513.         """)
  514.     f.close()
  515.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  516.     f.write("""-fullscreen
  517. -hdr
  518. -ignoreDifferentVideoCard
  519. -noquattransform
  520. -DX10
  521. -anisotropicQualityLevel 0
  522.                         """)
  523.     f.close()
  524.     os.system("cls")
  525.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  526.     os.system("cls")
  527.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  528.     os.system("cls")
  529.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  530.     os.system("cls")
  531. # Function Optimize 6 (Medium-Low)
  532. def optimize6():
  533.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  534.     f.write("""
  535.     <?xml version="1.0" encoding="UTF-8"?>
  536.  
  537.     <Settings>
  538.     <version value="27" />
  539.     <configSource>SMC_AUTO</configSource>
  540.     <graphics>
  541.         <Tessellation value="0" />
  542.         <LodScale value="0.70000" />
  543.         <PedLodBias value="-0.400000" />
  544.         <VehicleLodBias value="-0.400000" />
  545.         <ShadowQuality value="0" />
  546.         <ReflectionQuality value="0" />
  547.         <ReflectionMSAA value="0" />
  548.         <SSAO value="0" />
  549.         <AnisotropicFiltering value="0" />
  550.         <MSAA value="0" />
  551.         <MSAAFragments value="0" />
  552.         <MSAAQuality value="0" />
  553.         <SamplingMode value="0" />
  554.         <TextureQuality value="0" />
  555.         <ParticleQuality value="0" />
  556.         <WaterQuality value="0" />
  557.         <GrassQuality value="0" />
  558.         <ShaderQuality value="0" />
  559.         <Shadow_SoftShadows value="0" />
  560.         <UltraShadows_Enabled value="false" />
  561.         <Shadow_ParticleShadows value="false" />
  562.         <Shadow_Distance value="0.000000" />
  563.         <Shadow_LongShadows value="false" />
  564.         <Shadow_SplitZStart value="0.000000" />
  565.         <Shadow_SplitZEnd value="0.000000" />
  566.         <Shadow_aircraftExpWeight value="0.000000" />
  567.         <Shadow_DisableScreenSizeCheck value="false" />
  568.         <Reflection_MipBlur value="false" />
  569.         <FXAA_Enabled value="false" />
  570.         <TXAA_Enabled value="false" />
  571.         <Lighting_FogVolumes value="false" />
  572.         <Shader_SSA value="false" />
  573.         <DX_Version value="0" />
  574.         <CityDensity value="-0.250000" />
  575.         <PedVarietyMultiplier value="-0.300000" />
  576.         <VehicleVarietyMultiplier value="-0.300000" />
  577.         <PostFX value="0" />
  578.         <DoF value="false" />
  579.         <HdStreamingInFlight value="false" />
  580.         <MaxLodScale value="-0.300000" />
  581.         <MotionBlurStrength value="0.000000" />
  582.     </graphics>
  583.     <system>
  584.         <numBytesPerReplayBlock value="0000000" />
  585.         <numReplayBlocks value="00" />
  586.         <maxSizeOfStreamingReplay value="0000" />
  587.         <maxFileStoreSize value="00000" />
  588.     </system>
  589.     <audio>
  590.         <Audio3d value="false" />
  591.     </audio>
  592.     <video>
  593.         <AdapterIndex value="0" />
  594.         <OutputIndex value="0" />
  595.         <ScreenWidth value="800" />
  596.         <ScreenHeight value="600" />
  597.         <RefreshRate value="60" />
  598.         <Windowed value="0" />
  599.         <VSync value="1" />
  600.         <Stereo value="0" />
  601.         <Convergence value="0.100000" />
  602.         <Separation value="1.000000" />
  603.         <PauseOnFocusLoss value="1" />
  604.         <AspectRatio value="0" />
  605.     </video>
  606.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  607.     </Settings>
  608.         """)
  609.     f.close()
  610.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  611.     f.write("""-fullscreen
  612. -hdr
  613. -ignoreDifferentVideoCard
  614. -noquattransform
  615. -DX10
  616. -anisotropicQualityLevel 0
  617.                         """)
  618.     f.close()
  619.     os.system("cls")
  620.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  621.     os.system("cls")
  622.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  623.     os.system("cls")
  624.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  625.     os.system("cls")
  626. # Function Optimize 7 (Low)
  627. def optimize7():
  628.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  629.     f.write("""
  630.     <?xml version="1.0" encoding="UTF-8"?>
  631.  
  632.     <Settings>
  633.     <version value="27" />
  634.     <configSource>SMC_AUTO</configSource>
  635.     <graphics>
  636.         <Tessellation value="0" />
  637.         <LodScale value="0.09000" />
  638.         <PedLodBias value="-0.400000" />
  639.         <VehicleLodBias value="-0.400000" />
  640.         <ShadowQuality value="0" />
  641.         <ReflectionQuality value="0" />
  642.         <ReflectionMSAA value="0" />
  643.         <SSAO value="0" />
  644.         <AnisotropicFiltering value="0" />
  645.         <MSAA value="0" />
  646.         <MSAAFragments value="0" />
  647.         <MSAAQuality value="0" />
  648.         <SamplingMode value="0" />
  649.         <TextureQuality value="0" />
  650.         <ParticleQuality value="0" />
  651.         <WaterQuality value="0" />
  652.         <GrassQuality value="0" />
  653.         <ShaderQuality value="0" />
  654.         <Shadow_SoftShadows value="0" />
  655.         <UltraShadows_Enabled value="false" />
  656.         <Shadow_ParticleShadows value="false" />
  657.         <Shadow_Distance value="0.000000" />
  658.         <Shadow_LongShadows value="false" />
  659.         <Shadow_SplitZStart value="0.000000" />
  660.         <Shadow_SplitZEnd value="0.000000" />
  661.         <Shadow_aircraftExpWeight value="0.000000" />
  662.         <Shadow_DisableScreenSizeCheck value="false" />
  663.         <Reflection_MipBlur value="false" />
  664.         <FXAA_Enabled value="false" />
  665.         <TXAA_Enabled value="false" />
  666.         <Lighting_FogVolumes value="false" />
  667.         <Shader_SSA value="false" />
  668.         <DX_Version value="0" />
  669.         <CityDensity value="-0.250000" />
  670.         <PedVarietyMultiplier value="-0.300000" />
  671.         <VehicleVarietyMultiplier value="-0.300000" />
  672.         <PostFX value="0" />
  673.         <DoF value="false" />
  674.         <HdStreamingInFlight value="false" />
  675.         <MaxLodScale value="-0.400000" />
  676.         <MotionBlurStrength value="0.000000" />
  677.     </graphics>
  678.     <system>
  679.         <numBytesPerReplayBlock value="0000000" />
  680.         <numReplayBlocks value="00" />
  681.         <maxSizeOfStreamingReplay value="0000" />
  682.         <maxFileStoreSize value="00000" />
  683.     </system>
  684.     <audio>
  685.         <Audio3d value="false" />
  686.     </audio>
  687.     <video>
  688.         <AdapterIndex value="0" />
  689.         <OutputIndex value="0" />
  690.         <ScreenWidth value="640" />
  691.         <ScreenHeight value="480" />
  692.         <RefreshRate value="60" />
  693.         <Windowed value="0" />
  694.         <VSync value="1" />
  695.         <Stereo value="0" />
  696.         <Convergence value="0.100000" />
  697.         <Separation value="1.000000" />
  698.         <PauseOnFocusLoss value="1" />
  699.         <AspectRatio value="0" />
  700.     </video>
  701.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  702.     </Settings>
  703.         """)
  704.     f.close()
  705.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  706.     f.write("""-fullscreen
  707. -hdr
  708. -ignoreDifferentVideoCard
  709. -DX10
  710. -anisotropicQualityLevel 0
  711.                         """)
  712.     f.close()
  713.     os.system("cls")
  714.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  715.     os.system("cls")
  716.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  717.     os.system("cls")
  718.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  719.     os.system("cls")
  720. # Function Optimize 8 (Ultra-Low)
  721. def optimize8():
  722.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  723.     f.write("""
  724.     <?xml version="1.0" encoding="UTF-8"?>
  725.  
  726.     <Settings>
  727.     <version value="27" />
  728.     <configSource>SMC_AUTO</configSource>
  729.     <graphics>
  730.         <Tessellation value="0" />
  731.         <LodScale value="0.100000" />
  732.         <PedLodBias value="-0.500000" />
  733.         <VehicleLodBias value="-0.450000" />
  734.         <ShadowQuality value="0" />
  735.         <ReflectionQuality value="0" />
  736.         <ReflectionMSAA value="0" />
  737.         <SSAO value="0" />
  738.         <AnisotropicFiltering value="0" />
  739.         <MSAA value="0" />
  740.         <MSAAFragments value="0" />
  741.         <MSAAQuality value="0" />
  742.         <SamplingMode value="0" />
  743.         <TextureQuality value="0" />
  744.         <ParticleQuality value="0" />
  745.         <WaterQuality value="0" />
  746.         <GrassQuality value="0" />
  747.         <ShaderQuality value="0" />
  748.         <Shadow_SoftShadows value="0" />
  749.         <UltraShadows_Enabled value="false" />
  750.         <Shadow_ParticleShadows value="false" />
  751.         <Shadow_Distance value="1.000000" />
  752.         <Shadow_LongShadows value="false" />
  753.         <Shadow_SplitZStart value="0.000000" />
  754.         <Shadow_SplitZEnd value="0.000000" />
  755.         <Shadow_aircraftExpWeight value="0.000000" />
  756.         <Shadow_DisableScreenSizeCheck value="false" />
  757.         <Reflection_MipBlur value="false" />
  758.         <FXAA_Enabled value="false" />
  759.         <TXAA_Enabled value="false" />
  760.         <Lighting_FogVolumes value="false" />
  761.         <Shader_SSA value="false" />
  762.         <DX_Version value="0" />
  763.         <CityDensity value="-0.400000" />
  764.         <PedVarietyMultiplier value="-0.500000" />
  765.         <VehicleVarietyMultiplier value="-0.500000" />
  766.         <PostFX value="0" />
  767.         <DoF value="false" />
  768.         <HdStreamingInFlight value="false" />
  769.         <MaxLodScale value="-0.500000" />
  770.         <MotionBlurStrength value="0.000000" />
  771.     </graphics>
  772.     <system>
  773.         <numBytesPerReplayBlock value="0" />
  774.         <numReplayBlocks value="0" />
  775.         <maxSizeOfStreamingReplay value="0" />
  776.         <maxFileStoreSize value="0" />
  777.     </system>
  778.     <audio>
  779.         <Audio3d value="false" />
  780.     </audio>
  781.     <video>
  782.         <AdapterIndex value="0" />
  783.         <OutputIndex value="0" />
  784.         <ScreenWidth value="640" />
  785.         <ScreenHeight value="480" />
  786.         <RefreshRate value="60" />
  787.         <Windowed value="0" />
  788.         <VSync value="2" />
  789.         <Stereo value="0" />
  790.         <Convergence value="0.100000" />
  791.         <Separation value="1.000000" />
  792.         <PauseOnFocusLoss value="1" />
  793.         <AspectRatio value="0" />
  794.     </video>
  795.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  796.     </Settings>
  797.         """)
  798.     f.close()
  799.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  800.     f.write("""-fullscreen
  801. -hdr
  802. -ignoreDifferentVideoCard
  803. -noquattransform
  804. -DX10
  805. -anisotropicQualityLevel 0
  806.                         """)
  807.     f.close()
  808.     os.system("cls")
  809.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  810.     os.system("cls")
  811.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  812.     os.system("cls")
  813.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  814.     os.system("cls")
  815. # Function print Menu for Potato
  816. def optimize_potato():
  817.     print("""
  818.     ************************
  819.     *    Potato Mode!!     *
  820.     ************************
  821.     *   1 - Potato         *
  822.     *   2 - Damaged Potato *
  823.     *   0 - Go Back...     *
  824.     ************************
  825.                             """)
  826.  
  827. # Function Optimize 9 [Potato!!! (640*480 limited to 30fps)]
  828. def optimize_potato1():
  829.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  830.     f.write("""
  831.     <?xml version="1.0" encoding="UTF-8"?>
  832.  
  833.     <Settings>
  834.     <version value="27" />
  835.     <configSource>SMC_AUTO</configSource>
  836.     <graphics>
  837.         <Tessellation value="0" />
  838.         <LodScale value="0.100000" />
  839.         <PedLodBias value="-0.900000" />
  840.         <VehicleLodBias value="-0.450000" />
  841.         <ShadowQuality value="0" />
  842.         <ReflectionQuality value="0" />
  843.         <ReflectionMSAA value="0" />
  844.         <SSAO value="0" />
  845.         <AnisotropicFiltering value="0" />
  846.         <MSAA value="0" />
  847.         <MSAAFragments value="0" />
  848.         <MSAAQuality value="0" />
  849.         <SamplingMode value="0" />
  850.         <TextureQuality value="0" />
  851.         <ParticleQuality value="0" />
  852.         <WaterQuality value="0" />
  853.         <GrassQuality value="0" />
  854.         <ShaderQuality value="0" />
  855.         <Shadow_SoftShadows value="0" />
  856.         <UltraShadows_Enabled value="false" />
  857.         <Shadow_ParticleShadows value="false" />
  858.         <Shadow_Distance value="1.000000" />
  859.         <Shadow_LongShadows value="false" />
  860.         <Shadow_SplitZStart value="0.000000" />
  861.         <Shadow_SplitZEnd value="0.000000" />
  862.         <Shadow_aircraftExpWeight value="0.000000" />
  863.         <Shadow_DisableScreenSizeCheck value="false" />
  864.         <Reflection_MipBlur value="false" />
  865.         <FXAA_Enabled value="false" />
  866.         <TXAA_Enabled value="false" />
  867.         <Lighting_FogVolumes value="false" />
  868.         <Shader_SSA value="false" />
  869.         <DX_Version value="0" />
  870.         <CityDensity value="-0.400000" />
  871.         <PedVarietyMultiplier value="-0.500000" />
  872.         <VehicleVarietyMultiplier value="-0.500000" />
  873.         <PostFX value="0" />
  874.         <DoF value="false" />
  875.         <HdStreamingInFlight value="false" />
  876.         <MaxLodScale value="-0.600000" />
  877.         <MotionBlurStrength value="0.000000" />
  878.     </graphics>
  879.     <system>
  880.         <numBytesPerReplayBlock value="0" />
  881.         <numReplayBlocks value="0" />
  882.         <maxSizeOfStreamingReplay value="0" />
  883.         <maxFileStoreSize value="0" />
  884.     </system>
  885.     <audio>
  886.         <Audio3d value="false" />
  887.     </audio>
  888.     <video>
  889.         <AdapterIndex value="0" />
  890.         <OutputIndex value="0" />
  891.         <ScreenWidth value="640" />
  892.         <ScreenHeight value="480" />
  893.         <RefreshRate value="60" />
  894.         <Windowed value="0" />
  895.         <VSync value="2" />
  896.         <Stereo value="0" />
  897.         <Convergence value="0.100000" />
  898.         <Separation value="1.000000" />
  899.         <PauseOnFocusLoss value="1" />
  900.         <AspectRatio value="0" />
  901.     </video>
  902.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  903.     </Settings>
  904.         """)
  905.     f.close()
  906.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  907.     f.write("""-fullscreen
  908. -hdr
  909. -ignoreDifferentVideoCard
  910. -noquattransform
  911. -DX10
  912. -anisotropicQualityLevel 0
  913.                         """)
  914.     f.close()
  915.     os.system("cls")
  916.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  917.     os.system("cls")
  918.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  919.     os.system("cls")
  920.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  921.     os.system("cls")
  922. # Fuction Optimize 10 [Potato!!! (800*600 unlimited fps)]
  923. def optimize_potato2():
  924.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  925.     f.write("""
  926.     <?xml version="1.0" encoding="UTF-8"?>
  927.  
  928.     <Settings>
  929.     <version value="27" />
  930.     <configSource>SMC_AUTO</configSource>
  931.     <graphics>
  932.         <Tessellation value="0" />
  933.         <LodScale value="0.100000" />
  934.         <PedLodBias value="-0.900000" />
  935.         <VehicleLodBias value="-0.450000" />
  936.         <ShadowQuality value="0" />
  937.         <ReflectionQuality value="0" />
  938.         <ReflectionMSAA value="0" />
  939.         <SSAO value="0" />
  940.         <AnisotropicFiltering value="0" />
  941.         <MSAA value="0" />
  942.         <MSAAFragments value="0" />
  943.         <MSAAQuality value="0" />
  944.         <SamplingMode value="0" />
  945.         <TextureQuality value="0" />
  946.         <ParticleQuality value="0" />
  947.         <WaterQuality value="0" />
  948.         <GrassQuality value="0" />
  949.         <ShaderQuality value="0" />
  950.         <Shadow_SoftShadows value="0" />
  951.         <UltraShadows_Enabled value="false" />
  952.         <Shadow_ParticleShadows value="false" />
  953.         <Shadow_Distance value="1.000000" />
  954.         <Shadow_LongShadows value="false" />
  955.         <Shadow_SplitZStart value="0.000000" />
  956.         <Shadow_SplitZEnd value="0.000000" />
  957.         <Shadow_aircraftExpWeight value="0.000000" />
  958.         <Shadow_DisableScreenSizeCheck value="false" />
  959.         <Reflection_MipBlur value="false" />
  960.         <FXAA_Enabled value="false" />
  961.         <TXAA_Enabled value="false" />
  962.         <Lighting_FogVolumes value="false" />
  963.         <Shader_SSA value="false" />
  964.         <DX_Version value="0" />
  965.         <CityDensity value="-0.400000" />
  966.         <PedVarietyMultiplier value="-0.500000" />
  967.         <VehicleVarietyMultiplier value="-0.500000" />
  968.         <PostFX value="0" />
  969.         <DoF value="false" />
  970.         <HdStreamingInFlight value="false" />
  971.         <MaxLodScale value="-0.600000" />
  972.         <MotionBlurStrength value="0.000000" />
  973.     </graphics>
  974.     <system>
  975.         <numBytesPerReplayBlock value="0" />
  976.         <numReplayBlocks value="0" />
  977.         <maxSizeOfStreamingReplay value="0" />
  978.         <maxFileStoreSize value="0" />
  979.     </system>
  980.     <audio>
  981.         <Audio3d value="false" />
  982.     </audio>
  983.     <video>
  984.         <AdapterIndex value="0" />
  985.         <OutputIndex value="0" />
  986.         <ScreenWidth value="800" />
  987.         <ScreenHeight value="600" />
  988.         <RefreshRate value="60" />
  989.         <Windowed value="0" />
  990.         <VSync value="0" />
  991.         <Stereo value="0" />
  992.         <Convergence value="0.100000" />
  993.         <Separation value="1.000000" />
  994.         <PauseOnFocusLoss value="1" />
  995.         <AspectRatio value="0" />
  996.     </video>
  997.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  998.     </Settings>
  999.         """)
  1000.     f.close()
  1001.  
  1002. # Function print Menu for Toaster
  1003. def optimize_toaster():
  1004.     print("""
  1005.     *************************************
  1006.     *           Toaster mode            *
  1007.     *************************************
  1008.     *     1 - Powerful Toaster          *
  1009.     *     2 - Common Toaster            *
  1010.     *     3 - Toaster from China        *
  1011.     *     4 - Damaged Toaster           *
  1012.     *     0 - Go Back...                *
  1013.     *************************************
  1014.     """)
  1015.  
  1016. # Function Optimize 11 [Powerful - Toaster (800*600 with shadows and unlimited fps)]
  1017. def optimize_toaster1():
  1018.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  1019.     f.write("""
  1020.     <?xml version="1.0" encoding="UTF-8"?>
  1021.  
  1022.     <Settings>
  1023.     <version value="27" />
  1024.     <configSource>SMC_AUTO</configSource>
  1025.     <graphics>
  1026.         <Tessellation value="0" />
  1027.         <LodScale value="0.100000" />
  1028.         <PedLodBias value="-0.900000" />
  1029.         <VehicleLodBias value="-0.450000" />
  1030.         <ShadowQuality value="1" />
  1031.         <ReflectionQuality value="0" />
  1032.         <ReflectionMSAA value="0" />
  1033.         <SSAO value="0" />
  1034.         <AnisotropicFiltering value="0" />
  1035.         <MSAA value="0" />
  1036.         <MSAAFragments value="0" />
  1037.         <MSAAQuality value="0" />
  1038.         <SamplingMode value="0" />
  1039.         <TextureQuality value="0" />
  1040.         <ParticleQuality value="0" />
  1041.         <WaterQuality value="0" />
  1042.         <GrassQuality value="0" />
  1043.         <ShaderQuality value="0" />
  1044.         <Shadow_SoftShadows value="0" />
  1045.         <UltraShadows_Enabled value="false" />
  1046.         <Shadow_ParticleShadows value="false" />
  1047.         <Shadow_Distance value="1.000000" />
  1048.         <Shadow_LongShadows value="false" />
  1049.         <Shadow_SplitZStart value="0.000000" />
  1050.         <Shadow_SplitZEnd value="0.000000" />
  1051.         <Shadow_aircraftExpWeight value="0.000000" />
  1052.         <Shadow_DisableScreenSizeCheck value="false" />
  1053.         <Reflection_MipBlur value="false" />
  1054.         <FXAA_Enabled value="false" />
  1055.         <TXAA_Enabled value="false" />
  1056.         <Lighting_FogVolumes value="false" />
  1057.         <Shader_SSA value="false" />
  1058.         <DX_Version value="0" />
  1059.         <CityDensity value="-0.400000" />
  1060.         <PedVarietyMultiplier value="-0.500000" />
  1061.         <VehicleVarietyMultiplier value="-0.500000" />
  1062.         <PostFX value="0" />
  1063.         <DoF value="false" />
  1064.         <HdStreamingInFlight value="false" />
  1065.         <MaxLodScale value="-0.600000" />
  1066.         <MotionBlurStrength value="0.000000" />
  1067.     </graphics>
  1068.     <system>
  1069.         <numBytesPerReplayBlock value="0" />
  1070.         <numReplayBlocks value="0" />
  1071.         <maxSizeOfStreamingReplay value="0" />
  1072.         <maxFileStoreSize value="0" />
  1073.     </system>
  1074.     <audio>
  1075.         <Audio3d value="false" />
  1076.     </audio>
  1077.     <video>
  1078.         <AdapterIndex value="0" />
  1079.         <OutputIndex value="0" />
  1080.         <ScreenWidth value="800" />
  1081.         <ScreenHeight value="600" />
  1082.         <RefreshRate value="60" />
  1083.         <Windowed value="0" />
  1084.         <VSync value="0" />
  1085.         <Stereo value="0" />
  1086.         <Convergence value="0.100000" />
  1087.         <Separation value="1.000000" />
  1088.         <PauseOnFocusLoss value="1" />
  1089.         <AspectRatio value="0" />
  1090.     </video>
  1091.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  1092.     </Settings>
  1093.         """)
  1094.     f.close()
  1095.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  1096.     f.write("""-fullscreen
  1097. -hdr
  1098. -ignoreDifferentVideoCard
  1099. -noquattransform
  1100. -DX10
  1101. -anisotropicQualityLevel 0
  1102.                         """)
  1103.     f.close()
  1104.     os.system("cls")
  1105.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  1106.     os.system("cls")
  1107.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  1108.     os.system("cls")
  1109.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  1110.     os.system("cls")
  1111. # Function Optimize 12 [Common Toaster (800*600 with unlimited fps)]
  1112. def optimize_toaster2():
  1113.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  1114.     f.write("""
  1115.     <?xml version="1.0" encoding="UTF-8"?>
  1116.  
  1117.     <Settings>
  1118.     <version value="27" />
  1119.     <configSource>SMC_AUTO</configSource>
  1120.     <graphics>
  1121.         <Tessellation value="0" />
  1122.         <LodScale value="0.100000" />
  1123.         <PedLodBias value="-0.900000" />
  1124.         <VehicleLodBias value="-0.450000" />
  1125.         <ShadowQuality value="0" />
  1126.         <ReflectionQuality value="0" />
  1127.         <ReflectionMSAA value="0" />
  1128.         <SSAO value="0" />
  1129.         <AnisotropicFiltering value="0" />
  1130.         <MSAA value="0" />
  1131.         <MSAAFragments value="0" />
  1132.         <MSAAQuality value="0" />
  1133.         <SamplingMode value="0" />
  1134.         <TextureQuality value="0" />
  1135.         <ParticleQuality value="0" />
  1136.         <WaterQuality value="0" />
  1137.         <GrassQuality value="0" />
  1138.         <ShaderQuality value="0" />
  1139.         <Shadow_SoftShadows value="0" />
  1140.         <UltraShadows_Enabled value="false" />
  1141.         <Shadow_ParticleShadows value="false" />
  1142.         <Shadow_Distance value="1.000000" />
  1143.         <Shadow_LongShadows value="false" />
  1144.         <Shadow_SplitZStart value="0.000000" />
  1145.         <Shadow_SplitZEnd value="0.000000" />
  1146.         <Shadow_aircraftExpWeight value="0.000000" />
  1147.         <Shadow_DisableScreenSizeCheck value="false" />
  1148.         <Reflection_MipBlur value="false" />
  1149.         <FXAA_Enabled value="false" />
  1150.         <TXAA_Enabled value="false" />
  1151.         <Lighting_FogVolumes value="false" />
  1152.         <Shader_SSA value="false" />
  1153.         <DX_Version value="0" />
  1154.         <CityDensity value="-0.400000" />
  1155.         <PedVarietyMultiplier value="-0.500000" />
  1156.         <VehicleVarietyMultiplier value="-0.500000" />
  1157.         <PostFX value="0" />
  1158.         <DoF value="false" />
  1159.         <HdStreamingInFlight value="false" />
  1160.         <MaxLodScale value="-0.600000" />
  1161.         <MotionBlurStrength value="0.000000" />
  1162.     </graphics>
  1163.     <system>
  1164.         <numBytesPerReplayBlock value="0" />
  1165.         <numReplayBlocks value="0" />
  1166.         <maxSizeOfStreamingReplay value="0" />
  1167.         <maxFileStoreSize value="0" />
  1168.     </system>
  1169.     <audio>
  1170.         <Audio3d value="false" />
  1171.     </audio>
  1172.     <video>
  1173.         <AdapterIndex value="0" />
  1174.         <OutputIndex value="0" />
  1175.         <ScreenWidth value="800" />
  1176.         <ScreenHeight value="600" />
  1177.         <RefreshRate value="60" />
  1178.         <Windowed value="0" />
  1179.         <VSync value="0" />
  1180.         <Stereo value="0" />
  1181.         <Convergence value="0.100000" />
  1182.         <Separation value="1.000000" />
  1183.         <PauseOnFocusLoss value="1" />
  1184.         <AspectRatio value="0" />
  1185.     </video>
  1186.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  1187.     </Settings>
  1188.         """)
  1189.     f.close()
  1190.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  1191.     f.write("""-fullscreen
  1192. -hdr
  1193. -ignoreDifferentVideoCard
  1194. -noquattransform
  1195. -DX10
  1196. -anisotropicQualityLevel 0
  1197.                         """)
  1198.     f.close()
  1199.     os.system("cls")
  1200.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  1201.     os.system("cls")
  1202.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  1203.     os.system("cls")
  1204.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  1205.     os.system("cls")
  1206. # Function Optimize 13 [Toaster from China (640*480 with unlimited fps and shadows)]
  1207. def optimize_toaster3():
  1208.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  1209.     f.write("""
  1210.     <?xml version="1.0" encoding="UTF-8"?>
  1211.  
  1212.     <Settings>
  1213.     <version value="27" />
  1214.     <configSource>SMC_AUTO</configSource>
  1215.     <graphics>
  1216.         <Tessellation value="0" />
  1217.         <LodScale value="0.100000" />
  1218.         <PedLodBias value="-0.900000" />
  1219.         <VehicleLodBias value="-0.450000" />
  1220.         <ShadowQuality value="1" />
  1221.         <ReflectionQuality value="0" />
  1222.         <ReflectionMSAA value="0" />
  1223.         <SSAO value="0" />
  1224.         <AnisotropicFiltering value="0" />
  1225.         <MSAA value="0" />
  1226.         <MSAAFragments value="0" />
  1227.         <MSAAQuality value="0" />
  1228.         <SamplingMode value="0" />
  1229.         <TextureQuality value="0" />
  1230.         <ParticleQuality value="0" />
  1231.         <WaterQuality value="0" />
  1232.         <GrassQuality value="0" />
  1233.         <ShaderQuality value="0" />
  1234.         <Shadow_SoftShadows value="0" />
  1235.         <UltraShadows_Enabled value="false" />
  1236.         <Shadow_ParticleShadows value="false" />
  1237.         <Shadow_Distance value="1.000000" />
  1238.         <Shadow_LongShadows value="false" />
  1239.         <Shadow_SplitZStart value="0.000000" />
  1240.         <Shadow_SplitZEnd value="0.000000" />
  1241.         <Shadow_aircraftExpWeight value="0.000000" />
  1242.         <Shadow_DisableScreenSizeCheck value="false" />
  1243.         <Reflection_MipBlur value="false" />
  1244.         <FXAA_Enabled value="false" />
  1245.         <TXAA_Enabled value="false" />
  1246.         <Lighting_FogVolumes value="false" />
  1247.         <Shader_SSA value="false" />
  1248.         <DX_Version value="0" />
  1249.         <CityDensity value="-0.400000" />
  1250.         <PedVarietyMultiplier value="-0.500000" />
  1251.         <VehicleVarietyMultiplier value="-0.500000" />
  1252.         <PostFX value="0" />
  1253.         <DoF value="false" />
  1254.         <HdStreamingInFlight value="false" />
  1255.         <MaxLodScale value="-0.600000" />
  1256.         <MotionBlurStrength value="0.000000" />
  1257.     </graphics>
  1258.     <system>
  1259.         <numBytesPerReplayBlock value="0" />
  1260.         <numReplayBlocks value="0" />
  1261.         <maxSizeOfStreamingReplay value="0" />
  1262.         <maxFileStoreSize value="0" />
  1263.     </system>
  1264.     <audio>
  1265.         <Audio3d value="false" />
  1266.     </audio>
  1267.     <video>
  1268.         <AdapterIndex value="0" />
  1269.         <OutputIndex value="0" />
  1270.         <ScreenWidth value="640" />
  1271.         <ScreenHeight value="480" />
  1272.         <RefreshRate value="60" />
  1273.         <Windowed value="0" />
  1274.         <VSync value="2" />
  1275.         <Stereo value="0" />
  1276.         <Convergence value="0.100000" />
  1277.         <Separation value="1.000000" />
  1278.         <PauseOnFocusLoss value="1" />
  1279.         <AspectRatio value="0" />
  1280.     </video>
  1281.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  1282.     </Settings>
  1283.         """)
  1284.     f.close()
  1285.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  1286.     f.write("""-fullscreen
  1287. -hdr
  1288. -ignoreDifferentVideoCard
  1289. -noquattransform
  1290. -DX10
  1291. -anisotropicQualityLevel 0
  1292.                         """)
  1293.     f.close()
  1294.     os.system("cls")
  1295.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  1296.     os.system("cls")
  1297.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  1298.     os.system("cls")
  1299.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  1300.     os.system("cls")
  1301. # Function Optimize 14 [Damaged Toaster (limited to 30 fps)]
  1302. def optimize_toaster4():
  1303.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  1304.     f.write("""
  1305.     <?xml version="1.0" encoding="UTF-8"?>
  1306.  
  1307.     <Settings>
  1308.     <version value="27" />
  1309.     <configSource>SMC_AUTO</configSource>
  1310.     <graphics>
  1311.         <Tessellation value="0" />
  1312.         <LodScale value="0.100000" />
  1313.         <PedLodBias value="-0.900000" />
  1314.         <VehicleLodBias value="-0.450000" />
  1315.         <ShadowQuality value="0" />
  1316.         <ReflectionQuality value="0" />
  1317.         <ReflectionMSAA value="0" />
  1318.         <SSAO value="0" />
  1319.         <AnisotropicFiltering value="0" />
  1320.         <MSAA value="0" />
  1321.         <MSAAFragments value="0" />
  1322.         <MSAAQuality value="0" />
  1323.         <SamplingMode value="0" />
  1324.         <TextureQuality value="0" />
  1325.         <ParticleQuality value="0" />
  1326.         <WaterQuality value="0" />
  1327.         <GrassQuality value="0" />
  1328.         <ShaderQuality value="0" />
  1329.         <Shadow_SoftShadows value="0" />
  1330.         <UltraShadows_Enabled value="false" />
  1331.         <Shadow_ParticleShadows value="false" />
  1332.         <Shadow_Distance value="1.000000" />
  1333.         <Shadow_LongShadows value="false" />
  1334.         <Shadow_SplitZStart value="0.000000" />
  1335.         <Shadow_SplitZEnd value="0.000000" />
  1336.         <Shadow_aircraftExpWeight value="0.000000" />
  1337.         <Shadow_DisableScreenSizeCheck value="false" />
  1338.         <Reflection_MipBlur value="false" />
  1339.         <FXAA_Enabled value="false" />
  1340.         <TXAA_Enabled value="false" />
  1341.         <Lighting_FogVolumes value="false" />
  1342.         <Shader_SSA value="false" />
  1343.         <DX_Version value="0" />
  1344.         <CityDensity value="-0.400000" />
  1345.         <PedVarietyMultiplier value="-0.500000" />
  1346.         <VehicleVarietyMultiplier value="-0.500000" />
  1347.         <PostFX value="0" />
  1348.         <DoF value="false" />
  1349.         <HdStreamingInFlight value="false" />
  1350.         <MaxLodScale value="-0.600000" />
  1351.         <MotionBlurStrength value="0.000000" />
  1352.     </graphics>
  1353.     <system>
  1354.         <numBytesPerReplayBlock value="0" />
  1355.         <numReplayBlocks value="0" />
  1356.         <maxSizeOfStreamingReplay value="0" />
  1357.         <maxFileStoreSize value="0" />
  1358.     </system>
  1359.     <audio>
  1360.         <Audio3d value="false" />
  1361.     </audio>
  1362.     <video>
  1363.         <AdapterIndex value="0" />
  1364.         <OutputIndex value="0" />
  1365.         <ScreenWidth value="640" />
  1366.         <ScreenHeight value="480" />
  1367.         <RefreshRate value="60" />
  1368.         <Windowed value="0" />
  1369.         <VSync value="2" />
  1370.         <Stereo value="0" />
  1371.         <Convergence value="0.100000" />
  1372.         <Separation value="1.000000" />
  1373.         <PauseOnFocusLoss value="1" />
  1374.         <AspectRatio value="0" />
  1375.     </video>
  1376.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  1377.     </Settings>
  1378.         """)
  1379.     f.close()
  1380.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  1381.     f.write("""-fullscreen
  1382. -hdr
  1383. -ignoreDifferentVideoCard
  1384. -noquattransform
  1385. -DX10
  1386. -anisotropicQualityLevel 0
  1387.                         """)
  1388.     f.close()
  1389.     os.system("cls")
  1390.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  1391.     os.system("cls")
  1392.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  1393.     os.system("cls")
  1394.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  1395.     os.system("cls")
  1396. # Function Optimize (Single Player)
  1397. def optimize15():
  1398.     f = open("C:/Users/" + user_name + "/Documents/Rockstar Games/GTA V/settings.xml","w")
  1399.     f.write("""
  1400.     <?xml version="1.0" encoding="UTF-8"?>
  1401.  
  1402.     <Settings>
  1403.     <version value="27" />
  1404.     <configSource>SMC_AUTO</configSource>
  1405.     <graphics>
  1406.         <Tessellation value="0" />
  1407.         <LodScale value="0.100000" />
  1408.         <PedLodBias value="-0.900000" />
  1409.         <VehicleLodBias value="-0.450000" />
  1410.         <ShadowQuality value="0" />
  1411.         <ReflectionQuality value="0" />
  1412.         <ReflectionMSAA value="0" />
  1413.         <SSAO value="0" />
  1414.         <AnisotropicFiltering value="0" />
  1415.         <MSAA value="0" />
  1416.         <MSAAFragments value="0" />
  1417.         <MSAAQuality value="0" />
  1418.         <SamplingMode value="0" />
  1419.         <TextureQuality value="0" />
  1420.         <ParticleQuality value="0" />
  1421.         <WaterQuality value="0" />
  1422.         <GrassQuality value="0" />
  1423.         <ShaderQuality value="0" />
  1424.         <Shadow_SoftShadows value="0" />
  1425.         <UltraShadows_Enabled value="false" />
  1426.         <Shadow_ParticleShadows value="false" />
  1427.         <Shadow_Distance value="1.000000" />
  1428.         <Shadow_LongShadows value="false" />
  1429.         <Shadow_SplitZStart value="0.000000" />
  1430.         <Shadow_SplitZEnd value="0.000000" />
  1431.         <Shadow_aircraftExpWeight value="0.000000" />
  1432.         <Shadow_DisableScreenSizeCheck value="false" />
  1433.         <Reflection_MipBlur value="false" />
  1434.         <FXAA_Enabled value="false" />
  1435.         <TXAA_Enabled value="false" />
  1436.         <Lighting_FogVolumes value="false" />
  1437.         <Shader_SSA value="false" />
  1438.         <DX_Version value="0" />
  1439.         <CityDensity value="-0.900000" />
  1440.         <PedVarietyMultiplier value="-0.900000" />
  1441.         <VehicleVarietyMultiplier value="-0.900000" />
  1442.         <PostFX value="0" />
  1443.         <DoF value="false" />
  1444.         <HdStreamingInFlight value="false" />
  1445.         <MaxLodScale value="-0.600000" />
  1446.         <MotionBlurStrength value="0.000000" />
  1447.     </graphics>
  1448.     <system>
  1449.         <numBytesPerReplayBlock value="0" />
  1450.         <numReplayBlocks value="0" />
  1451.         <maxSizeOfStreamingReplay value="0" />
  1452.         <maxFileStoreSize value="0" />
  1453.     </system>
  1454.     <audio>
  1455.         <Audio3d value="false" />
  1456.     </audio>
  1457.     <video>
  1458.         <AdapterIndex value="0" />
  1459.         <OutputIndex value="0" />
  1460.         <ScreenWidth value="640" />
  1461.         <ScreenHeight value="480" />
  1462.         <RefreshRate value="60" />
  1463.         <Windowed value="0" />
  1464.         <VSync value="2" />
  1465.         <Stereo value="0" />
  1466.         <Convergence value="0.100000" />
  1467.         <Separation value="1.000000" />
  1468.         <PauseOnFocusLoss value="1" />
  1469.         <AspectRatio value="0" />
  1470.     </video>
  1471.     <VideoCardDescription>NVIDIA GeForce RTX 2060</VideoCardDescription>
  1472.     </Settings>
  1473.         """)
  1474.     f.close()
  1475.     f = open("C:/Users/" + user_name + "/Desktop/commandline.txt","w")
  1476.     f.write("""-fullscreen
  1477. -hdr
  1478. -ignoreDifferentVideoCard
  1479. -noquattransform
  1480. -DX10
  1481. -anisotropicQualityLevel 0
  1482.                         """)
  1483.     f.close()
  1484.     os.system("cls")
  1485.     input("I will make a command file in your /Desktop/....\nPress any key for continue...")
  1486.     os.system("cls")
  1487.     input("Copy that file to the root path of youre GTA V Game...\nPress any key to continue...")
  1488.     os.system("cls")
  1489.     input("I have finished.... Enjoy your optimized GTA V...\nPress any key for continue")
  1490.     os.system("cls")
  1491. #Base code of the program
  1492. while True:
  1493.     menu() #Calling the function menu()
  1494.     user_input = str(input("Select an option please >> ")) #Option Selector
  1495.  
  1496. # Submenu Page 1
  1497.     if user_input == "1":
  1498.         os.system("cls")
  1499.         Optimization()
  1500.         user_input2 = str(input("Select an Option >> "))
  1501.         if user_input2 ==  "1":
  1502.             os.system("cls")
  1503.             optimize1()
  1504.             os.system("cls")
  1505.         elif user_input2 == "2":
  1506.             os.system("cls")
  1507.             optimize2()
  1508.             input("GTA V Optimized...\nPress any key for continue....")
  1509.             os.system("cls")
  1510.         elif user_input2 == "3":
  1511.             os.system("cls")
  1512.             optimize3()
  1513.             input("GTA V Optimized...\nPress any key for continue....")
  1514.             os.system("cls")
  1515.         elif user_input2 == "4":
  1516.             os.system("cls")
  1517.             optimize4()
  1518.             input("GTA V Optimized...\nPress any key for continue....")
  1519.             os.system("cls")
  1520.         elif user_input2 == "5":
  1521.             os.system("cls")
  1522.             optimize5()
  1523.             input("GTA V Optimized...\nPress any key for continue....")
  1524.             os.system("cls")
  1525.         elif user_input2 == "6":
  1526.             os.system("cls")
  1527.             optimize6()
  1528.             input("GTA V Optimized...\nPress any key for continue....")
  1529.             os.system("cls")
  1530.         elif user_input2 == "0":
  1531.                     os.system("cls")
  1532.                     input("Press nay key for continue...\n")
  1533.                     os.system("cls")
  1534.         elif user_input2 == "00":
  1535.                     salir = str(input("Do you want exit? 1 = Yes / 2 = No >> "))
  1536.                     if salir == "1":
  1537.                         input("Bye Bye!!!")
  1538.                         os.system("cls")
  1539.                         break
  1540.                     else:
  1541.                         input("Press any key for continue....")
  1542.                         os.system("cls")
  1543.                         pass
  1544.         elif user_input2 == "7":
  1545.                 os.system("cls")
  1546.                 Optimization2()
  1547.                 user_input2 = str(input("Select an option please >> "))
  1548.                 if user_input2 == "1":
  1549.                     os.system("cls")
  1550.                     optimize7()
  1551.                     input("GTA V Optimized...\nPress any key for continue....")
  1552.                     os.system("cls")
  1553.                 elif user_input2 == "2":
  1554.                     os.system("cls")
  1555.                     optimize8()
  1556.                     input("GTA V Optimized...\nPress any key for continue....")
  1557.                     os.system("cls")
  1558.                 elif user_input2 == "3":
  1559.                     os.system("cls")
  1560.                     optimize15()
  1561.                     input("GTA V Optimized...\nPress any key for continue....")
  1562.                     os.system("cls")
  1563.                 elif user_input2 == "4":
  1564.                     os.system("cls")
  1565.                     optimize_potato()
  1566.                     user_input2 = str(input("Select an option please >> "))
  1567.                     if user_input2 == "1":
  1568.                         optimize_potato1()
  1569.                         input("GTA V Optimized...\nPress any key for continue....")
  1570.                     elif user_input2 == "2":
  1571.                         optimize_potato2()
  1572.                         input("GTA V Optimized...\nPress any key for continue....")
  1573.                     elif user_input2 == "0":
  1574.                         input("Press any key for continue....\n")
  1575.                 elif user_input2 == "5":
  1576.                     os.system("cls")
  1577.                     optimize_toaster()
  1578.                     user_input2 = str(input("Select an option please >> "))
  1579.                     if user_input2 == "1":
  1580.                         os.system("cls")
  1581.                         optimize_toaster1()
  1582.                         input("GTA V Optimized...\nPress any key for continue....")
  1583.                         os.system("cls")
  1584.                     elif user_input2 == "2":
  1585.                         os.system("cls")
  1586.                         optimize_toaster2()
  1587.                         input("GTA V Optimized...\nPress any key for continue....")
  1588.                         os.system("cls")
  1589.                     elif user_input2 == "3":
  1590.                         os.system("cls")
  1591.                         optimize_toaster3()
  1592.                         input("GTA V Optimized...\nPress any key for continue....")
  1593.                         os.system("cls")
  1594.                     elif user_input2 == "4":
  1595.                         os.system("cls")
  1596.                         optimize_toaster4()
  1597.                         input("GTA V Optimized...\nPress any key for continue....")
  1598.                         os.system("cls")
  1599.                     elif user_input2 == "0":
  1600.                         input("Press any key for continue....\n")
  1601.                 elif user_input2 == "6":
  1602.                     os.system("cls")
  1603.                     optimize6()
  1604.                     input("GTA V Optimized...\nPress any key for continue....")
  1605.                     os.system("cls")
  1606.                 elif user_input2 == "0":
  1607.                     os.system("cls")
  1608.                     input("Press nay key for continue...\n")
  1609.                     os.system("cls")
  1610.                 elif user_input2 == "00":
  1611.                     salir = str(input("Do you want exit? 1 = Yes / 2 = No >> "))
  1612.                     if salir == "1":
  1613.                         input("Bye Bye!!!")
  1614.                         os.system("cls")
  1615.                         break
  1616.                     else:
  1617.                         input("Press any key for continue....")
  1618.                         os.system("cls")
  1619.                         pass
  1620.            
  1621.  
  1622.  
  1623. # Method for user input 2
  1624.     if user_input == "2":
  1625.         os.system("cls")
  1626.         restore()
  1627.         input("Ready youre GTA V config have been restored....\nPress any key for continue....")
  1628.         os.system("cls")
  1629.  
  1630. # Method For Instructions
  1631.     if user_input == "3":
  1632.         os.system("cls")
  1633.         f = open("Instructions.txt","w")
  1634.         f.write("""Welcome to GTA V Optimization Alfa 0.1!!
  1635.  
  1636. MADE WITH LOVE BY SMITHPEREZ
  1637.  
  1638. This script is in PRE-ALFA....it has bugs and is still working on the script
  1639.  
  1640. This script has been made for optimize GTA V.
  1641.  
  1642. How to use the script?
  1643.  
  1644. Only execute it and after select the optimization do you want, after copy the file
  1645. in your desktop called "commandline" to your GTA V root directory.
  1646.  
  1647. Can i be banned for use this?
  1648.  
  1649. No you can't because you're not cheeting or modifying the game system or files,
  1650. you're only changing the graphic settings with this script.
  1651.  
  1652. Which are the characteristics of the optimization type?
  1653.  
  1654. I have ordered it by the higher quality to the lower.
  1655.  
  1656. 1 - Ultra High = Everything is in the max quality for 720p and without limit of fps
  1657. 2 - Very High = The same as above but fps limited to 30
  1658. 3 - High = Without shadows and without fps limits
  1659. 4 - Medium-High = Medium quality 720p but with fps limited to 30
  1660. 5 - Medium = Resolution of 800*600 without limits of fps and quality medium
  1661. 6 - Medium-Low = The same as above but fps limited to 30
  1662. 7 - Low = Resolution of 640*480 Without limits of fps and quality low
  1663. 8 - Ultra-Low = The same of above but whitout shadows and fps limited to 30
  1664. 9 - Potato [Potato] = 640*480 without shadows and reduced texture quality
  1665. 9.2 - Potato [Damaged Potato] = 800*600 without limits of fps and shadows quality reduced
  1666. 10 - Toaster [Powerful] = 800*600 Without limits of fps and shadows
  1667. 10.2 - Toaster [Common] = 800*600 Without limits of fps
  1668. 10.3 - Toaster [China] = limit of 30 fps with shadows
  1669. 10.4 - Toaster [Damaged] = limit of 30 fps without shadows and very texture quality reduced
  1670. 11 - Single Player = 640*480 With limit of 30 fps ("Only use in single player")
  1671.  
  1672. Notes: i did this script for help the comunity of GTA V and those people who doesn't have a good
  1673. pc for play GTA V.""")
  1674.         f.close()
  1675.         input("Press any key for continue...\n")
  1676.         input("You will find a file in the same directory as the script with the name instructions...\nPress any key for continue...")
  1677.         os.system("cls")
  1678. # Method for exit
  1679.     if user_input == "00":
  1680.         salir = str(input("Do you want exit? 1 = Yes / 2 = No >> "))
  1681.         if salir == "1":
  1682.             input("Bye Bye!!!")
  1683.             os.system("cls")
  1684.             break
  1685.         else:
  1686.             input("Press any key for continue....")
  1687.             os.system("cls")
  1688.             pass