Recent content by mrT101

  1. M

    Coordinates of Players

    So it is 100% impossible using just data from SAMP?
  2. 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?
  3. M

    Game crash while reading memory

    Thanks springfield. That seems to have worked!
  4. 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!
  5. M

    CLEO Help Custom text from memory

    Yes, I've tried code that does the same as your example and it works fine when I define the string within cleo, e.g. "TEXT". What I am looking to do is read a string from samp's memory and show it so the problem is likely to be in these lines: 0A8D: 4@v = read_memory 1@ size 5 virtual_protect...
  6. 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@...
  7. M

    CMD Offsets

    T3K Thx!
  8. M

    CMD Offsets

    Thanks man, works perfectly! can I ask where you found the s0beit to get these current offsets?
  9. 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 :/
  10. M

    SA-MP Crashing

    try deleting the gta_sa.set in your "myDocuments\GTASAUserFiles\" folder
  11. M

    Ped Pool

    Try This. As far as I know, playerIds start at 0 so in your for loop, start with i at a value of 0. I've made it so that you have to press the numpad9 key to set the player health. The crash may have been caused as you were trying to set ped health to 0 as soon as the game launched so now press...
  12. M

    Ped Pool

    post all of the code here from your .cpp you are creating an asi, yes?
  13. M

    Ped Pool

    Try this code modified from T3K's example: #define cPedpPoolStart 0xB7CD98                      //Leave out if already defined #define cPedPoolMaximumNumber 0xB74498      // #define OFFSET_HEALTH 0x540                        // for (int i = 0; i < *(int*)cPedPoolMaximumNumber ; i++) {  ...
  14. M

    Anticheat Patch 0.3z

    Ok, I've been trying some things and have found that: 1. If I use a string literal, the dialog displays each time and there is no freezing at all. showSampDialog(0, 0 ,2,"LIST","This is my string","OK","CLOSE"); 2.If I use a char* with a constant string there is no freezing and the dialog...
  15. M

    Anticheat Patch 0.3z

    Thanks T3K, I tried your suggestion and it still froze the game before the dialog was shown around 30% of the time. I'll try whatever other changes i can think of to get this working. without freezing
Top