Jump to content

MC874

Contributor
  • Posts

    553
  • Joined

  • Last visited

  • Days Won

    19

MC874 last won the day on April 16 2024

MC874 had the most liked content!

Additional Information

  • Android
    10.x
  • Device
    Emulator
  • Service provider
    Other

Profile Fields

  • Discord ID
    MC #7050

Recent Profile Visitors

66,159 profile views

MC874's Achievements

  1. Hi @HorridModz, Thank you, I'm new to keystone, so reading your tool help me to understand it. Although the wordpress seems private.
  2. Hi @HorridModz, Yeah, I noticed that every instruction containing defined 0x is being replaced. Well it works in the end by limiting the address range.
  3. This post cannot be displayed because it is in a forum which requires at least 1 post to view.
  4. @HorridModz, Definitely, it's getting quite a hassle to manually reversing through IDA. It would help me (And probably others) to make the process faster.
  5. [ @HorridModz ] Not really, I always uses x86 and x64 as Emulator users (Yes, the Emulator can also run Arms) and also it's because the least I'm familiar with. When making mod menu, I always thought to include All Architecture support, so intel chipset device can also uses it. I think it would be best if you include search-pattern that the tool use in the documentation, is it debug symbol, pointer or etc? Because I always find it difficult when finding function between Arm and x86/x64.
  6. Hi @HorridModz, this is impressive. Does this work outside IL2CPP? Also with x86 / x64 architecture? (Not Arm)
  7. Hi @APEXggV2. If the coordinate is constant, the above solution will work. In Minecraft, player coordinate will stay in place except if the player switch into a server, realm, or dimension. If the coordinate address keep changing, then just modify the code above: function find_address() gg.searchNumber("233;5;100::9", gg.TYPE_DWORD) gg.refineNumber('233', gg.TYPE_DWORD) result = gg.getResults() gg.editAll('45000', gg.TYPE_DWORD) gg.clearResults() gg.searchNumber("1667;2;5731::9", gg.TYPE_DWORD) gg.refineNumber('1667', gg.TYPE_DWORD) results = gg.getResults() gg.editAll('2000', gg.TYPE_DWORD) gg.clearResults() return result, results end result, results = find_address() while(true) if gg.getValues({{address=result[1].address, flags=result[1].flags}}).value == '233' then result, results = find_address() gg.sleep(5000) --in milisecond (5 second) end
  8. Hi @Exit-, you need to read on how to use adb: How to install ADB on Windows
  9. Yeah, I forgot. It's just printing the address of metadata and libil2cpp.so. Just use Zygisk instead for easy use.
  10. Hi @missmcp, that's weird. If GGIL2CPP works, then it can find it, otherwise it's not. For me it is working:
  11. Hi @Saaammii, the game has some kind of protection. Please read this comment: AntiCheat
  12. Hi @Collen, asking for permission to attach this apk to the thread.
  13. Hi @missmcp, you can use: GGIL2CPP to find metadata registration offset. require("Il2cppApi") Il2cpp() gg.alert(tostring(Il2cpp))
  14. Hi @FlashNUT, Pardon me, you need to put the APK inside your Windows (not inside your android storage). Save this command as a .bat file and game guardian apk in the same location as your adb.exe. cd/d "%~dp0" adb.exe install gameguardian.apk
  15. Hi @FlashNUT, you need to indicate where you save the Game Guardian apk, for example: adb install --bypass-low-target-sdk-block /storage/emulated/0/Download/gameguardian.apk Also, you need to place your apk inside your phone, not in Windows.
×
×
  • 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.