
Originally Posted by
Medaka-Chan
Can you bind the key to something else?
To bind the key to something else change the "~Z::" to "~X::" or "~Y" or whatever you want (example below), but it appears that you need to have the key you bind it to be on of your clicking keys you have bound in osu! for it to work. You could alternatively hold your new bound key while z or x if you left them default in osu! and it should work. Haven't tried it but I use AHK so just going off the code.
Code:
~G::
{
MouseGetPos X, Y
MouseMove X+25, Y+15, 0
MouseMove X+40, Y+25, 0
MouseMove X+45, Y+15, 0
MouseMove X+50, Y, 0
MouseMove X+45, Y-15, 0
MouseMove X+40, Y-25, 0
MouseMove X+15, Y-15, 0
MouseMove X, Y, 0
}
Return
- - - Updated - - -

Originally Posted by
jagaadhi1277
how to deactivate the script, sorry.. i am a newbie in this kind of stuff
I know you asked this a long time ago, but you can right click the green A icon in the notification area and exit. Or, I re-wrote the script a little to add a toggle to it. Here is the raw script. If you want I can compile it for you to download if you don't have ahk, but then you wouldn't be able to change the key it is bound to. (Z)
Code:
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
#SingleInstance force
DetectHiddenWindows, On
#Persistent
Hotkey_Name := "~Z" ; <------ Change this to whatever key you want to be your hotkey !!!LEAVE THE TILDE!!!
Hotkey, If, Auto
Hotkey, %Hotkey_Name%, Spin
return
F8:: Gosub, ToggleAuto
#If Auto
Spin:
{
MouseGetPos X, Y
MouseMove X+25, Y+15, 0
MouseMove X+40, Y+25, 0
MouseMove X+45, Y+15, 0
MouseMove X+50, Y, 0
MouseMove X+45, Y-15, 0
MouseMove X+40, Y-25, 0
MouseMove X+15, Y-15, 0
MouseMove X, Y, 0
}
Return
ToggleAuto:
Auto := !Auto
if (Auto)
{
SplashTextOn,,, Auto Spin---- ON ----
Sleep 750
SplashTextOff
}
Else
{
SplashTextOn,,, Auto Spin---- OFF ----
Sleep 750
SplashTextOff
}
Return