Recent content by PeterL

  1. P

    Offset for BonePositions

    You just need to add it to the normal coords Prefixobjekt Do you have the other body part  Id´s like 0x490?
  2. P

    Help [AHK]CalcScreenpositions

    Hello, I want to ask how i can get the position of the head, the Arms and the feet With this function i can calculate the middle of the Player calcScreenCoors(fX,fY,fZ) { if(!checkHandles()) return false dwM := 0xB6FA2C m_11 := readFloat(hGTA, dwM + 0*4) if(ErrorLevel) { ErrorLevel...
  3. P

    Help [AHK]GetDialogText

    Hello I need some help with this Function GetDialogText() { Process = gta_sa.exe DllName = samp.dll Process, Exist, %Process% PID = %ErrorLevel% SetFormat, Integer, D Base := GetDllBase(DllName, PID) pointer1addr:= Base+0x2180a0 pointer1result := ReadMemory(pointer1addr, "GTA:SA:MP")...
  4. P

    AHK SAMP UdfEx (0.3.7)

    Re: [AHK] samp UdfEx (0.3.7) calcScreenCoors(fX,fY,fZ) { if(!checkHandles()) return false dwM := 0xB6FA2C m_11 := readFloat(hGTA, dwM + 0*4) if(ErrorLevel) { ErrorLevel := ERROR_READ_MEMORY return false } m_12 := readFloat(hGTA, dwM + 1*4) m_13 := readFloat(hGTA, dwM + 2*4)...
  5. P

    AHK SAMP UdfEx (0.3.7)

    Re: [AHK] samp UdfEx (0.3.7) How can i get the Skin id from other players?
  6. P

    AutoHotKey SAMP Trainer that injects ASM Code

    Good Job Lux Power!!!!!!!!!!!!!!!!!!!!!!
  7. P

    Searching the LsR Script

    Hey Guys, I'm searching the Script from ls-roleplay.com the Owner was [LSR]Acer. It was released on aiw but aiw is closed... Mfg. Peter
  8. P

    AHK SAMP UdfEx (0.3.7)

    Re: [AHK] samp udfEx I´ve setted Shooting on Numpad 8
  9. P

    AHK SAMP UdfEx (0.3.7)

    Re: [AHK] samp udfEx Can i send a Shot with ahk? it doesn´t  work ~RButton:: Target:=getTargetPed() if(Target) id:=getIdByPed(Target) if(id>-1) { Sendinput, {Numpad8} } return Can someone help me?
  10. P

    AHK Overlay (Samp udfEx)

    No the Syntax is callfuncforallstreamedinplayers("Function", Distance)
  11. P

    AHK Overlay (Samp udfEx)

    #push
  12. P

    AHK Overlay (Samp udfEx)

    If i edit it with TextSetString there is only one Name and not the List
  13. P

    AHK Overlay (Samp udfEx)

    Thx thats the Code at the moment Settimer, Overlay, 500 foo(o) { if(!o)   return Position := o.POS PlayerPosition := getCoordinates() Distanz := getDist(PlayerPosition,Position) ;TextSetString(Overlay,"" o.NAME "(" o.ID ") Distance:({0000ff}" Round(Distanz) "{ffffff}) HP: {FF0000}"...
  14. P

    AHK Overlay (Samp udfEx)

    push
  15. P

    AHK Overlay (Samp udfEx)

    Hi, Can somebody help me with this Overlay? SetParam("use_window", "1") SetParam("window", "GTA:SA:MP") Settimer, Nameoverlay, 250 Nameoverlay := -1 foo(o) { if(!o)   return Position := o.POS PlayerPosition := getCoordinates() Distanz := getDist(PlayerPosition,Position)...
Top