-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimized and cleaned up cheat, added more settings
- Loading branch information
Showing
19 changed files
with
296 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# The virtual key code key which activates the aim bot when held | ||
aim_key=1 | ||
|
||
# The speed of the aim, lower being slower, higher being faster | ||
speed=4.0 | ||
|
||
# The minimum amount of milliseconds to sleep after each scan | ||
sleep_min=2 | ||
# The maximum amount of milliseconds to sleep after each scan | ||
sleep_max=20 | ||
|
||
# Calculates aim box width by dividing screen width by this value | ||
box_width_divisor=6.0 | ||
# Calculates aim box height by dividing screen height by this value | ||
box_height_divisor=3.5 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.overwatcheat | ||
|
||
import com.overwatcheat.util.Screen | ||
|
||
const val HP_BAR_COLOR = 0xFF_00_13 | ||
const val HP_BAR_COLOR_TOLERANCE = 2 | ||
|
||
const val X_OFFSET_1080p = 55 | ||
const val Y_OFFSET_1080p = 54 | ||
|
||
val X_OFFSET = Math.ceil(X_OFFSET_1080p * (Screen.WIDTH / 1920.0)).toInt() | ||
val Y_OFFSET = Math.ceil(Y_OFFSET_1080p * (Screen.HEIGHT / 1080.0)).toInt() |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.