Ich brauche Hilfe bei 2 Scripts, wenn ich 2 Scripts mit Autohotkey am laufen habe hängen die Scripts zwischendurch wie z.B hier bei Blackops dreht man sich nicht, wäre es möglich diese beiden scripts irgendwie zu kombinieren? Da ich leider 0 Ahnung von sowas habe bräuchte ich Hilfe^^
und das 2.
Quote:
#MaxHotkeysPerInterval 10000
~NumLock::Suspend, toggle
~*XButton1::
{
SetMouseDelay -1
while GetKeyState("XButton1")
{
MouseMove, 20, 0, 1, R ;<--- Change MouseMove, X to change speed.
Delay(0.001)
}
Delay( D=0.001 )
{
Static XButton1
Critical
XButton1 ? XButton1 : DllCall( "QueryPerformanceFrequency", Int64P,XButton1 )
DllCall( "QueryPerformanceCounter", Int64P,pTick ), cTick := pTick
While( ( (Tick:=(pTick-cTick)/XButton1)) < D ) {
DllCall( "QueryPerformanceCounter", Int64P,pTick )
Sleep -1
}
Return Round( Tick,3 )
}
}
und das 2.
Quote:
#MaxHotkeysPerInterval 10000
~NumLock::Suspend, toggle
~*XButton2::
{
SetMouseDelay -1
while GetKeyState("XButton2")
{
MouseMove, -20, 0, 1, R ;<--- Change MouseMove, X to change speed.
Delay(0.001)
}
Delay( D=0.001 )
{
Static XButton2
Critical
XButton1 ? XButton2 : DllCall( "QueryPerformanceFrequency", Int64P,XButton2 )
DllCall( "QueryPerformanceCounter", Int64P,pTick ), cTick := pTick
While( ( (Tick:=(pTick-cTick)/XButton2)) < D ) {
DllCall( "QueryPerformanceCounter", Int64P,pTick )
Sleep -1
}
Return Round( Tick,3 )
}
}