Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Program.cpp #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions [C++] Overwatch Aim Assistance/Program.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ char* WindowName = "Overwatch"; //IMP: if overwatch is not detected your window
float MouseSensitivity = 15.00f; //Change this to your sensivity.
bool HumanLikeMovements = true; //Should we use human like mouse movements?
int AimSpeed = 7; //Aim speed for human like movements (1-10)..
bool Headshots = false; //Should we aim at the head?
bool Headshots = true; //Should we aim at the head?

bool Triggerbot = false; //Should we enable the trigger bot? Not recommended in certain maps
bool Triggerbot = true; //Should we enable the trigger bot? Not recommended in certain maps
bool ShootAfterAiming = false; //Should we shoot after the aim assist locks onto a target?
int ShootTime = 100; //Varies depending on character being used.

Expand Down Expand Up @@ -140,4 +140,4 @@ void moveSmooth(Mouse *m, int x, int y)
void holdLeftClick(Mouse *m)
{
m->click(ShootTime);
}
}