Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. roidel

    Tumba puerta

    Tumba puerta
  3. If not all skills of a hero have the same level, you have to take the lowest one otherwise the error message appears Could you possibly make it possible to gain even more power, so that, for example, you could defeat an opponent who has more than 5 million more power? Or is that the maximum?
  4. Today
  5. Can you help me to find this values PLS?
  6. Which version did you install
  7. Version v1.3728

    20 downloads

    BRUTAL STRIKE IS THE FAST-PACED MULTIPLAYER FIRST-PERSON SHOOTER EXPANDS UPON THE TEAM-BASED ACTION GAMEPLAY. FEATURES NEW MAPS, CHARACTERS, WEAPONS, AND GAME MODES, AND DELIVERS UPDATED VERSIONS OF THE CLASSIC CONTENT. DM ME TO GET OPEN SOURCE VERSION. GAME LINK: APKCOMBO SCRIPT MENU: - INFINITE MONEY - DUMB ENEMY - SUPER JUMP - SPEED HACK - INFINITE AMMO
  8. View File BRUTAL STRIKE SCRIPT MENU BRUTAL STRIKE IS THE FAST-PACED MULTIPLAYER FIRST-PERSON SHOOTER EXPANDS UPON THE TEAM-BASED ACTION GAMEPLAY. FEATURES NEW MAPS, CHARACTERS, WEAPONS, AND GAME MODES, AND DELIVERS UPDATED VERSIONS OF THE CLASSIC CONTENT. DM ME TO GET OPEN SOURCE VERSION. GAME LINK: APKCOMBO SCRIPT MENU: - INFINITE MONEY - DUMB ENEMY - SUPER JUMP - SPEED HACK - INFINITE AMMO Submitter Collen Submitted 09/01/2025 Category LUA scripts  
  9. Does Heroic Rexy is added to the game?
  10. I just installed it and problem is same
  11. Hi i just wanna ask is someone know how to get the no range attack the vacum mob .. for example you use aoe skills and it hit all the mob?
  12. yoo i joined your telegram but it seem empty? can you teach me how to get vacum mob the no range attack
  13. I have a script but it's not working can any one look at this file please for asphalt 9 unite _.菜单版.lua.txt
  14. iam trying to find a no range skills attack is like a vacum mob but i cannot seem to be found but i did found the attack anim attack no cooldown only for attack not for skills cd and invincible of any attack.. is there anyone know how to get the no range value?
  15. i am also using memu fine and fluid interfaace
  16. Yesterday
  17. View File Traffic Racer(3.7)_64bit This is an open source game script of traffic racer . Anyone can use it. There are: Cash, Life, Car, Speed etc Hacks Only for 64bit . Made for version 3.7 but can try on others. Submitter Zeocheats Submitted 08/31/2025 Category LUA scripts  
  18. Version 1.0.1

    143 downloads

    This is an open source game script of traffic racer . Anyone can use it. There are: Cash, Life, Car, Speed etc Hacks Only for 64bit . Made for version 3.7 but can try on others.
  19. OK, I got it working, it works well, you just have to find the right values. If you have different values for each skill, it's not the value that's displayed for the hero.
  20. I get this message
  21. What value do I have to enter?
  22. Just wait until next season is over. The packs are gone after it. Had the same problem. You can't play the gane until season is over, but you don't need to make a new account
  23. Try this script Start the battle in any game mode Stop the battle by pressing pause Open the script and activate the "Skill Hack" function After activating the function, you need to enter your hero's skill level Click "OK" and wait for the program to finish scanning You will receive a short pop-up message "Done!" Resume the game and check if your hero's skill is working or not Make sure to delete the results after the battle ends Just activate the "Delete the Results" function Tiles_Survive.lua
  24. -- 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
  25. This Is the only things can be hacked? Also can unexplain how to do pls?
  1. Load more activity
×
×
  • 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.