Ich weiß nun nicht inwieweit ich was falsch gemacht habe. Aufjedenfall habe ich etwas falsch gemacht.
Hier mal der gesamte Code
#IfWinActive, GTA:SA:MP ; Folgende Hotkeys Funktionieren nur wenn GTA SA:MP geöffnet ist
#UseHook
#Include SAMP.ahk
~t::
Suspend On
Hotkey, Enter, On
Hotkey, Escape, On
Hotkey, t, Off
return
NumpadEnter::
Enter::
Suspend Permit
Suspend Off
Hotkey, t, On
Hotkey, Enter, Off
Hotkey, Escape, Off
return
Escape::
Suspend Permit
Suspend Off
SendInput {Escape}
Hotkey, t, On
Hotkey, Enter, Off
Hotkey, Escape, Off
return
if (!WinActive("GTA:SA:MP"))
return
global timerWait := false
SetTimer, Timer1, 1000
SetTimer, Timer2, 2000
Timer1:
GetChatLine(0, line)
if (InStr(line, "Du kannst erst in (.*) Minuten wieder angeln")) {
SetTimer, Timer2, 10000, 1 ; // 10000 = 10 Sekunden, 15 Minuten = 900000
timerWait := true
}
return
Timer2:
SendChat("/throwbackall")
if (timerWait) {
timerWait := false
SetTimer, Timer2, 2000
}
return