Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/28/2021 in all areas

  1. Version 8.7

    91,796 downloads

    Script Mobile legends. Password: HERO GAME Official Problem: Telegram Alternate link: Download
    1 point
  2. More like you need to find out the values of first and seconds bytes that together correspond to the value you need. The following code may work for values in range [0;32767]: local value = 3000 local firstByte = value % 256 local secondByte = (value >> 8) % 256 local searchString = string.format("%d;%d::2", secondByte, firstByte) print(searchString) -- 11;184::2 As you see, this is slightly incorrect. That would be correct for value 3003. Also you may want ordered group search like in my example in which case you need to search for bytes in the correct order.
    1 point
  3. The values for bytes that I provided are hexadecimal. So with 10 I meant 0x10 (16) and with 27 I meant 0x27 (39). Try them. Also from your video it seems that bytes do not need to be swapped so ignore that step.
    1 point
  4. I have discovered something, others have discovered something, I have put the pieces together. however no reverse just a lot of time spent trying and trying again ...
    1 point
  5. I'm currently hacking it. Guide is in the works.
    1 point
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.