diff --git a/README.md b/README.md index e1c2a75..95dcee3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com) -# Ultimate Aimbot +# AI Aimbot

@@ -16,6 +16,8 @@ Watch the shorts video! - https://youtu.be/EEgspHlU_H0 Join teh Discord - https://discord.gg/rootkit + + ## Current Stats This bot's speed is VERY dependent on your hardware. We will update the model it uses for detection later with a faster one. diff --git a/main.py b/main.py index 720f91c..ac8b4d7 100644 --- a/main.py +++ b/main.py @@ -35,6 +35,9 @@ def main(): # If you want to main slightly upwards towards the head headshot_mode = True + # Displays the Corrections per second in the terminal + cpsDisplay = True + # Set to True if you want to get the visuals visuals = False @@ -150,7 +153,8 @@ def main(): # Forced garbage cleanup every second count += 1 if (time.time() - sTime) > 1: - print(count) + if cpsDisplay: + print("CPS: {}".format(count)) count = 0 sTime = time.time()