Jump to content

Search the Community

Showing results for 'Chainer script'.

  • Search By Tags

    Type tags separated by commas.
    For example, the common name of the game: PUBG, Free Fire, Rules of Survival, Critical Ops, Mobile Legends: Bang Bang, etc.
  • Search By Author

Content Type


Forums

  • GameGuardian
    • Requests
    • Help
    • Guides
    • Cheats
    • Video Tutorials
    • Unintended Effects
  • General
    • General Discussion
    • Introduce yourself (:
    • Announcements
    • Website suggestions/Bugs
  • Downloads Support
    • Apps
    • LUA scripts
  • Online Multiplayer Mods
    • Altering Online Games with Gameguardian
    • Download Mods
  • Other Hacks
    • Tutorials
    • Non-GameGuardian
  • Archive
    • Archived topics

Categories

  • Official Downloads
  • Virtual spaces (no root)
  • LUA scripts
    • Forward Assault
    • Free Fire
    • PUBG
    • Rules of Survival
    • Templates
    • Tools
  • Test applications
  • Other

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Device


Discord ID

  1. Version 1.0.0

    175 downloads

    Hello everyone. This script is written hastily, but I still wish you a pleasant use. It is not encrypted, and you can always add its functions to your scripts. The script will be updated in the future.
  2. View File Script Subway Surfers Version 3.26.0 Script Subway Surfres Version : 3.26.0 Feature - Free In-App Purchase - Score Multiplier - Unlimited Everything - Good Mode - Air Jump - Jump Height - No Gravity - Instan Change Line - Hack Speed - Completed All Achievement Password = Beta Expired - 2024 - 04 - 04 Submitter FearlessLuaGG Submitted 03/18/2024 Category LUA scripts  
  3. Version 2.0.0

    466 downloads

    Script Subway Surfres Version : 3.26.0 Feature - Free In-App Purchase - Score Multiplier - Unlimited Everything - Good Mode - Air Jump - Jump Height - No Gravity - Instan Change Line - Hack Speed - Completed All Achievement Password = Beta Expired - 2024 - 04 - 04
  4. View File NBT creator Minecraft (I'm using a translator) This script will help to create NBT tags for Minecraft Bedrock, to clients that support NBT tags. In the script you can select the name of the NBT, the number of commands and the commands themselves. Also there is a choice of color for different texts, for example, to make red text in NBT, you need to add "(red)" near the text. Example: "/title @s title (red)Hello" I took the list of teams on the site, so some of them may not exist in the game Submitter ZeroSai Submitted 03/17/2024 Category LUA scripts  
  5. Soon, maybe a script for the game
  6. Version 1.0.0

    89 downloads

    (I'm using a translator) This script will help to create NBT tags for Minecraft Bedrock, to clients that support NBT tags. In the script you can select the name of the NBT, the number of commands and the commands themselves. Also there is a choice of color for different texts, for example, to make red text in NBT, you need to add "(red)" near the text. Example: "/title @s title (red)Hello" I took the list of teams on the site, so some of them may not exist in the game
  7. I'm sorry, I don't plan to update the script anytime soon - but who knows, maybe if I feel like it sometime I will. I'm glad that you like my scripts, and thank you for your kind words; sadly, I haven't been making them much lately due to being busy with school. I'm not exactly sure which scripts work, but feel free to download all of mine and see what does. Good luck!
  8. View File Cat simulator 3D Godmode Max Speed max Power Grants you super speed and super Strength Submitter FlandreScarlet Submitted 03/17/2024 Category LUA scripts  
  9. View File convert an offset to a function for patching "hookOne" offsets A simple, somewhat useless script to convert an offset to a function for patching "hookOne" offsets: function hookOne(library, flag, offset, value) list = gg.getRangesList(library) for i in pairs(list) do if list[i].state == "Xa" then start = list[i].start break end end local t = {} t[1] = {} t[1].address = start + offset t[1].value = value t[1].flags = flag gg.setValues(t) end ts.lua Submitter ZeroSai Submitted 03/17/2024 Category Templates  
  10. Version 1.0.0

    105 downloads

    A simple, somewhat useless script to convert an offset to a function for patching "hookOne" offsets: function hookOne(library, flag, offset, value) list = gg.getRangesList(library) for i in pairs(list) do if list[i].state == "Xa" then start = list[i].start break end end local t = {} t[1] = {} t[1].address = start + offset t[1].value = value t[1].flags = flag gg.setValues(t) end ts.lua
  11. View File Box Head: Zombies Must Die!2.4.8[X64] ::FREE-FUNCTION:: -HIGHT ATK -HIGHT CRIT -SPEED ATK -ENEMY SPAW 50 -DROP URANIUM RATE -------------------------- ::VIP-FUNCTION:: -HIGHT ATK -HIGHT CRIT -SPEED ATK -ENEMY SPAW 50 -DROP URANIUM RATE -SKIN UNLOCK [VIP] -MATERIAL HACK [VIP] -CHEST&BONUS HACK [VIP] -REWARD HACK [VIP] -QUEST HACK [VIP] -WHEEL HACK [VIP] -BATTLEPASS HACK [VIP] and other hack functions in the next update. ▰▱▰▱▰▱▰▱▰▱▰▱▰▱ If you like my work, I can donate to support it here. PAYPAL: https://paypal.me/nopp38 ▰▱▰▱▰▱▰▱▰▱▰▱▰▱ ::KEEP UP WITH NEW WORKS IN THE TELEGRAM GROUP:: SC-VöLKER https://t.me/+KZy3fTmpNf9mZDg1 Submitter Moonslasher Submitted 03/17/2024 Category LUA scripts  
  12. For hooking void you need to call the void method by modifying another method to call it. This might be confusing for new gg users so i created an script template which allows you to hook void in gg with parameters (basic data types). With inbuild switch off code and ability to choose how many times you want to call the void method. These are the steps to use the template : 1. Download this code which i like to call method patching library , then paste it at the very top of your script 2. Now copy code for voidHook and then paste this anywhere, you can paste this in your script menu or how you would like to make your cheat active 3. Find the offset from dump.cs file or anywhere, and use those offsets to apply patches Below you can see an example of usage of this code : -- RVA: 0x1000 Offset: 0x1000 -- public static void Update() { } -- RVA: 0x2000 Offset: 0x2000 -- public void AddHealth(float health) { } HackersHouse.voidHook({ { ['libName'] = "libil2cpp", ['targetOffset'] = 0x1000, ['destinationOffset'] = 0x2000, ['parameters'] ={ { "float", 999999} }, ['repeat'] = 1, ['libIndex'] = 'auto' } }) HackersHouse.voidHookOff({ { ['libName'] = "libil2cpp", ['targetOffset'] = 0x1000, ['destinationOffset'] = 0x2000, } }) This probably has some bugs you can either report in the comments or you can come to telegram.
  13. Harekat2_0_4_4.lua Will let you buy stuff even if you don't have the funds. Script is for 64bit devices.
  14. nok1a

    Coromon

    https://studio.zerobrane.com/doc-installation Pointer search and offset calculation. Check the script(if it still works). It's open source.
  15. View File Cat simulator 2015 Freeze players Use this if your in a tight spot Submitter FlandreScarlet Submitted 03/16/2024 Category LUA scripts  
  16. function helloWorld() print("Hello, World!") end helloWorld() Hello World! Lua script jokes aside, happy to be here. Been lurking for a few weeks - decided to join so I could interact more.
  17. Im on epic 2 difficulty thanks to your script. A request, it will be nice if you could add more hit and crit damage since bosses in this level are very strong. Great job otherwise.
  18. Script required/requested for camera adjustment and vision adjustment that game cant detect
  19. View File Eternium : Mage And Minions hack coin and gems, v1.32.13 Eternium : Mage And Minions hack coin and gem v1.32.13 only arm64-v8a Submitter huang-sh Submitted 03/14/2024 Category LUA scripts  
  20. i don't have this script @NoFear @nok1a Please check this screen shoot
  21. Successfully changed gold and earned gold in manual mode by selecting more memory range.THX for this awesome script.
  22. Thank you very much. Problem solved. Game=Farmville 2 Contry Escape Script Function=Sell Goods for 0 coin Please note: When game version is updated, you must find and change method offset address in dump.cs Script Code: GVersion = '24.9.100' if GVersion~=v.versionName then print("This Script is for Game Version:\n"..GVersion.."\nYour Game Version is:\n"..v.versionName) gg.setVisible(true) os.exit() return end if gg.isVisible(true) then gg.setVisible(false) end v = gg.getTargetInfo() if v.x64 then lib_address = gg.getRangesList('libil2cpp.so')[1].start method_address = lib_address + 0xF91EE4 base_address = method_address target_address = base_address + tonumber(40) gg.setValues({{address = target_address, flags = 4, value = "~A8 MOV W23, WZR"}}) else lib_address = gg.getRangesList('libil2cpp.so')[1].start method_address = lib_address + 0x938724 base_address = method_address target_address = base_address + tonumber(20) gg.setValues({{address = target_address, flags = 4, value = "~A MOV R9, #0"}}) end
  23. Offset: 0xF91EE4 this is the method offset address in libil2cpp.so why is this address different in gameguardian (0DF91EE4)? my working script: base_address = '0x0DF91EE4' target_address = base_address + tonumber(40) gg.setValues({{address = target_address, flags = 4, value = "~A8 MOV W23, #0x1"}}) when i change base_address to 0xF91EE4, the script did not work. when i change value = "~A8 MOV W23, #0x1" to "~A8 MOV W23, #0x0" i got en error (its's not important. i have no problem in game when i make #0x1)
×
×
  • 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.