Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/09/2025 in Posts

  1. Hello Everyone, Name of Game: Kingdom adventurersPayback 2 Play Store Link (If it's a paid app, the apk): https://play.google.com/store/apps/details?id=net.kairosoft.android.kingdom_en&hl=en Version if you know it: Not sure, latest. What cheat? EVERYTHING (wood, food, gems, etc...) Have you tried cheating this game? What happened?: Sorry for asking this of you but this game is strange, yesterday when i downloaded it, I could easily change the values (searching for Dword values and updating once they change, the simple way) except for gems (yes i tried changing the values of the items in the shop to negative but didn't work) ad i played for hours, but when I opened it today, NOTHING SEEMED TO WORK! the values wont change any more, like they do not appear in the search any more. the game only needs internet upon opening but it can be turned off later so its not server side. . any who, I came here after attempting for almost 6 hours, either I am hallucinating or the game evolved somehow. and there was no update since yesterday. Comments:
    1 point
  2. View File clonneapp Requires Android: Android 4.0.3 (Ice Cream Sandwich MR1) or later. There is support for x86. Video: No root via clonneapp - GameGuardian (#882851k) Before installing the optimized version, uninstall the version from Google Play. Differences of the optimized version: no error 105. Submitter Enyby Submitted 08/03/2018 Category Virtual spaces (no root)  
    1 point
  3. Which version 1 or 2?
    1 point
  4. View File Silly Royale Includes : Wall hack , Wall hack 2.0 , Long Kill (Devil) , Daily Spin Always Get Skin Submitter luckyday-999 Submitted 02/06/2025 Category LUA scripts  
    1 point
  5. -- set ranges -- clear results gg.searchNumber x=gg.getResulrs(gg.getResultsCount()) for i, v in ipairs(x) do v.address=v.address-0x1C end -- change 0x1C to your offset gg.loadResults(x) gg.refineNumber
    1 point
  6. View File ImGui it's just an imgui... Submitter Lidarr Submitted 02/05/2025 Category Templates  
    1 point
  7. SIMPLE SCRIPT EASY TO UNDERSTAND HOW TO USE OFFSET WITH GAME GUARDIAN gg.setValues({{address=gg.getRangesList("libexample.so")[1].start+0xABC123,flags=gg.TYPE_FLOAT,value=345}}) Script Breakdown 1. gg.setValues(): This function is used to set new values in the memory of the application being modified by GameGuardian. It allows you to specify what memory address you want to change and what value you want to set there. 2. {{address=gg.getRangesList("libexample.so")[1].start+0xABC123, flags=gg.TYPE_FLOAT, value=345}}: This argument to `gg.setValues()` is a table (in Lua, tables are used to represent arrays and objects). Let’s dissect this table: gg.getRangesList("libexample.so"): This function retrieves a list of memory ranges associated with the specified library, in this case, `"libexample.so"`. The returned list includes information about different segments of memory related to this library. [1]: Accesses the first range/address(base Address) from the list. This typically refers to the main segment where the library’s data is stored. start: This property of the memory range object gives the starting address of the memory segment for `"libexample.so"`. +0xABC123: Adds an offset to the starting address. The offset `0xABC123` is a hexadecimal number which represents the specific location within the library’s memory where you want to make the change. flags=gg.TYPE_FLOAT: Specifies the type of data being modified at the target address. In this case, `gg.TYPE_FLOAT` indicates that the value being set is a floating-point number. value=345: This is the new value that will be set at the calculated address. Since `flags=gg.TYPE_FLOAT`, `345` will be interpreted as a floating-point number. Summary This script sets a floating-point value (`345`) at a specific address in the memory of the game or application. The exact address is determined by adding an offset (`0xABC123`) to the starting address of the memory range for the `"libexample.so"` library. This could be used to modify game behavior or data dynamically.
    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.