Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation since 12/01/2025 in all areas

  1. Awesome script! DC Heroes and Villains worked like a charm. Please kindly make one for Harry Potter Puzzles and Spells. A script for infinite moves would be nice. Thanks in advance! Keep up the great work
    2 points
  2. Scolosaurus ; 378,474,081 Skoolasaurus ; 1,564,722,760 Skoonasaurus ; 1,869,980,874
    2 points
  3. View File Online Mega Script v06 UPDATED 18 Nov 2025 [ 239 ] Total Games 1945 Air Force 3D Pool Ball ACE Fighter Agent J Aliens vs Zombies Almost A Hero Ancient Allies TD Angry Birds 2 Angry Birds Family Angry Birds Friends Angry Birds Match3 AnimA Archero Arrow Quest Attack Hole Auto Hero Awesome Tanks Ball Blast Bang Bang Rabbit Battle Strategy TD BeatStar Beyblade Rivals Bladebound Blitz: R.o.Heroes BOOM Castle Boom Stick BounceMasters Bowmasters Box Head ZMD Brawl Fighter Brick Inc Bricks Breaker GB CarX Highway Catapult King Chill & Kill Clan Race Clash of Destiny Combat Cruiser Conquer the Tower Conquer the Tower 2 Crossy Road Cyber Surfer Cyberpunk Hero DC Heroes Villains Dead Ahead ZW Dead Raid ZS 3D Dead Trigger Dead Trigger 2 Dead Warfare Death Invasion: Surv. Defenders 2 Defense Legend 5 Demon Blade Devil Eater Dice Dreams Disney Heroes BM Doomsland Dragon Ball Legends Dragon POW! Dragon Titan Uprising Dream Defense Dungeon Slasher Dust Settle Dye Hard Endless Frontier Epic Stickman EventHorizon Frontier Faily Brakes 2 Fight for America Final Galaxy Fire Hero 2 Forged Fantasy Frozen: Free Fall Fruit Ninja 1 Fruit Ninja 2 Galaxiga Galaxy Attack SG Galaxy Shooter: AFW GEARS: W.M. Gems of War Grow Castle Grunt Rush Gun Run A.S.S. Gun War Hero Blitz Hero Factory Heroes of Mavia Heroes vs Hordes Hockey All Stars 24 Honor Bound Horizon Chase Hyper Heroes Idle Hero TD Idle Monster TD Impossible Space Imposter Battle Royale Impostor Shooter MR Infinity Ops Infinity Shooter OS Injustice Gods A.U. Into the Dead 2 Island War Jewel World Museum Jurassic Monster World King of Defense 3 Kingdom Clash Last Hero S.A. Left to Survive Legend of Gladiator Legion Master Lilys Garden Lonely Survivor Loot Heroes Mad Skills MX3 Magic Rampage Magic Siege Major Gun 2 MARVEL C.o.Champions Match Hit Mecha Fortress Merge Archers Mini Golf King Mini TD 2 Mob Control Modern Sky War Moto Rider BRG Mr. Autofire NecroMerger NERF Superblast NFL Rivals Ninja Turtle Legends NonStop Knight 2 Pac Man 256 Panda Pop BS Perfect Kick 2 Pocket Necromancer Pokemon Quest POOKING - B.C. Pool Stars Puzzle Brawl Quest 4 Fuel R.A.C.E. Racing Legends Raid Royal 2 TD Raid Rush Raiden Fighter Ramboat 2 Real Steel Boxing Champ Realm Defense Red Siren Rival Kingdoms Robot Warfare Rodeo Stampede Royal Kingdom Royal Match Sci-Fi TD Module Shadow Gun ESW Shadow Knights Shadow Legends S.F. Shadow of Death Shadow Rival Shadow Slayer Shadowgun Legends Shooter.io.WS SkullGirls Sky Force Reloaded Slash and Girl Slime Castle Smash Bandits Sniper 3d Sniper Strike Sonic Boom 2 Space Quest Space Shooter GA Squad Alpha Star Force Steampunk Tower Steel Rage Stick Ninja 3v3 Stick War Saga Stickman Archer Online Storm Blades Street Racing 3D Stupid Zombies 1 Subway Match Subway Surfers Summoners Greed Survive Squad Survivor Z Swamp Attack 2 Tacticool Tank Combat Tank Hero Tank Stars Tap Titans 2 TDS Tower Dest Surv Timeline Up Tiny Gladiators 1 Tiny Gladiators 2 Top Troops Tower and Swords Tower Conquest Tower Defense BZ Tower Def Galaxy V Tower Gunner ZS Tower King Towerlands Toy Blast Traffic Rider Transformers Bumblebee Transmute: GB Turret Defense King Undead City ZS Undead VS Demon Under Dark Unkilled Wacky Battles War Commander R.A. War Heroes War Inc : Rise War Regions War Strategy Game Warhammer 40k Tac. Warzone Commander Wild Castle Wind Wings World of Artillery World Robot Boxing World Robot Boxing 2 WWE Mayhem WWII Defence Zombeast Zombie Defense Zombie Fire 3D Zombie Hunter Zombie State Zombie Warfare TDP Zombies Boom Zombtube Submitter APEXggV2 Submitted 09/24/2024 Category LUA scripts  
    1 point
  4. well.. this script isn't built for newbies. this forum has scripts for all skill levels. new users to advanced. anyways. in a month or two I should have a new script. need to rebuild this one from scratch. it's version 22 now, and everytime I update I just add more to it.. it's a big mess right now.. new script will have more features be more user friendly. have an extensive help section etc.
    1 point
  5. -- Il2CppGG by LeThi9GG require("Il2CppGG") -- Usage Instructions: -- This script demonstrates the core functionalities of Il2CppGG, a Lua-based toolkit for inspecting and manipulating Il2Cpp structures in GameGuardian. -- It covers image retrieval, class searching, method and field access, value modification, class dumping, and memory hooking. -- Prerequisites: Ensure GameGuardian is running and the target application uses Il2Cpp. Load this script in GameGuardian for execution. -- Note: Addresses and values are examples; adapt them to your specific game or application. -- For detailed API documentation, refer to the project's README.md or wiki. -- Example: Retrieve Image by Name -- Description: Fetches an Il2Cpp image (assembly) by its name. Use Il2Cpp.Image() without arguments to get all images. local Assembly = Il2Cpp.Image("Assembly-CSharp") -- Retrieves the "Assembly-CSharp" assembly. -- Example: Find Class within an Image -- Description: Searches for a class in the specified image using namespace and class name. Namespace can be nil for root-level classes. local PlayerScript = Assembly:Class(nil, "PlayerScript") -- Parameters: (namespace, classname) -- Alternative: Find Class by Name, Address, or Index -- Description: Directly searches for a class by name (recommended to use GetIndex() for performance optimization). --local PlayerScript = Il2Cpp.Class("PlayerScript") --print(PlayerScript:GetIndex()) -- Outputs the class index for faster future access. -- Example: Find Methods in a Class -- Description: Retrieves a specific method by name or lists all methods with GetMethods(). local LateUpdate = PlayerScript:GetMethod("LateUpdate") -- Finds the "LateUpdate" method. local addPoints = PlayerScript:GetMethod("addPoints") -- Finds the "addPoints" method. -- Example: Find Fields in a Class -- Description: Retrieves a specific field by name or lists all fields with GetFields(). local points = PlayerScript:GetField("points") -- Finds the "points" field. -- Alternative: Find Field by Name or Address -- Description: Global search for a field by name or direct address. --local points = Il2Cpp.Field("points") -- Searches globally by name. -- Alternative: Find Method by Name or Address -- Description: Global search for a method by name or direct address. --local AddPoints = Il2Cpp.Method("AddPoints") -- Searches globally by name. -- Example: Modify a Field Value -- Description: Locates an instance of the class and sets a new value for the field. local obj = PlayerScript:GetInstance() -- Retrieves instances of the class. points:SetValue(obj, 1000) -- Sets the "points" field to 1000 in the instance. -- Example: Dump Class to C# Format -- Description: Outputs the class structure in C# syntax for reverse engineering purposes. --print(PlayerScript:Dump()) -- Dumps the class definition, including fields, methods, and offsets. -- Hooking Examples -- Description: Demonstrates memory hooking for real-time modifications using the Hook module. -- Hooks allow intercepting and altering method calls, parameters, and fields. -- Hook a Field via a Method (e.g., hook "points" field using "LateUpdate" method) -- Description: Modifies the field value every time the method is called. local _LateUpdate = LateUpdate:field() -- Initializes hook on the method for field modification. _LateUpdate:setValues({{offset = points.offset, flags = "int", value = 9999}}) -- Sets the field to 9999. gg.sleep(10000) -- Pauses for 10 seconds to observe the effect. _LateUpdate:off() -- Disables the hook and restores original behavior. -- Hook Parameters of a Method (e.g., hook parameters of "addPoints") -- Description: Alters the parameter values passed to the method. local _addPoints = addPoints:method() -- Initializes hook on the method for parameter modification. _addPoints:param({{param = 1, flags = "int", value = 999999}}) -- Sets the first parameter to 999999. gg.sleep(10000) -- Pauses for 10 seconds. _addPoints:off() -- Disables the hook. -- Hook a Method Call (e.g., call "addPoints" from "LateUpdate") -- Description: Injects a call to another method with custom parameters during execution. local _addPoints = LateUpdate:call()(addPoints) -- Initializes hook to call "addPoints" from "LateUpdate". _addPoints:setValues({{param = 1, flags = "int", value = 999}}) -- Sets the parameter for the called method. gg.sleep(10000) -- Pauses for 10 seconds. _addPoints:off() -- Disables the hook. Il2CppGG Telegram Youtube
    1 point
  6. does anyone know how to hack an event like clash of titans & decoding dreadactylus ??
    1 point
  7. it's sometimes better for make a tutorial or something on how to use you method patcher script and explain how it actually works and what methods are because most people that use GG i assume don't know how that stuff works. Like the whole method patching only seem to have got some fame here a couple of years ago. But many members of the forum actually use basic GG search features (unknown search or something) and hope to find the value that way. Like for example you can't expect someone that is just trying to hack gold understands how to make use of such way of cheating the game. In my opinion. So yeah. My point is, make video tutorials and explain more detailed how the stuff works and why it works, like that more people can make use of a good script. Like i see it many times now, good scripts that don't get the attention it deserves because obviously people don't have any familiarity with what it is even about. It's not like this is a Reverse engineering forum, it is a forum on which people make request about cheating games and get help or something with the GG tool. So i think that at least if a script is made that is doing more then just modifying some values to hack some gold or whatever then people should be properly introduced to the functionality and purpose of the script within a forum like this in which the audience is most likely not coming from some serious technical background. Otherwise all we doing is feeding or ego in a place where it's really irrelevant.
    1 point
  8. Thanks ! Now i can enjoying play this game without frustrating unable/lack of skill to cheat using gameguardian. You are the best ! Cheers
    1 point
  9. new script posted (live update don't have to download anything) has jewel hack. the prices of summon will give you 1000000 jewels. and improved speed hack...
    1 point
  10. OK. thanks for explaining. I'll try to find something for jewels then.
    1 point
  11. Script is posted. Auto-Win, Gold, No Ads, Game Speed. https://gameguardian.net/forum/files/file/4052-online-mega-script-v06/
    1 point
  12. 1 point
  13. View File Speed Hack Finder Finds game speed value (multiplier) for 100% Unity games / 20% Non-Unity. Edit Float as a multiplier (2.0=2×speed, 10.0=10×speed, 0.25=1/4 speed) Option to copy full code so you can paste into your own scripts. Submitter APEXggV2 Submitted 12/02/2025 Category Tools  
    1 point
  14. yup. new dinos came with new game update. in some region, update show up earlier in their Playstore than other. always remember to check for an update before trying anything new.
    1 point
  15. I just found my player id and the base still exist with the hacked castle i am amazed that it wasn't banned For anyone curious to check it out #Q8j8YRG9P The way i did it back then i didn't havz root so i used virtualxposed and cloned the app and then i ran the speedhack function slowed the game down. Then i changed the elixir value to 10000 (you can do this by searching the elixir as Dword) quickly built the castle before the game syncs with the server and reboots and then placed the castle somewhere, the intresting part is that the server does indeed check that elixir value is wrong and that you shouldn't have the castle built but it does not check to verify that the coordinates are still the same. But for this modern version i run into ptrace protection which idk if it is due to newer versions of the game or because i am using root (using magisk) instead of virtually cloning the app.
    1 point
  16. yeah. maybe. I'd like to hack this game again anyways and maybe add some new hacks after I've learned some new things.. but right now I'm currently working on a big project. maybe after I'm done with that.
    1 point
  17. Today I spent the entire Halloween event thanks to some tricks I learned. I'll show you how to buy contracts at low prices (spoiler: the last contract, the Butcher's, is worth 150k coins) - that's a lot! That's why I'm going to show you how I bought the third contract for 20 coins, and this applies to all contracts. Besides that, I got the camp skins just by trading items. That has been uploaded many times here, but it's necessary for you to know. I don't have that video yet, let me know if you want it. screen-20251028-104415.mp4
    1 point
  18. How to set Game Guardian with Apktool M for Android 14 Compatibility This guide will walk you through editing SDK target of Game Guardian (GG) using Apktool M to ensure compatibility with newer Android versions "Android 14" Hey Darklord aka OREW here again --------------------------------------- 1. Download Required Tools: Game Guardian (GG) Apktool M --- 2. Decompile the Game Guardian APK: Open Apktool M. Locate the GG APK file. Select the GG APK, then click "Decompile" and wait until the process completes. --- 3. Edit the apktool.json File: Open the decompiled GG folder. Locate and open the apktool.json file. Find lines 29 and 30: "minSdkVersion": "10", "targetSdkVersion": "22" Change both versions to: "minSdkVersion": "24", "targetSdkVersion": "24" Example of apktool.json After Editing: { "apkFileName": "GameGuardian.101.1_src.apk", "PackageInfo": { "forcedPackageId": "127", "renameManifestPackage": null }, "doNotCompress": [ "resources.arsc", "png", "res/raw/ydwsh" ], "compressionType": false, "sparseResources": true, "version": "2.4.0-241015", "sharedLibrary": false, "VersionInfo": { "versionName": "101.1", "versionCode": "16142" }, "UsesFramework": { "ids": [1], "tag": null }, "unknownFiles": {}, "apkFilePath": "/storage/emulated/0/Download/GameGuardian.101.1.apk", "compactEntries": false, "isFrameworkApk": false, "sdkInfo": { "minSdkVersion": "24", "targetSdkVersion": "24" } } Save and exit the file. --- 4. Recompile the Modified APK: In Apktool M, click the "Compile" button at the top of the folder structure. Check the box for "Use aapt" and press OK. Wait for the process to finish. --- 5. Install the Recompiled APK: After recompilation, press the "Install" button. When prompted, grant root access through Magisk Manager or KernelSU Manager (as applicable). Open GG, select the default configuration, and enable the "Install from unknown sources" permission if required. --- 6. Handle Installation Issues: If GG doesn't install directly after the package name randomizer process, follow these steps: Exit and navigate to: Android > data > com.catch_.me_.if_.you_.can_ (GG data folder) > cache > tmpe.apk This tmpe.apk file is the new GG package. In Apktool M, open it and select "Quick Edit." Set the Main SDK and Target SDK versions to 24. Press "Save", install the new package, and you're done! --- Enjoy using Game Guardian on your device! ^_^
    1 point
  19. for the jewels i think you can just patch one of those jewel methods of the DataController class. Have you already tried?
    0 points
×
×
  • 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.