@Madd92 also mit deinem Skript geht jetzt alles super aber wenn ich auf Desktop bin und "i" drück dann reagiert der auch.
Beiträge von LuiS.MacKenZie
-
-
Ich habe die Version 1.1.25.01, wo sehe ich das mit dem konvertieren?
-
Aber man kann sich ja nicht mal das Inventar anzeigen lass über "i" also müsste ja der ganze Keybinder nicht gehen.
-
Geht leider auch nicht.
-
So wie du es jetzt hast @Madd92 geht gar nichts nicht mal die i Funktion.
-
Also der Keybinder ansich geht jetzt wenn ich i drücke zeigt er mir mein inventar.
Edit: Und der Keybinder spamt immer zu enter.
-
- Also ich habe es jetzt auch mit , probiert da kommt auch nichts.
-
Ich habe es jetzt so
Code
Alles anzeigenGui, Show, w550 h350, hi #IfWinActive, GTA:SA:MP; #Include SAMP.ahk #UseHook SetTimer, AutoTeileF,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 i:: SendInput t/inventar{enter} return AutoTeileF: if(IsPlayerInRangeOfPoint2D(2348.1409,-2302.3579, 3.5)) //KOORDINATE { SendChat("/paketeinladen 5") SendInput ttest{enter} Sleep, 120000 } if(IsPlayerInRangeOfPoint2D(-1857.7402,-1618.9537, 3.5)) //KOORDINATE { SendChat("/paketentladen") Sleep, 120000 } return
Wenn ich an dem Punkt bin schreibt er auch nichts also geht er wahrscheinlich gar nicht. Aber sind das den die richtigen Koordinaten also x und y.
CodeAddStaticVehicle(451,2348.1409,-2302.3579,13.2537,136.8884,86,86); // paketeinladen AddStaticVehicle(451,-1857.7402,-1618.9537,21.6064,30.7872,86,86); // paketentladen
Zitat -
Habe ich auch probiert geht auch nicht.
-
Habe ich es geht aber immer noch nicht.
-
Also ich habe es jetzt so
Code
Alles anzeigenGui, Show, w550 h350, hi #IfWinActive, GTA:SA:MP; #Include SAMP.ahk #UseHook SetTimer, AutoTeileF,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 i:: SendInput t/inventar{enter} return AutoTeileF: if(IsPlayerInRangeOfPoint(2348.1409,-2302.3579,13.2537, 10)) //KOORDINATE { SendChat("/paketeinladen 5") Sleep, 120000 } if(IsPlayerInRangeOfPoint(-1857.7402,-1618.9537,21.6064, 10)) //KOORDINATE { SendChat("/paketentladen") Sleep, 120000 } return
Aber wenn ich an den Koordinaten bin passiert nichts also er nimmt keine Pakete auf.Hier nochmal die Koordinaten:
-
@Marcel_Colbetti ah ok und wo finde ich sowas und wie geht das?
-
Hallo,
Ich habe mir für SA:MP mit AutoHotKey (AHK) einen Keybinder erstellt. Diesen möchte ich zum Farmen benutzen deshalb habe ich einen Befehl zum Pakete einladen eingespeichert der immer an einer Position ausgeführt werden soll.Skript:
Gui, Show, w550 h350, hi#IfWinActive, GTA:SA:MP;
#UseHook
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
returni::
SendInput t/inventar{enter}
return#Persistent
SetTimer, AutoTeileF, 100
AutoTeileF:
if(IsPlayerInRangeOfPoint(2348.1409,-2302.3579,13.2537, 30.0)) //KOORDINATE
{
SendChat("/paketeinladen 5")
}
else if(IsPlayerInRangeOfPoint(-1857.7402,-1618.9537,21.6064, 30.0)) //KOORDINATE
{
SendChat("/paketentladen")
}
returnWenn ich den Keybinder aber starte bekomme ich eine Fehlermeldung (siehe Anhang). Ich wäre sehr froh wenn mir jemand helfen könnte.