Recent content by democrazy

  1. D

    Help raknet rpc_chat

    //send byte msgLength; char msg[256]; //receive short playerid; byte msgLength; char msg[256];
  2. D

    AHK SAMP UdfEx (0.3.7)

    client side commands need a function pointer, which will handle your command but samp udf works external , so client side command is not useful
  3. D

    AHK SAMP UdfEx (0.3.7)

    yes, but it doesn't make sense use AHK hotkeys instead
  4. D

    Write with ReadProcessMemory to samp.dll

    process name = "gta_sa.exe"
  5. D

    AHK SAMP UdfEx (0.3.7)

    you can set "red checkpoint" with this functions, i made: setCheckpoint(fX, fY, fZ, fSize ) {     if(!checkHandles())         return false     dwFunc := dwSAMP + 0x9D340         dwAddress := readDWORD(hGTA, dwSAMP + ADDR_SAMP_INCHAT_PTR) ;misc info     if(ErrorLevel || dwAddress==0) {        ...
  6. D

    AHK SAMP UdfEx (0.3.7)

    - Try "run as admin" - any error messages? (use "#Warn") - and if this doesn't help ensure you have "#NoEnv" statement in your testscript (i encoutred some time ago, that without it scripts dont work well) good luck
  7. D

    AHK SAMP UdfEx (0.3.7)

    https://ugbase.eu/releases-77/%28ahk%29-samp-udfex/msg69117/#msg69117
  8. D

    Debate over religious beliefs

    why u no let Jesuz/Mohammed/Buddah/.. inside of you?  :sadpepe: i think religion is some creation of human it was created for various reasons, eg people cant explain things
  9. D

    AHK SAMP UdfEx (0.3.7)

    fHealth := readFloat(hGTA, carinfo + 0x4C0)
  10. D

    AHK SAMP UdfEx (0.3.7)

    what do you mean by "car dll"? if you want like samp vehicle id, then you have to make some function like getGTAVehicleFromSAMPVehicleID from mod_sa
  11. D

    Understanding the self.

    you forgot to mention about chemtrails and do you wear a tin foil hat right now?
  12. D

    AHK SAMP UdfEx (0.3.7)

    Re: [AHK] samp UdfEx (0.3.7) if i got this right, it will play some sound if "Your fuel is low." is printed in chat? then you can already do this with existing ahk functions loop read, SoundPlay
  13. D

    Help Can you tell me this object's id because I can't find it?

    use sobeit "Render object texts"
  14. D

    REQ Wallhack

    nvm
  15. D

    AHK SAMP UdfEx (0.3.7)

    Re: [AHK] samp UdfEx (0.3.7) simple color to hex for color embedding: ColorToStr(color) {     color += 0     color >>= 8     color &= 0xffffff     SetFormat, IntegerFast, hex     color += 0     color .= ""     StringTrimLeft, color, color, 2     SetFormat, IntegerFast, d     return "{" color "}" }
Top