Guten Tag,
Ich habe folgendes Problem ich habe jetzt mehrere Sachen ausprobiert das es mit dem IsPlayerInRangeOfPoint klappt. Aber leider habe ich keine Lösung gefunden und frage deswegen jetzt einfach mal hier nach, weil ich keine weitere Lösung dazu finde.
Hoffe ihr könnt mir bei diesem Problem helfen.
Code
; Keybinder SAMP
Gui,Show,h500 w800,Bus Keybinder
Gui,Color,white
;--------Keybinder Guis----------;
Gui,Font,s20 Wide Latin
Gui,add,Text, x10 y10 cblack+BackgroundTrans, Bus Keybinder
;--------Tasten Belegungen-------;
Gui,Font,s10 Wide Latin
Gui,add,Text, x10 y90 cred +BackgroundTrans, Numpad 2 = /stoproute
Gui,add,Text, x10 y110 cred +BackgroundTrans, F12 = Keybinder an/aus
return
;---------------------------------;
#IfWinActive, GTA:SA:MP
#Include SAMP.ahk
#UseHook
#SingleInstance, Force
Hotkey, Enter, Off
Hotkey, Escape, Off
SetTimer, Bus1, 1000
SetTimer, Bus2, 1000
t::
Suspend On
SendInput t
Hotkey, Enter, On
Hotkey, Escape, On
Hotkey, t, Off
return
NumpadEnter::
Enter::
Suspend Permit
Suspend Off
SendInput {Enter}
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
Bus1:
if(IsPlayerInRangeOfPoint(1149.0341,-1744.1769,13.4967, 3.5))
{
SendInput t/route {enter}
Sleep, 500
Send {enter}
Sleep, 500
Send {down 2}
Sleep, 500
Send {enter}
}
return
Bus2:
if(IsPlayerInRangeOfPoint(1220.9293,-945.7728,42.6135, 3.5))
{
SendInput t/route {enter}
Sleep, 500
Send {enter}
Sleep, 500
Send {down 3}
Sleep, 500
Send {enter}
}
return
Numpad2::
SendInput t/stoproute {enter}
return
F12::
Suspend
if ( A_IsSuspended )
{
SendInput t/me hat seinen Keybinder deaktiviert...{Enter}
}
if ( !A_IsSuspended )
{
SendInput t/me hat seinen Keybinder aktiviert...{Enter}
}
return
Alles anzeigen
//e Problem ist einfach das ich an der Position bin und dort dann einfach nichts weiter passiert