osu!Spinner Bot!
This is my first ever post of, and creation of a cheat ever so cut me some slack.
Its written in AHK because I'm still learning C#.
I do hope to be able to post more and better cheats in the future, ones written in stuff like C# and not an obscure scripting language
A (sort of slow) bot to make spinners a little bit easier.
How to use:
- Tap Alt + S to toggle the spinner (I.e. tap once, turn it on. Tap again, turn it off.)
- Hold down key of choice to click the spinner.
To disable the cheat:
- Right click the icon in the taskbar tray
- Click "Exit."
VirusTotal Scan
False Positives.
The benefit of this being written in a shitty obscure scripting language is the ability to share the source!
If you have AHK installed you can run the AHK source as is and it will work fine.
But for those who don't Ive included the EXE format of it.
So, enjoy and wish me luck with making more cheats and learning C#.
Its written in AHK because I'm still learning C#.
I do hope to be able to post more and better cheats in the future, ones written in stuff like C# and not an obscure scripting language
A (sort of slow) bot to make spinners a little bit easier.
How to use:
- Tap Alt + S to toggle the spinner (I.e. tap once, turn it on. Tap again, turn it off.)
- Hold down key of choice to click the spinner.
To disable the cheat:
- Right click the icon in the taskbar tray
- Click "Exit."
VirusTotal Scan
False Positives.
The benefit of this being written in a shitty obscure scripting language is the ability to share the source!
If you have AHK installed you can run the AHK source as is and it will work fine.
But for those who don't Ive included the EXE format of it.
So, enjoy and wish me luck with making more cheats and learning C#.
SOURCE
;Made by SonicKMN/anonfoxer
;lets have fun shall we.
;version 1.0.0
;made 4/21/19
;happy easter
;made to make osu spinners super easy.
;; by default ahk gets mouse coordinates relative to the active
;; window, this sets it to use absolute coordinates
CoordMode, Mouse, Screen
;; how often to get the mouse position in milliseconds
UPDATE_INTERVAL := 10
RIGHT_EDGE := A_ScreenWidth - 1
TOP_EDGE := A_ScreenHeight - 1
BrushSlice := 0
;; make the script run forever
#Persistent
SetTimer, WatchCursor, %UPDATE_INTERVAL%
return
WatchCursor:
MouseGetPos, xpos
#MaxThreadsPerHotkey 2
!s::
toggle := !toggle
loop
{
if (toggle) {
MouseGetPos, xx, yy
MouseMove 650, 440
Sleep 1
MouseMove 650, 378
Sleep 1
MouseMove 717, 378
Sleep 1
MouseMove 717, 440
Sleep 1
}
else {
break
}
}
return
;lets have fun shall we.
;version 1.0.0
;made 4/21/19
;happy easter
;made to make osu spinners super easy.
;; by default ahk gets mouse coordinates relative to the active
;; window, this sets it to use absolute coordinates
CoordMode, Mouse, Screen
;; how often to get the mouse position in milliseconds
UPDATE_INTERVAL := 10
RIGHT_EDGE := A_ScreenWidth - 1
TOP_EDGE := A_ScreenHeight - 1
BrushSlice := 0
;; make the script run forever
#Persistent
SetTimer, WatchCursor, %UPDATE_INTERVAL%
return
WatchCursor:
MouseGetPos, xpos
#MaxThreadsPerHotkey 2
!s::
toggle := !toggle
loop
{
if (toggle) {
MouseGetPos, xx, yy
MouseMove 650, 440
Sleep 1
MouseMove 650, 378
Sleep 1
MouseMove 717, 378
Sleep 1
MouseMove 717, 440
Sleep 1
}
else {
break
}
}
return