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) [![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)
# Ultimate Aimbot # AI Aimbot
<p float="left"> <p float="left">
<img src="imgs/halo.PNG" width="200" /> <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 Join teh Discord - https://discord.gg/rootkit
## Current Stats ## 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. 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 # If you want to main slightly upwards towards the head
headshot_mode = True headshot_mode = True
# Displays the Corrections per second in the terminal
cpsDisplay = True
# Set to True if you want to get the visuals # Set to True if you want to get the visuals
visuals = False visuals = False
@ -150,7 +153,8 @@ def main():
# Forced garbage cleanup every second # Forced garbage cleanup every second
count += 1 count += 1
if (time.time() - sTime) > 1: if (time.time() - sTime) > 1:
print(count) if cpsDisplay:
print("CPS: {}".format(count))
count = 0 count = 0
sTime = time.time() sTime = time.time()