Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/20/2024 in all areas

  1. There is good chance that in some cases it may work by allocating as many pages as needed one after another. Example implementation: local PAGE_SIZE = 0x1000 function allocateConsecutivePages(count, mode, address) count = count or 1 mode = mode or gg.PROT_READ | gg.PROT_EXEC address = address or 0 local firstPageAddress = gg.allocatePage(mode, address) if type(firstPageAddress) == "string" then return firstPageAddress end for i = 1, count - 1 do local desiredPageAddress = firstPageAddress + i * PAGE_SIZE local pageAddress = gg.allocatePage(mode, desiredPageAddress) if pageAddress ~= desiredPageAddress then -- failed to allocate page right after previous one, handle as needed end end return firstPageAddress end
    2 points
  2. The values in the game are not encrypted, the data type is "Dword", the search region is "Anonymous". Find the value that is responsible for the character's level, add the address to the save list and make an offset of 8. This way you will get two values that are responsible for the level of the character and for the level of equipment.
    1 point
  3. I reason is i have to write some code which is longer then 4kb , using your concept i can write the code. But what happened is i had to write a jump code at the end of 4kb to another allocated space, so i was wondering if there was any way to allocate an continues block of memory more then 4kb. But turns but there isn't such option. I think i will move forward with jump code. Thank you
    1 point
  4. 1 point
  5. the video is very good, a pity that for famous games it is easy to detect (free fire, pubg, cod), at least in my tests here ... but it works very well in simple games
    1 point
  6. All complains write to https://forum.cheatengine.org/
    1 point
  7. You always can try use Cheat Engine (or another tool) for understand: GG is not as bad as it could be.
    1 point
  8. aah i remember using it years ago before GG was like now. very old school, there were several similair modification tools, at that time Game Hacker was the best for me, they dont update it anymore but it was very similair then GG at that time, talking about 2013 or 2014, old times for reall, when it was only you looking for a value and editing it haha ya had to make like videos explaining people how to find the hack, look enyby how advanced GG becaume we can make like or own scripts so everyone can use it, genius team
    1 point
  9. PC not need. https://cheatengine.org/download/CheatEngine.apk
    1 point
  10. requires pc? and where you get the second icon cheat engine that you press second?
    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.