C
#NoEnv
#Persistent
#IfWinActive, GTA:SA:MP
#UseHook
#include SAMP.ahk
:?:t/nh::
Suspend Permit
SendInput, {enter}
hp := GetPlayerHealth()
armor := GetPlayerArmor()
vehp := GetVehicleHealth()
vename := GetVehicleModelName()
c := getcoordinates()
calczone := CalculateZone(c[1], c[2], c[3])
calccity := calculateCity(c[1],c[2],c[3])
plid := GetPlayerIdByName(GetUserName())
ping := GetPlayerPingbyId(plid)
SendChat("/g Ich benötige dringend Hilfe in " . calczone . ", " . calccity)
sleep 1000
SendChat("/g Mein Leben: " . hp . " | Meine Rüstung: " . armor . " | Ping: " ping)
if(IsPlayerInAnyVehicle() = 1)
{
sleep 1000
SendChat("/g Fahrzeug: " . vename . " | Car-HP: " . vehp)
}
Suspend Off
return
Alles anzeigen