Since some people asked for it, i decided to share it
You can contact me on telegram for any question other than those already answered in the FAQ
Shoutout to the cathook team :^)
- A Google account
| param( | |
| [string]$GamePath = $PSScriptRoot, | |
| [switch]$Backup = $true, | |
| [switch]$Force = $false, | |
| [string]$inputFile = "./autoexec.cfg", | |
| [switch]$deleteBackups = $false, | |
| [switch]$deleteConfigs = $false | |
| ) | |
| $profileDirs = @("profiles", "steam_profiles", "preview_profiles") | |
| $configHeader = "# prism3d variable config data`n`n" # Autoexec settings deployed on {datetime}`n`n" |
Since some people asked for it, i decided to share it
You can contact me on telegram for any question other than those already answered in the FAQ
Shoutout to the cathook team :^)
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>A simple clock</title> | |
| </head> | |
| <body translate="no" > |
| import time | |
| def RateLimited(maxPerSecond): | |
| minInterval = 1.0 / float(maxPerSecond) | |
| def decorate(func): | |
| lastTimeCalled = [0.0] | |
| def rateLimitedFunction(*args,**kargs): | |
| elapsed = time.clock() - lastTimeCalled[0] | |
| leftToWait = minInterval - elapsed | |
| if leftToWait>0: |