CPS printing is now toggleable

This commit is contained in:
Qfc9 2022-04-16 14:19:36 -04:00
parent 0f3e933ca3
commit 37b42678cc
2 changed files with 8 additions and 2 deletions

View File

@ -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
<p float="left">
<img src="imgs/halo.PNG" width="200" />
@ -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.

View File

@ -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()