Jump to content
  • GameGuardian APK 101.1

       192,156,228  
    Overview: Play games your way!
    “GameGuardian” is a game cheat / hack / alteration tool. With it, you can modify money, HP, SP, and much more. You can enjoy the fun part of a game without suffering from its unseasonable design.
    Requires Android: 2.3.3+
    GameGuardian Features Summary
    Runs on ARM, x64 and x86 devices, including x86 emulators (LDPlayer, Droid4X, MOMO, KOPlayer, Andy, Memu, Leapdroid, AMIDuOS, Windroye, RemixOS, PhoenixOS, AVD, Genymotion, Nox, BlueStacks etc.) Supports Android 2.3.3+ (Gingerbread) through Lollipop (5+), Marshmallow (6+), Nougat (7+), Oreo (8+), Pie (9+), 10+. Support work without root via different virtual spaces. Support different emulators like PPSSPP, ePSXe, GameBoy etc. Game deceleration and acceleration (speedhack) for ARM and x86 devices, including x86 emulators.  Also supports both 32-bit and 64-bit applications on 64-bit devices using speedhack. Search feature: encrypted values. Search of unknown values when specifying the difference between values. Search addresses by mask. Explicit and "fuzzy" numeric searches. Text (String, Hex, AoB) search. Supports: Double, Float, Qword, Dword, XOR, Word, Byte, or Auto data-type searches. Lua scripting support. Modify all search results at once. Filtering of search results (address greater than and less than, value greater than and less than). Search in the background feature. 'The fill' feature. Time jump feature. Dump memory. Copy memory. Customizable UI. App locale for over 50 languages. And, much, much more. Notes:
    ** ROOT or VIRTUAL ENVIRONMENT ONLY **
    This tool only works on rooted devices or in virtual environment (without root in limited mode)!
    GG can work in limited mode without root, through a virtual environment. For example, through Parallel Space, VirtualXposed, Parallel Space Lite, GO multiple, 2Face and many others.
    Read the help for more details. You can find more information about rooting your device at XDA Developers. Want to help us improve, or add a translation? Then please visit thread "If you want to add a new translation or improve an existing". If you are having issues with the app, please visit thread "Gathering information about GG errors". Want to donate and help keep the project going? That's awesome! You can donate any amount (anything helps) here: Donate Need help with how to use this application? Please visit "Video tutorials" and forum "Guides". Credit:
    @d2dyno - Owner, lead designer, project management. @Enyby - Lead coder, project management. @Trasd - Technical consultant, project management. @Aqua - Creator (retired).  
     
  • Recently updated

164 files

  1. Unix/Epoch Timestamp Tool by BadCase

    A tool for generating ranged Unix/Epoch timestamp searches and timestamps.

    332 downloads

       (0 reviews)

    0 comments

    Submitted

  2. BadCase's GGIl2cpp Toolbox

    This script provides a frontend for all of the core functions of @Kruvcraft's 
    GGIl2cpp (#1zbicc50) as well as some additional functions.
    FindClass: Calls GGIl2cpp's Il2cpp.FindClass() function and loads results to the Save List. Selecting results in the Save List opens a menu to copy data, load Field instances, make Method edits and create Field and Method edits for exported scripts.
    FindFields: Calls GGIl2cpp's Il2cpp.FindFields() function and loads results to the Save List. Selecting results in the Save List opens a menu to copy data, load instances of the Field and create Field edits for exported scripts.
    FindMethods: Calls GGIl2cpp's Il2cpp.FindMethods() function and loads results to the Save List. Selecting results in the Save List opens a menu to copy data, edit Methods and create Method edits for exported scripts.
    FindObject: Calls GGIl2cpp's Il2cpp.FindObject() function and loads results to the Save List. Selecting results in the Save List opens a menu to load Field instances.
    PatchesAddress: Calls GGIl2cpp's Il2cpp.PatchesAddress() function which edits a Method in Xa with a hex byte edit. The script can create the hex byte edits for you or you can enter them manually.
    Keyword Search: Allows you to search for Classes, Methods and Fields by keyword instead of exact name. Classes will be added to the Save List for Class and Field results, Methods will be added for Method results.
    Script Creator: Allows you to edit created function names, modify menu order and export scripts.

    1,906 downloads

       (1 review)

    1 comment

    Updated

  3. Obfuscated Class Finder by BadCase

    A tool to find new class names after updates in unity games that use obfuscated class, field and method names.
    You must have an old dump that you know the Namespace and Class name in and the current dump in order to find the new Class name.

    880 downloads

       (0 reviews)

    0 comments

    Submitted

  4. Unity Script Templates by BadCase

    These are a few templates to allow you to easily create scripts for Unity based games.
    Fields.Class.Name.Offset.Template.by.BadCase
    Add edits to the "fieldEdits" table in the following format
        [1] = {
            editName = "Free Clothes",
            emoji = "👖",
            edits = {
                {
                    className = "ClothesOriData",
                    armEdits = {0X18, 0X28},
                    editTo = 0,
                    editType = gg.TYPE_DWORD,
                    editIfEqual = nil
                }, {
                    className = "ClothesOriData",
                    armEdits = {0X1C, 0X28},
                    editTo = 0,
                    editType = gg.TYPE_DWORD,
                    editIfEqual = nil
                }}
        },
    className: is the name of the Class the Field belongs to
    armEdits: is a table in this format {arm7_field_offset,arm8_field_offset}
    editTo: is the value to edit the Field instances to
    editType: is the type of value to edit the Field instance as
    editIfEqual: use if you only want to edit fields of a certain value and or get user input for this value can bet set to
    nil: if editing all Field instance
    integer: for editing all Field instances of a single value
    integer range: in this format 0~100 for editing all Field instance with a value in that range
    text: for providing instructions to the user in a prompt asking them to specify the value to be edited
    Methods.Class.Method.Name.Template.by.BadCase
    Add edits to the "methodEdits" table in the following format
        [1] = {
            editName = "Unlimited Ammo",
            emoji = "♾️",
            edits = {
                {
                    className = "Player",
                    methodName = "HasBulletsClip",
                    armEdits = {{"~A MOV R0, #1", "~A BX LR"}, {"~A8 MOV W0, #1", "~A8 RET"}}
                }}
        },
        
    className: is the name of the Class the Method belongs to
    methodName: is the name of the Method to edit
    armEdits: is a table in this format {(arm7_lib_edits},{arm8_lib_edits}} edits can be GG assembler opcodes (~A BX LR), hex (00000000h) or reverse hex (00000000r)
    Combined.Field.Method.Template.by.BadCase
    This is the above 2 templates combined, make sure you have the same items in both the "methodEdits" and "fieldEdits"
    If a function only has one type of edits for example "fieldEdits" and no "methodEdits" then the "methodEdits" edit table for that function should be an empty table {}
    Check the last function in the script for an example.

     

    1,216 downloads

       (2 reviews)

    1 comment

    Submitted

  5. String replacer

    Often when editing strings in games there will be a limit on the length of the string. Script will put length equal to the modified string. This does not work if the game has a custom sized limit for the string you want to modify.




    1,020 downloads

       (0 reviews)

    0 comments

    Updated

  6. Value Finder/Searcher Script

    Value Searching , Editing

    866 downloads

       (0 reviews)

    0 comments

    Submitted

  7. Class name and Field offset searcher

    Sometimes, we could find the value with gg. But in dump.cs, we dont know which value under which class is the right one for modding.
    Testing one by one takes time. In those cases, how did you continue your modding journey? 
    This script do search the class name and field offset of the value. So you will easily know what one to be editted.
     
    Usage
    -search your value.
    -when you get the value, run script.
    -script will give you class and offset of that value.
     
     
     

    9,146 downloads

       (0 reviews)

    6 comments

    Updated

  8. LIBIL2CPP.SO CHECKER SCRIPT

    IT CHECKS WHETHER THAT LIBIL2CPP.SO FILE IS PRESENT IN THE GAME OR NOT

    425 downloads

       (0 reviews)

    0 comments

    Submitted

  9. ELGG LITE

    This encryption is the "Lite" version of my ELGG. This encryption has almost the same features as ELGG except lasm obfuscation. I will add lasm obfuscation in ELGG LITE soon.
    ×× Encryption Features ××
    • Block Load, Loadfile, Dofile and Hook.
    • 2k Keys
    • Support Most Strings.
    • Block Sstool.
    • Block Auto Decrypt.
    • Strong Blockers.
    • Hard To Decrypt.

    545 downloads

       (0 reviews)

    0 comments

    Updated

  10. EncryptionLuaGG(ELGG).lua

    This is a lua encryption tool by RedDragonEmperor. This is a simple lua Encryption. This Encryption doesn't have many features but I will add many more features in future updates. Also I will keep increasing its stability and strength in upcoming updates.
    ×× Encryption Features ××
    • Block Load, Loadfile, Dofile and Hook.
    • Support Most Strings.
    • Block Sstool.
    • Super Strong Lasm Obfuscation.
    • Block Auto Decrypt.
    • Hard To Decrypt.

    2,759 downloads

       (0 reviews)

    0 comments

    Updated

  11. Chat Room for lua by RED DRAGON EMPEROR Official

    This is a chat room lua script for GameGuardian developed by RED DRAGON EMPEROR Official.
    Chat room features:
    • Can send unlimited messages.
    • Can read unlimited messages.
    • 100% Free.

    258 downloads

       (0 reviews)

    0 comments

    Submitted

  12. BadCase's Toolbox

    New Hooking and calling methods with Il2Cpp Edits by Name Plugin
     
    This is a plugin based script aimed mainly at finding edits and creating scripts for Unity based games but can be extended via plugin to do whatever you are capable of scripting for any type of game.
    You can import dump.cs (Il2CppDumper) and types.cs (Il2CppInspector) files.
    My Il2Cpp Fields and Edit by Name scripts are included as plugins with improvements over the original scripts for making edits.
    You can export standalone scripts using the edits made with the plugins.
    Do not delete the BC_DATA directory that is created or the files inside of it and its subdirectories.
     
    Info for creating plugins:
    A template for creating plugins is in the downloads list with the toolbox.
    --
    To load data from dump.cs or types.cs, user will be prompted to select a dump.cs or types.cs file if a saved json with processed dump data is not found in the scripts data directory.
    dumpHandler.loadDumpData()
    --
    To make the script return to your plugins main menu instead of the scripts main menu when the floating [Sx] button is pressed.
    pluginManager.returnHome = true
    pluginManager.returnPluginTable = "yourScriptsFunctionTableHere"
    To make normal functionality return to the floating [Sx] button.
    pluginManager.returnHome = false
    -- 
    Search results from the built in dump search plugins are stored in the following tables which reference dump_cs_table
    The tables are created upon loading the search plugin.
    Method results
    dumpSearcher.methodResults = { {1,10} } -- this would be one result referencing dump_cs_table[1].methods[10]
    Field results
    dumpSearcher.fieldResults = { {1,10} } -- this would be one result referencing dump_cs_table[1].fields[10]
    Enum
    dumpSearcher.enumResults = { {1,10} } -- this would be one result referencing dump_cs_table[1].fields[10]
    --
    Your plugin should be based on the plugin template and have a unique function table name, there should at minimum be a function named "home" in the function table.
     

    7,123 downloads

       (0 reviews)

    12 comments

    Updated

  13. Encryption3.0 By Shadow0007

    Hey guys,
    I made a little lua Encryption. It is powerfull enough to keep your script safe. I hope some of you can make some use of this, just give me the credit in the label. 
     
    Function
    Antilog, Antihook, strong string encode.
    Obfuscating assembly Code (Trofroop Dumper)
    It transform the code and make JMP Goto spam in middle to make hard to decrypt it hide the code within other code causing a Dissamble produce the incorrect output. It also add garbage code in lasm. 
     
    If you face any type of problem you can contact me through my Telegram ID.
    https://t.me/The_Deleted_Error
    You can join my Telegram channel for more
    https://t.me/shadow009
    If you like it subscribe to my YouTube channel Shadow!!
    https://m.youtube.com/channel/UCbOBFnZb12FDCKNBNWoEYQQ
     

    540 downloads

       (0 reviews)

    0 comments

    Updated

  14. XAPK Maker

    The obb and apk copyr for the app is already installed to generate the complete xapk.
    Mistakenly created manifest.json file for apxapk installer.
    Telagram Group
    Telagram Channel
    YouTube Channel
     
    The steps are as follows:
     



    571 downloads

       (0 reviews)

    0 comments

    Updated

  15. Hidden global-metadata.dat searcher

    Read before download!
    Finally i've done this one. There are games such as freefire, ace fishing which hide metadata. This script will give you the hidden metadata header.
    If the value of result address is 0 or any number which the first 4 bytes is not AF 1B B1 FA, metadata header has been probably obfuscated. Re-edit header value for valid use.
     
     
     
    This script is Open Source! I'll update script when i found new features.
    Big thanks to cmp and enyby.

    6,466 downloads

       (0 reviews)

    1 comment

    Updated

  16. Jad3d arm64 .so injector

    Info:
    This project is in a "work in progress" state. Please report any bugs or suggestions. Many features are missing, like "create thread", "save settings", ... Testing was limited, not all .so will work  
    How to use:
    Attach GG to target process Run script, click "Inject" Locate file via file prompt Select function by name that you would like to run Toggle target app to background and then to foreground Done!  

    1,195 downloads

       (0 reviews)

    4 comments

    Updated

  17. Text to Dword Search Converter

    convert text to dward search
    (for easy public const string search)



    *this tool is beta*
    *comment if any error found ty ☺*

    991 downloads

       (0 reviews)

    0 comments

    Updated

  18. Dynamic Value Remover

    This is a simple tool that spams value unchanged search on your search results.
    It is useful when you have a bunch of results, and want to narrow them down.

    994 downloads

       (0 reviews)

    2 comments

    Submitted

  19. Class.lua

    Class.lua
    I modified RxHacker job
    Original Script
    Field Offset Finder
    Use Script Tool or Dump.cs
    32 Bit
    Use Region ANONYMOUS only
    How To Use
    https://youtu.be/6kCjoMslAgo

    1,709 downloads

       (1 review)

    2 comments

    Updated

  20. TU Tools Encryption

    TU Tools Features:
    - Anti Lasm (BIG)
    - Anti Load
    - Anti Log
    - Blocking Unluac
    - Blocking Auto Decrypt

    2,493 downloads

       (1 review)

    0 comments

    Updated

  21. Value Finder For Any Game

    This Script can br used to hack any games by values 
     
    Enjoy 😎😎

    2,240 downloads

       (0 reviews)

    0 comments

    Submitted

  22. libil2cpp.so and metadata.dat dumping script

    -Launch game
    -Run script
    -Two methods to dump
     
    This script is Open Source! I'll update script when i found new features.
    Big thanks to cmp and enyby for precious coding knowledge.

    12,649 downloads

       (1 review)

    4 comments

    Updated

  23. bilibiliSubtitle to SRT

    Convert bilibili's JSON-subtitle to SRT

    1,381 downloads

       (0 reviews)

    1 comment

    Updated

  24. Hack Finder Value Script Tool

    Hello, I did this for myself, it was a bit confusing, but now it looks better, I added the decimal searches we searched manually in almost every game into the script.
    You can also search with double. If you use the script properly, it will not crash. Don't forget to click the revert button after each transaction.
     

    2,116 downloads

       (0 reviews)

    1 comment

    Updated

  25. Hook Offset Searcher

    Script search the offsets where hacker hook, inject, jump codes. Useful for searching offsets of modded games.
    Its only available for armv7 for now. I will update script when i am ready for arm64.
     
     
     
    Special Thanks to cmp, enyby, saiaapiz

    11,715 downloads

       (1 review)

    11 comments

    Updated


  • 114248 What virtual space do you use?

    1. 1. What virtual space do you use?


      • Parallel Space (best choice)
      • VirtualXposed
      • Parallel Space Lite
      • GO Multiple
      • Dr. Clone
      • Virtual Space
      • ES Parallel Accounts
      • NoxApp+
      • DualSpace
      • Octopus
      • AppBox
      • DualSpace Blue
      • DualSpace Lite
      • 2Face
      • Other virtual space
      • I have a root
      • Multiple Space
      • clonneapp
      • Parallel Accounts
      • APP Cloner
      • App Hider
      • Calculator+
      • Multi
      • App Hider Lite
      • Dual App
      • Phone (Dialer Vault)
      • Notepad
      • Parallel Space Pro
      • VMOS
      • Clone App
    2. 2. Do you use the Internet?


      • No, I don't.
      • Yes, I do.

×
×
  • 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.