-
GameGuardian APK 101.1
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
Templates
65 files
-
MENU ON/OFF TEMPLATE
By LaToM
This script is designed to create a feature menu with toggleable options for memory editing in GameGuardian. It allows users to turn on and off different features by modifying memory values. The script defines functions for each feature to turn them on and off and organizes them into three groups. The script also defines a function to toggle the state of a given feature in the menu, which checks whether the feature is currently turned on or off and calls the appropriate on or off function accordingly. The state of each feature is stored in a boolean array, and the script displays a feature menu that allows users to toggle the state of each feature. The script also includes a main menu function that allows users to either display the feature menu or exit the script.
198 downloads
0 comments
Submitted
-
FreeToEditScript.lua
By GlowinBadu
Edit Template the script by Vloyoht Gaming YT BG about script talk to me in discord VloyohtGamingYT#7098
167 downloads
0 comments
Submitted
-
Advanced lib patcher
By MAARS
Advanced lib patcher template (ALP)
This is a template for advanced lib patcher. This template allow you to patch libs with a lot of features.
It is intended to make updating offsets more easier. And also use the same script for multiple abi ( armeabi-v7a, arm64-v8a ) at the same time.
Support
Telegram
357 downloads
0 comments
Updated
-
0 comments
Updated
-
Lua With PHP Simple multiple online password with using php
By DemonCheats
I had nothing to do again, so this was born.
The use is quite simple, there is an example of use in the file and the php code itself (because you can only upload lua files).
155 downloads
0 comments
Updated
-
metadata_fields_modifier
By veh
Template for automatic finding of the values to modify from the class strings and fields offsets
This gameguardian script to help automatize fields modifications, from the info you have found into the global-metadata file.
have been tested only in this configuration:
- original phone android 11, no-root
- virtualxposed + gameguardian
Now it help me as a base when I try a new game
-> only need to indicate the classes and fields names I want to look for
Notes:
- to use it you need to edit the script and adapt it for your specific game -> it is a template
- must know what is global-metadata file + a bit of lua script language (not too much)
- it is searching the fields into the anonymous A region (often in my android phone fields values are there)
- if the game upgrade, possible that classes names and fields offsets are modified so you must upgrade your script too
How to use and modify the template
1. open the global-metada file [see below to know how to get it], and find the classes and fields you are interested in -> it is the hard stuff
in this example are selected two fields I want to alterate the values:
- classname is LockDrillerMinigameParameters
- field SafeAngle, that is a float, with offset 0x40
- field ShakeModifierIncreasingRate, a float too, offset 0x44
2. edit the metadata_fields_modifier script (on the phone I use Acode), but to be faster can be done on the PC (open with notepad and copy-paste the data directly from global-metadata)
from line 55 in the script, modify the classes_and_fields to fit your data, the example gives:
(before it was line 20 but now line 55)
local classes_and_fields = {
LockDrillerMinigameParameters=
{fields={
{'SafeAngle' , gg.TYPE_FLOAT, 0x40 , 32},
{'ShakeModifier' , gg.TYPE_FLOAT , 0x44 , 0.001}
}},
}
for each field you have:
{'field name', data type, offset, eventual replaced value}
data type possibilities, according what global-metadata indicates
-- gg.TYPE_FLOAT for float
-- gg.TYPE_BYTE for bool
-- gg.TYPE_DWORD for int
Note:
-> "replaced value" is optional, can put only {'SafeAngle',gg.TYPE_FLOAT,0x40}
a) indeed at the beginning you do not know what field is impacting the game, so with this script you can put many classes (ex: 10) and all the int/float fields that seems interesting (ex: 5 for each classes)
b) then running the script in the game, it will find and load each field in gameguardian without modification
c) next you can try to modify the value of each of these fields to look for the best to use, and what values to put
d) edit the script again and this time you can specify the "replaced value" at the end like in my example {'SafeAngle',gg.TYPE_FLOAT,0x40 , 0x32}
3. open the game + run the metadata_fields_modifier script in the game
-> it will ask you what class to search for
Then if successful, the results class and fields data, will be loaded in the gameguardian interface (save tab) so you can check what has be done and modified
=> Hope this script will help you make some great modifications on the games you like.
Extra info about getting global-metadata
- I use the great libil2cpp.so and metadata.dat dumping script (LibDumper by @Lover1500) -> get both needed files (script can be found on this site)
https://gameguardian.net/forum/files/file/2740-libil2cppso-and-metadatadat-dumping-script/?tab=comments#comment-9358
- then I use "il2cppdumper gui" on my phone (dont remember where I found the app apk) to convert both files -> finally got the global-metdata file (named dump.cs)
- seeing it is a very big file not easily readable on the phone -> I send it to the PC to search for some interesting classes to alterate
477 downloads
-
Language Select V1
By Learn_lua
Language select easy to edit.
You can add more languages
-- contact --
Telegram : https://t.me/learn_lua
Facebook : Avartar Icecream
Youtube : https://www.youtube.com/learnlua
405 downloads
0 comments
Updated
-
os.clock Script (Timer) os.clock to Add in your Script
By FamiFema
⏳
Script (Timer) os.clock to Add in your Script
⏳
283 downloads
0 comments
Submitted
-
os.date Script os.date to Add in your Script
By FamiFema
📆🕛⏳
Script Date and Time to Add in your Script
📆🕛⏳
402 downloads
0 comments
Submitted
-
Make you Own lua Script
Make ur own script
Only add the hack name and value
Any game u need to hack
5 hacks only can be added
With ur name
And ur hacks
Enjoy
879 downloads
0 comments
Submitted
-
Easy script to edit and make your own lua!
By MODZBYANDREW
- - - - - follow instructions with these lines - - - - - - -
Script by jason funny gamer!
856 downloads
0 comments
Updated
-
Make your own lua script
By MODZBYANDREW
---Read instructions lines
And input your txt and hacks!
Enjoy!
345 downloads
0 comments
Submitted
-
Password For Script USER & PASSWORD / Expire CODE BY PRO XD
By PRO128XD
EN 🇺🇸
ABOUT THIS FILE
1- ADD EXPIRE DATE Script 🙂
2- ADD USER & NAME TO YOUR SCRIPT :-)
.....
AR عربي 🇦🇪
عن هذا ملف
1 - اضافة تاريخ وقت انتهاء سكربت
2 - اضافة اسم مستخدم و كلمة مرور لي اضافته إلى سكربت خاص بك
......
FILE BY PRO XD
YT : XD محترف
680 downloads
- password code
- Pro xd
- (and 4 more)
0 comments
Submitted
-
0 comments
Submitted
-
Jad3d : Framework
By darklinux
Jad3d is a basic mod framework.
Features
Menus Buttons Toasts Functions Menu transitions Attach/Read/Write Multi language support Feedback is appreciated. Many changes to come!
232 downloads
-
GameGuardian Script Tutorial (Detailed)
Hello Everyone! You can make your own Script file with simple methods! Files in Description. You can watch video tutorials!
Tutorial Videos here!
1,334 downloads
0 comments
Updated
-
0 comments
Submitted
-
How To Make Script (TUTORIAL SCRIPT)
Im Show yours how to make GameGuardian lua script 😊
3,335 downloads
0 comments
Updated
-
template UI Button Menu Template
By YeetMeister
No Credits, Download and view the code in a Text/Code Editor
768 downloads
0 comments
Submitted
-
[1.0] Crystal Exec Runtime.lua
Hi guys its crystal mods!
Tired of rewriting code especially offset code multiple times?
well this script can only do it multiple times in ONE FUNCTION!
Warning: the long function Runtime() must be declared above all of your functions so you can access it when u need it
How to use it:
1.Paste the offset code function above all your hack functions
2. when you want to use it simply call the function then enter the following information
example use: Runtime(32,100,gg.TYPE_DWORD,0x91,gg.TYPE_FLOAT,0.01) {search 100 in A also DWORD, sleeps 10 seconds for a value change then prompts to enter the new value, refines the value then starts adding the offset you entered, selects the flags you would like to edit it into then edit it!}
this will search your value in whatever range, and data type, then it will give you 10 seconds to change the value, you do so then it will get one results after refining your input. it will do the offset method as normal until you get your desired want 🙂
Next features:
Check if lib file is present
Add Down offset + faster execution
Self Encode v1.0 (to prevent modifcation) (if you want unwanted calls simply rename the function)
Please use credits if ever reposting after modifying ^^
please comment your thoughts on this script thanks
614 downloads
0 comments
Submitted
-
Tools script Auto freeze LUA tools 100% works all hack game
Penerbit : FREZEE • GAMING`ŹÓ
note this is just sample text for lua not to be used always
bantuan lua gg
improvement : FREZEE • GAMING`ŹO
nikmati di gg
1,045 downloads
0 comments
Submitted
-
(Anti-Dec) Block SSTool, Threat and Neoterm
By PublicHax
(Anti-Dec) Block SSTool, Threat and Neoterm
Thanks for help to Erbaev.
Screenshot by Laysen.
This code block sstool.
398 downloads
0 comments
Submitted
-
Password For Scripts
By PublicHax
This file contains the window code in which you will need to enter a specific password.
The file is not encrypted, you can change it for yourself and insert it into your script
1,246 downloads
- Password For Scripts
- Password
- (and 10 more)
0 comments
Updated
-
Use GG Version For Script | Work on equipped versions script
By PublicHax
ppap hahaha
Use GG Version For Script | Work on equipped versions script
Use GG Version For Script | Work on equipped versions script
Use GG Version For Script | Work on equipped versions script
Made by PublicHax ©️ 2️⃣0️⃣2️⃣1️⃣
801 downloads
-
Download Statistics