Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation since 09/10/2025 in Posts

  1. Heroic level up without shards VID_20250925203244.mp4 Dino must at Level 40 = 3;10;Dino HP::17
    3 points
  2. @Kimastar Looks like that's just a visual change. You can't actually spend the currency.
    2 points
  3. If you edit the line 2 lines above then it adds much smaller amounts. Might be a way to go undetected. The 993 was my current money.
    2 points
  4. View File Armed Heist Game Version: 3.2.10 SCRIPT MENU: • Godlike Heal • Regen Boost • High Damage • No Recoil Submitter xZeta Submitted 09/27/2025 Category LUA scripts  
    2 points
  5. Two updates, it was unexpected I have updated the script, you can download it on the first page
    2 points
  6. -- 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
  7. @DEi2136 Brother if game is detecting the game guardian try this method Like Share And Subscribe
    1 point
  8. View File Snip.io Script • Buy Blaze Free/Get Coins • No Sniper Cooldown • Speed Hack • Glow Chams Submitter luckyday-999 Submitted 10/02/2025 Category LUA scripts  
    1 point
  9. 1 point
  10. We need more information...and u won't be able to find everything you see in the game. It's possible the game has obfuscated/encrypted the values. Tons of games are now also server-sided, wich means almost all the values u see, can't be changed. s*** doesn't always work, that's just how it is
    1 point
  11. No. Couldn't buy anything from the shop with it
    1 point
  12. LOL...u cant spend this value?
    1 point
  13. I haven't actually played on. Thought I'd leave you to test it
    1 point
  14. You need to experiment with the value to get a number smaller than mine I think it is possible, but I do not know how DonFacundo knows more than I do Maybe he'll share a secret
    1 point
  15. What do you mean by using the pattern method? gg.searchNumber('119;1;16777216::50', gg.TYPE_DWORD) gg.refineNumber('119', gg.TYPE_DWORD) local searchResults = gg.getResults(100) if #searchResults == 0 then os.exit() end local checkValue = 16777216 local savedItems = {} local offsetChecks = {} for i, v in ipairs(searchResults) do offsetChecks[i] = { address = v.address + 0xC, flags = gg.TYPE_DWORD } end local offsetValues = gg.getValues(offsetChecks) for i, v in ipairs(offsetValues) do if v.value == checkValue then table.insert(savedItems, { address = searchResults[i].address, flags = gg.TYPE_DWORD, value = 25, freeze = true, name = 'SKILL' }) end end if #savedItems > 0 then gg.addListItems(savedItems) end
    1 point
  16. Hello, what im trying is to get all results and put them in table array, lets say all result are 100, then i need to check 1 by 1 with offset, if the value after calculate offset is the same as i want, then only add that into saved list, i also see some previous example in this link Read value in offset (#an95zfus) and here what my code looks like : gg.searchNumber('119;1;16777216::50', 4) gg.refineNumber('119', 4) local searchResults = gg.getResults(100) local q = {} local checkValue = '16777216' if #searchResults == 0 then os.exit end for i, v in ipairs(searchResults) do q[i] = {address = v.address + 0xC, flags = 4} end q = gg.getValues(q) for i, v in ipairs(q) do if v.value == checkValue then gg.addListItems({{address = q[1].address - 0xC, flags = 4, value = 25, freeze = true, name = 'SKILL'}}) end end
    1 point
  17. View File BLOCKFIELD SCRIPT MENU DIVE INTO THE EXCITING WORLD OF BLOCKFIELD, A CUTTING-EDGE PIXEL SHOOTER THAT TAKES THE THRILL OF FIRST-PERSON SHOOTER GAMES TO A WHOLE NEW LEVEL! WHETHER YOU’RE GEARING UP FOR A BRUTAL GUN SIMULATOR OR EXPLORING EPIC MISSIONS AND LOCATIONS, THIS BLOCK SHOOTER DELIVERS NONSTOP ACTION AND EXCITEMENT. OUR ONLINE MULTIPLAYER FPS COMBINES THE STRATEGIC INTENSITY OF TEAM GAMES WITH THE CREATIVITY OF PIXEL GAMES AND THE CHAOS OF KILLING GAMES. DM ME TO GET OPEN SOURCE VERSION. GAME LINK: APKCOMBO SCRIPT MENU: - UNLOCK SKIN - FREE SHOPING - AIMLOCK - INFINITE AMMO - NO FIRE RATE - ONE HITKILL - NO RECOIL Submitter Collen Submitted 08/08/2025 Category LUA scripts  
    1 point
  18. Yes but problem is in website due to automatically embedded option because some time this is not working website need to add some manual things
    1 point
  19. My device is rooted . And I installed game guardian successfully . It's show collecting game data but when I search codes in game nothing get GG. I am sure codes are there but GG not finding.. why ??
    1 point
  20. yeah.. I can add more options.. will be a few days before I can update the script though.
    1 point
  21. Edit your eggs laid, narrow it down to 2 results and change them to 36.55Q You can also search shifts;resets:: then go to the address and the 5 addresses below are the TE you have for each egg
    1 point
  22. Word search (ctrl f) in this document to find your dino
    1 point
  23. View File Dead Ahead: Zombie Warfare Version: 4.2.3 Combat Menu • Zero Energy Cost • Instant Spawn • Global AoE Radius • Global Shield Boost • Global Critical Boost Player Menu • HighDamage • God Mode • Mission XP Boost • Item Bonus Extreme • Ad Coin Boost Bus Menu • Bus Invincibility • Bus Damage Boost • Minigun Damage Boost • Unlock Bus Upgrade Submitter xZeta Submitted 09/18/2025 Category LUA scripts  
    1 point
  24. View File Minecraft Script ❥God Mode Script Password 999 ❥Creative Fly ❥Fast Sprint ❥Speed Hack ❥Jump Blocks ❥Item Hack ❥Water Speed ❥Fly Speed ❥Head Rotate ❥Fov Slider ❥1 Hit Ender Dragon ❥1 Hit Wither ❥1 Hit Warden ❥1 Hit Iron Golem ❥Long Hit Reach Warden/Wither Submitter luckyday-999 Submitted 09/17/2025 Category LUA scripts  
    1 point
  25. View File Power Zone Script ❥Epic Chest Free/1000000 Coins ❥Free Skins/Emotes/Lolli Hammer/Weapon Skins ❥Jump Height Slider ❥Low Gravity ❥Crouch Speed Slider ❥Pulse Constant High Damage ❥Nova Constant High Damage ❥Fov Slider ❥Camera Distance Slider ❥Teleport All Players Center Map ❥Teleport All Players Out Of Bounds ❥Glow Chams Submitter luckyday-999 Submitted 09/16/2025 Category LUA scripts  
    1 point
  26. View File Snake Battle Script Includes: Free Skins , Change Snake Default Length/Kill Score Submitter luckyday-999 Submitted 09/15/2025 Category LUA scripts  
    1 point
  27. Here is a link: https://docs.google.com/document/d/e/2PACX-1vSxZlSkjJkQ4-1Q2hwQ_Tt7F1Bfn_3C8wUKCC5VXeaQ873JSVWT8K_vh1zMoXCeKLTJDT7L0iusHTxT/pub
    1 point
  28. https://docs.google.com/document/d/e/2PACX-1vSxZlSkjJkQ4-1Q2hwQ_Tt7F1Bfn_3C8wUKCC5VXeaQ873JSVWT8K_vh1zMoXCeKLTJDT7L0iusHTxT/pub
    1 point
  29. Do u know how to unlock (not get) dino on market?
    1 point
  30. View File Prison Escape Script Includes: God Mode/Stat Editor , Gun Price Editor , Fly Hack On/Off , Speed Hack On/Off Game Link - https://apkcombo.com/prison-escape/com.wordmobile.prisonstorm/ note:fly hack is a bit buggy will fix in the next script update also enable the stats Hack in game after looking at the stats Submitter luckyday-999 Submitted 09/12/2025 Category LUA scripts  
    1 point
  31. GameLink :- ClickHere Features NoDamage UnlimitedAmmo NoReload + Many More Mod :- ClickHere Discord :- ClickHere
    1 point
  32. View File Wild Hunter & Hunting Safari Script Includes: Gun Price Editor , Weapon Damage Editor | Currency Editor , Weapon Damage Editor , Corona GreyWolf Shotgun Costs 1 Submitter luckyday-999 Submitted 09/08/2025 Category LUA scripts  
    1 point
  33. function wol() -- do not have space for this u take error -- there wrong gg.searchNumber(' 3D;11D;2145D ', gg.TYPE_DWORD,false, gg.SIGN_EQUAL, 0, -1) -- this is true gg.searchNumber('3D;11D;2145D', gg.TYPE_DWORD,false, gg.SIGN_EQUAL, 0, -1) gg.refineNumber('2145', gg. TYPE_DWORD) local start = gg.getResults(1) local target = start[1].address + 0x520 -- (0×520 this write wrong u using a " * " not right this) gg.setValues({ address = target , flags = gg.TYPE_DWORD, value = 10}) gg.toast(' MISSION HACK ') gg.clearResults() gg.alert(" Play Denomination mission in easy level with Ace deployed") home = 1 end Try it out and if you get an error I'll help you. Also specify the memory range, this way your search will be more specific and faster.
    1 point
  34. Game So good And funny i hack all currency
    1 point
  35. Is there a way to unlock dinos from market? If yes... How? Thank you
    1 point
  36. Hello. Today i heard about Game Guardian and decided to try it. I installed VirtualXposed to use it since my phone cannot be rooted at the moment but I noticed an issue. Everytime i start up GameGuardian I get an error that says "Daemon is not running. This function is not available if daemon is not running. Wait until daemon starts up. (Did you forget to grant root access? Or is root not installed?)." Like I said before, I'm using VirtualXposed
    1 point
  37. Kingdom Adventurers V2.42 Date: Aug 25th 2023 Tested on Nox Emulator using Adguard to block Ads Disclaimer: Use Cheats at your own risk, banning is likely It's raining Items Kairo Cookies, 400+ to all stats in Training and +12 for your Eggs Kingdom Adventures work in 2 ways, you need to activate an Item for it to appear in your List, from there you can change the quantity The Search Syntax is similar to Group Items except the Item Quantities are stored elsewhere. First we need to ACTIVATE the Item Search Syntax 3B9AC9FFh~C4653600h;0;0~1;0~65536;ItemCode;ItemFlag;3B9AC9FFh~C4653600h::25 3B9AC9FFh~C4653600h - Searches between -1,000,000,000 and -999,999,999, we will take a note of the Value from the Search 0 - Flag 0~1 - Flag 0 = Inactive 1 = Activated 0~65536 - Flag 0 = Inactive 65536 = Activated? ItemCode - Flag that points to the Item ItemFlag - Flag that puts items in catergories 3B9AC9FFh~C4653600h - Flag Now to put in the Kairo Cookie Values Kairo Cookies - ItemCode 171 Kairo Cookies - ItemFlag 148074 3B9AC9FFh~C4653600h;0;0~1;0~65536;171;148074;3B9AC9FFh~C4653600h::25 For my Search, the first flag is -1,812,715,520, I can use this value instead of the first 3B9AC9FFh~C4653600h for future Item Searches as long as I don't quit the game As my search is showing 0 I need to change the Activation Code to 1 and the value below it to 65536 Now it's time to change the Quantity Search Syntax ItemCode;-1;ItemCode;0~~0::13 ItemCode - Flag that points to the Item -1 - Flag ItemCode - Flag that points to the Item 0~~0 - Quantity Now to put in the Kairo Cookie Values Kairo Cookies - ItemCode 171 -1 - -1 Kairo Cookies - ItemCode 171 0 - Since we just activated the code it will be 0, you can change this to the quantity you have if the item was activated 171;-1;171;0::13 I can change the Quantity of Item, some items will reset after you quit the game, like Kairo Cookies, it's up to you whether you put in a low value then freeze it This search is pretty straight forward Activate 3B9AC9FFh~C4653600h;0;0~1;0~65536;ItemCode;ItemFlag;3B9AC9FFh~C4653600h::25 Change Quantity ItemCode;-1;ItemCode;Quantity::13 Item ItemCode;ItemFlag Accessory Sample 168;262762 Apple 110;197226 Armor Sample 166;262762 Banana 111;197226 Beef Stew 155;149226 Berry 108;197226 Bread 140;149226 Bronze 80;270954 Cabbage 103;197226 Cake 147;149226 Carrot 101;197226 Cheese 139;148202 Clam 119;197226 Copper Coin 12;96 Crab 125;197226 Creamy Soup 153;149226 Curry 159;149226 Cut of Meat 129;131690 Donut 144;149226 Egg 138;148202 Enchanted Root 87;328426 Energy Drink 94;328426 Farm Produce 71;270954 Fizzy Juice 137;149226 Flan 145;149226 Fragrant Flower 88;328426 French Toast 141;149226 Fresh Beans 98;197226 Fried Noodles 161;149226 Fried Potatoes 149;149226 Fried Rice 162;149226 Fruit Basket 117;149226 Garlic 106;197226 Gold Coin 14;96 Gold Nugget 81;270954 Grape Juice 136;149226 Grapes 114;197226 Hamburger 143;149226 Healthy Mushroom 97;197226 Hearty Soup 154;149226 Helmet Sample 167;262762 High Grade Brick 78;270954 Icecream 146;149226 Iron Ore 79;270954 Kairo Cake 148;149226 Kairo Cookie 171;148074 Large Nail 76;270954 Leaf of Life 86;328426 Mackerel 120;197226 Mage's Bottle 91;328426 Magic Bottle 90;328426 Marbled Beef 131;149226 Meat on the Bone 128;131690 Medical Herb 85;270954 Melon 115;197226 Milk 135;148202 Mixed Fruit Juice 134;149226 National Flag 73;270954 Nuts 72;270954 Octopus 127;197226 Onion 102;197226 Orange 109;197226 Paella 156;149226 Pasta 163;149226 Pear 112;197226 Pineapple 116;197226 Pizza 157;149226 Potato 99;197226 Pretty Cloth 84;270954 Radish 100;197226 Rice Omelete 160;149226 Rope 77;270954 Sage's Potion 93;328426 Sage's Tome 169;262762 Salad 107;149226 Sashimi Platter 151;149226 Scroll of Knowledge 170;262762 Sea Bream 122;197226 Sea Snail 118;197226 Sea Urchin 123;197226 Shield Sample 165;262762 Shrimp 124;197226 Silk Cloth 82;270954 Silver Coin 13;96 Sliced Bread 142;149226 Sorceror's Bottle 92;328426 Spit Roast 130;149226 Spring Water 74;328298 Squid 126;197226 Steak 158;149226 Strawberry 113;197226 Strong Cloth 83;270954 Sturdy Board 75;270954 Sushi 150;149226 Sweet Medicine 95;328426 Sweet Mushroom 96;197226 Sweetcorn 105;197226 Tomato 104;197226 Top Grade Beef 132;149226 Tuna 121;197226 Vegetable Soup 152;149226 Veggie Juice 133;149226 Vitality Bottle 89;328426 Wairo Cookie 172;148074 Weapon Sample 164;262762
    1 point
  38. I get this every time I try to add GG to any virtual space. I am on DS Lite in attached photos. Can anyone help with this?
    1 point
  39. Then don't touch the points, just ignore them...then no issues with negative. Let me know if this works for you: MENACING: -472273170 specialDefense: -1001418754 defense: -1263051503 attack: 1591370207 hp: 5734 specialAttack: 1224542453 sp: 5741 speed: 280450252 stringformatting.lua You can also just use the attack value. Then when fighting a pokemon you get more XP resulting in max leveling your pokemon.
    1 point
  40. The second or 3rd one? I have tried lots of them! Basically parallel space isn’t working for me?! I just need to modify my stars in kim kardashian..if someone could download KKH from the App Store then do it with parallel space and it works?! I need someone to tell me how. I have done ever apk provided nothing! It takes me to download parallel space 64 on google play?? I even downloaded the apk file to xposed..and while I’m getting the icon to float I’m not able to load my game what so ever! I need major help and I have posted everything about it on a thread. I’m sure it’ll just get lost and I won’t be able to learn how to do this when it shouldn’t be that hard. I must be doing something wrong or my android 9 isn’t compatible with gg nor any virtual sites when I’m seeing others do what I need! But no one wants to help me..so if someone that can use google play inside their parallel space, if they can install KKH and try to modify it, then someone needs to walk through the steps with me because I’m seriously doing everything step by step by video and nothing is working..the only thing that works is using xposed to have the gg icon float but my game doesn’t appear inside the gg floating Icon cuz I have to modify the game inside xposed.. so idk what to do..I need serious help I’m at my witts end of 24 hours trying to figure this out.
    1 point
  41. Name of Requested File: Clash of Clan Link To Download: https://play.google.com/store/apps/details?id=com.supercell.clashofclans Comments : Please mod this game with créé shopping because the number of elixir and coins is visible .
    1 point
  42. 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.