mirror of
https://github.com/RootKit-Org/AI-Aimbot.git
synced 2025-06-21 02:41:01 +08:00
34 lines
800 B
Python
34 lines
800 B
Python
# Portion of screen to be captured (This forms a square/rectangle around the center of screen)
|
|
screenShotHeight = 320
|
|
screenShotWidth = 320
|
|
|
|
# For use in games that are 3rd person and character model interferes with the autoaim
|
|
# EXAMPLE: Fortnite and New World
|
|
aaRightShift = 0
|
|
|
|
# Autoaim mouse movement amplifier
|
|
aaMovementAmp = .4
|
|
|
|
# Person Class Confidence
|
|
confidence = 0.4
|
|
|
|
# What key to press to quit and shutdown the autoaim
|
|
aaQuitKey = "Q"
|
|
|
|
# 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
|
|
|
|
# Smarter selection of people
|
|
centerOfScreen = True
|
|
|
|
# ONNX ONLY - Choose 1 of the 3 below
|
|
# 1 - CPU
|
|
# 2 - AMD
|
|
# 3 - NVIDIA
|
|
onnxChoice = 3 |