Jump to content

Cyber ml

Showing all content.

Content Types


This stream auto-updates

  1. Past hour
  2. Version v1.3728

    2 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
  3. 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  
  4. Does Heroic Rexy is added to the game?
  5. Today
  6. I just installed it and problem is same
  7. 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?
  8. yoo i joined your telegram but it seem empty? can you teach me how to get vacum mob the no range attack
  9. I have a script but it's not working can any one look at this file please for asphalt 9 unite _.菜单版.lua.txt
  10. 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?
  11. i am also using memu fine and fluid interfaace
  12. Yesterday
  13. 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  
  14. Version 1.0.1

    123 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.
  15. 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.
  16. I get this message
  17. What value do I have to enter?
  18. 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
  19. 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
  20. -- 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
  21. This Is the only things can be hacked? Also can unexplain how to do pls?
    Script really bad no one is work
  22. You can hack speed dmg or etc System.Int64 PhysicalDamage(); // 0x038c3efc System.Int64 MainWeaponDamage(); // 0x038c407c 107E07C System.Int64 ElementalDamage(); // 0x038c4158 System.Int64 DemolitionDamage(); // 0x038c42cc System.Int64 AuraDamage(); // 0x038c4440 System.Int64 Hp(); // 0x038c2cfc System.Int64 Defence(); // 0x038c45b4 System.Double DamageReduction(); // 0x038c4714 System.Double LifeDrainEffectiveness(); // 0x038c4848 System.Double LifeSteal(); // 0x038c491c System.Single AttackSpeed(); // 0x038c4a70 System.Single CriticalChance(); // 0x038c4bf0 System.Single CriticalDamage(); // 0x038c4cc8 System.Double Dodge(); // 0x038c4da4 System.Double ChanceToStun(); // 0x038c4e78 System.Single StunDuration(); // 0x038c4f4c System.Single Accuracy(); // 0x038c5024 That offset
  23. Nothing happens to me, or if I only take Maddie, Maddie works but the others don't.
  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.