Search results

  1. M

    Coordinates of Players

    Hi, Is it possible to get the names and coordinates of ALL players on the server? I tried to do this before and was only able to get the coordinates when the players were within a short radius of me or if i was spectating them. I'm assuming this has to do with streaming in some way?
  2. M

    Game crash while reading memory

    I have code in my .asi that constantly reads my x,y, and z coordinates from memory. It works perfectly until I die and just as I am about to respawn, the game crashes. Does anyone have any ideas why this might be? Thanks!
  3. M

    CLEO Help Custom text from memory

    I am trying to read the first 5 characters of a char[6] stored in the exe's memory using the following code but keep getting exceptions and a crash when i run it. The readmemory line works as I use this to read integers in other parts of my code and it works fine. 0A8D: 4@v = read_memory 1@...
  4. M

    CMD Offsets

    Hey, can anyone share the current offsets for : FUNC_ADDCLIENTCMD SAMP_CHAT_INPUT_INFO_OFFSET The most recent s0beit source I can find is from late 2013 :/
  5. M

    CLEO Help Dialog w/o SampFuncs

    Hey, I'm just looking to know if there is a way to show a SAMP dialog without having to install sampfuncs? thanks!
  6. M

    Help Dialog Style 0 new line

    When I show a DIALOG_STYLE_MSGBOX (id 0) the "\n" character has no effect on the text and just shows up as part of the text. I am trying to take a new line. All other special characters such as "\r" and "\t" do not work either. However, "\n" works perfectly for me in a DIALOG_STYLE_LIST (id 2)...
  7. M

    Anticheat Patch 0.3z

    Has anyone got the address to patch for 0.3z Anticheat? I am currently using "samp.dll + 0x61430" and patching with 0xC3 but my game still occasionally freezes when i call functions from samp.dll from my injected dll.
  8. M

    Vehicle zAngle

    I have been able to calculate the rotation of my vehicle around the zAxis (yaw) however it only calculates correctly if the vehicle is completely horizontal. If the vehicle rotates on the x or y axis, the zAngle becomes offset by between 0-90 degrees and doesn't give the same value as shown...
  9. M

    Vehicle Addresses

    Hey, i have been trying for a while to find addresses for player Driving_Flying_Vehicle (possibly a bool or an int?) and an address for the current vehicle modelId (as in vehicles.ide). I have been able to find the modelId address for cars but it doesn't seem to work on planes which is what i...
  10. M

    c++ dialog

    I'm wondering if there is a way to make a list dialog in samp without using cleo/sampfuncs?
  11. M

    DrawText

    Hey, is there any functions in GTA/SAMP that will allow me to draw text wherever i choose on the screen? i know of the High priority text and chat text but these are not what im looking for.
  12. M

    Help Static Vehicle Id

    Hey, I am trying to find an id that is static for each vehicle on a server. is this possible? I have used /dl on samp but the vehicle id changes each time i log in. Is there a vehicle id which will remain constant?
  13. M

    link asi cleo

    hey, is there a way to transfer memory between asi and cleo files? possibly via allocating memory using hex in cleo and writing to it with the asi?
  14. M

    Help memory address

    hey, are there memory addresses for each of the coordinates of the current mission checkpoint ?
  15. M

    CLEO Help Name w/o SAMPFUNCS

    Hey, I'm woindering if there is a way to get the players name on the server without using SAMPFUNCS? thanks!
  16. M

    CLEO Help Read Internet .ini

    Hey, is there a way to get a cleo to read settings from and online .ini file hosted on a website rather than locally ?
  17. M

    CLEO Help Player Coord

    I am trying to make a cleo which shows other players on the server's coordinates. I am using 20@ = 0 (Earlier in the code) :J_10 20@ += 1 if SAMP.IsPlayerConnected(20@) else_jump @J_10 SAMP.GetStreamedOutPlayerPos(20@, 1@, 2@, 3@)    but it only will show my coordinates. Any Suggestions?
  18. M

    CLEO Help Playing Sound

    Just a quick question. I am using the following opcodes to play 8 .wav files in a row with a gap of around 5 seconds between each 03CF: load_wav 2000 as 2 03D1: play_wav 2 After a wav plays, it loads the next file in it's place as for some reason you aren't able to load a wav as any numbers...
  19. M

    Map Download

    Is there any mods/cleos which download the streamed server map and save it loally to allow it to load as fast as the mainland?
Top