mirror of
https://github.com/RootKit-Org/AI-Aimbot.git
synced 2025-06-21 02:41:01 +08:00
CPS printing is now toggleable
This commit is contained in:
parent
0f3e933ca3
commit
37b42678cc
@ -1,5 +1,5 @@
|
|||||||
[](http://makeapullrequest.com)
|
[](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.
|
||||||
|
|
||||||
|
6
main.py
6
main.py
@ -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()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user