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. Hello there. After the recent updates Coromon's memory range was changed to [Other], but aside from that you can still find money etc. easily. What I need help with is changing items. Item quantity is an unencrypted value that's just a simple search away, but I can't find the ID that defines the item itself. For the steam version there is/was a working script to insert items with cheat engine. Haven't tried it myself, but it should mean that every item does have an identifier. Why I'm trying to find a way: Some items have been locked behind a paywall in the mobile release of the game and lucky patcher doesn't work. I hope someone can solve this. Thank you for reading this and best of luck to anyone who tries to solve this.
  2. View File [ Box Head: Zombies Must Die!] X64 Box Head: Zombies Must Die! Features : GOD MODE HIGH ATTACK VIDEO LINK Submitter KUMADEIT Submitted 01/15/2024 Category LUA scripts  
  3. View File [ TRIBE DASH :TIME MANAGEMENT ] x64 TRIBE DASH :TIME MANAGEMENT Features : Coin Hack Submitter Koolie Submitted 01/14/2024 Category LUA scripts  
  4. View File [ Jigsaw Puzzles ] X64 JIGSAW PUZZLE GAME LINK https://play.google.com/store/apps/details?id=com.bigcake.jigsaw.puzzles FEATURES ; HINTS HACK COINS HACK REMOVE ADS Submitter Koolie Submitted 01/14/2024 Category LUA scripts  
  5. Thx for replying I think they are addresses for the characters within the game, specifically, each title indicates the level of the particular character.. They are all titles from someone who was scripts maker for the game that he shared before he retired from it.. my problem is idk what to do with them like how to search using them... non of the su answered yet
  6. View File Battle Run & Fun 2 billion coin/gem/event Start fresh game Load script when Game loading bar Reaches 3/4 Look for -1999999999 In token shop If u can load before Game loading bar appears Will change coins/gems Too early for event $$$ Submitter Jamieq Submitted 01/13/2024 Category LUA scripts  
  7. Possible version of your script. Search is done once when script starts. Then it goes into invisible mode and waits for GG icon to be pressed. Until you select “Exit”, all found data in tables will be saved. gg.isVisible(false) gg.clearResults() gg.clearList() -------------Flying cost-------------------- gg.searchNumber( "-8.0004e10",gg.TYPE_FLOAT) -- Why do a refining if you don’t have a group search? gg.refineNumber(' -8.0004e10',gg.TYPE_FLOAT) Fly = gg.getResults(gg.getResultsCount()) gg.clearResults() -------------Energy cost-------------------- gg.searchNumber('55;53', gg.TYPE_FLOAT) -- Refining is needed here. gg.refineNumber('53', gg.TYPE_FLOAT) Energy = gg.getResults(gg.getResultsCount()) gg.clearResults() -------------Water cost-------------------- gg.searchNumber("7018090782024269824",gg.TTYPE_QWORD) -- Why do a refining if you don’t have a group search? gg.refineNumber("7018090782024269824",gg.TTYPE_QWORD) Water = gg.getResults(gg.getResultsCount()) gg.clearResults() ::retr1:: choices = gg.choice({'Engery cost', 'Water cost', 'Exit'}, 0, '\tSelect item cost:\n⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯') if choices == 1 then for i = 1, #Water do gg.setValues({{ address = Water[i].address, flags = gg.TTYPE_QWORD, value = 7018090361117474816 }}) end for i = 1, #Energy do gg.setValues({{ address = Energy[i].address, flags = gg.TYPE_FLOAT, value = 25 }}) end for i = 1, #Fly do gg.setValues({{ address = Fly[i].address, flags = gg.TYPE_FLOAT, value = 0 }}) end gg.toast('Engery cost') end if choices == 2 then for i = 1, #Fly do gg.setValues({{ address = Fly[i].address, flags = gg.TYPE_FLOAT, value = -8.0004e10 }}) end for i = 1, #Energy do gg.setValues({{ address = Energy[i].address, flags = gg.TYPE_FLOAT, value = 53 }}) end for i = 1, #Water do gg.setValues({{ address = Water[i].address, flags = gg.TTYPE_QWORD, value = 7018090782024269824 }}) end gg.toast('Water cost') end if choices == nil or choices == 3 then gg.setVisible(true) os.exit() end while not gg.isVisible() do gg.sleep(100) end gg.setVisible(false) goto retr1 os.exit()
  8. game link: https://play.google.com/store/apps/details?id=com.nebulajoy.act.dmcpoc Is there possible for script like "one shot enemy"?
  9. @_yourram:is it possible to hide our search values in the script? Answer: normally its impossible (standard).
  10. I asked this question casually, I just wanna know whether this is possible or not and if it is possible then "how"? If you still don't understand what I mean, here's the video link↓ https://drive.google.com/file/d/1-kb0YmzsvWlGW2tTVspOPLhRH-5vPNIz/view?usp=drivesdk function Ram() choices = gg.choice({"Prepare cost","Engery cost","Water cost","Script end"}) prepares(choices) end function prepares(choices) if choices == 1 then -------------Flying cost-------------------- gg.searchNumber( "-8.0004e10",16) gg.refineNumber(' -8.0004e10',16) Fly = gg.getResults(gg.getResultsCount()) gg.addListItems(Fly) gg.clearResults() -------------Energy cost-------------------- gg.searchNumber('55;53', 16) gg.refineNumber('53', 16) Energy = gg.getResults(gg.getResultsCount()) gg.clearResults() -------------Water cost-------------------- gg.clearResults() gg.searchNumber("7018090782024269824", 32) gg.refineNumber("7018090782024269824", 32) Water = gg.getResults(gg.getResultsCount()) gg.clearResults() elseif choices == 2 then gg.loadResults(Water) gg.getResults(1000) gg.editAll("7018090361117474816", 32) gg.loadResults(Energy) gg.getResults(1000) gg.editAll('25', 16) gg.clearResults() gg.loadResults(Fly) gg.editAll('0', 16) gg.clearResults() elseif choices == 3 then gg.loadResults(Fly) gg.editAll(' -8.0004e10', 16) gg.clearResults() gg.loadResults(Energy) gg.getResults(1000) gg.editAll('53', 16) gg.clearResults() gg.loadResults(Water) gg.getResults(1000) gg.editAll("7018090782024269824", 32) gg.clearResults() elseif choices == 4 then os.exit() end end while gg.isVisible(true) do gg.setVisible(false) Ram() end ---
  11. Version 1.9.5

    58 downloads

    Start fresh game Load script when Game loading bar Reaches 3/4 Look for -1999999999 In token shop If u can load before Game loading bar appears Will change coins/gems Too early for event $$$
  12. Hi Guardians! Dark lord here aka 'OREW" I'm confused with this values, it supposed to be a character address something like this in dbdm My main question is what are they!? Functions, pointers, addresses etc.. And how to search with them? 1st 268.435.471D; 1D:: 9 (GhostFace) 268.435.456D; 1D :9 (Trapper) 268.435.467D; 1D : 9 (Clown) 268.435.458D; 1D::9 (Hilybilly) 268.435.461D; 1D ::9 (Shape) 268.435.469D; 1D ::9 (Legion) 268.435.457D; 1D ::9 (Wraith) 268.435.478D; 1D ::9 (Trickster) 268.435.459D; 1D ::9 (Nurse) 268.435.464D; 1D : 9 (LeatherFace) 268.435.480D; 1D : 9 (Cenobit) 268.435.460D; 1D ::9 (Hag) 268.435.468D; 1D :9 (Spirit) 268.435.473D; 1D::9 (Samurai) 268.435.470D; 1D::9 killers ---------------- Survival 14, 7U, T..1O(DITOVEIDauk) 5D; 8D; 1D :13 (Feng Min) 26D; 27D; 1D :13 (Mikaela Reid) 4D; 16D; 1D:13 (Ashley) 10D; 12D; 1D :13 (Detective Tapp) 17D; 19D; 1D :13 (Yui Kimura) 3D; 4D; 1D ::13 (Nea Karlsson) 2D; 3D; 1D:1 (Jake Park) 19D; 21D; 1D :13 (Cheryl Mason) 24D; 5D; 1D :13 (Laurie Strode) 12D; 13D; 1D ::13 (Adam Francis) 1D; 2D; 1D ::13 (Claudette Morel) 13D; 14D; 1D :13 (Jeff Johansen) 14D; 15D; 1D :13 (Jane Romero) 21D; 23D; 1D ::13 (Elodie Rakato) 22D; 24D; 1D :13 (Yunjin Li) 17D; 18D; 1D :13 (Steve Harrington) 16D; 17D; 1D :13 (Nancy Wheler) 22D; 9D; 11D; 1D :17 (Quentin Smith) 1D; 7D; 9D; 1D::17 (David King) 7n gn 1n 13 (David Kina) 2st These codes are updated for all dead and survivors use os codigos ai entao se o script nao funciona JEFF JOHANSEN : 20D;14D;1D:17 ADAM FRANCIS: 19D;13D;1D:17 KATE DENSON: 25D;11D;10D;1D:29 DETECTIVE TAPP: 9D;3D;10D;12D;1D:29 DAVID KING: 22D;7D;9D;1D:29 FENG MIN: 3D;13D;5D;8D;1D:25 YUI KIMURA: 3D;17D;19D;1D:25 JANE ROMERO: 25D;14D;15D;1D:17 WILLIAM BILL: 19D;13D;7D;1D:29 CLAUDETTE: 63D;3D;1D;2D;1D:61 ELODIE RAKOTO: 8D;3D;21D;23D;1D:29 CHERYL MASON: 35D;19D;21D;1D:17 QUENTIN SMITH: 20D;22D;18D;11D;1D:33 YUN JINLEE: 19D;43D;24D;1D:29 MIKAELA REID: 6D;45D;27D;1D:65 JAKE PARK: 266D;273D;3D;2D;1D:65 ACE VISCONTI: 45D;48D;4D;6D;1D:65 NEA KARLSSON: 10D;465D;3D;4D;1D:61 LAURIE STRODE: 24D;25D;8D;5D;1D:33 ASHLEY: 3D;95D;4D;16D;1D:25 survivor TRAPPER;63D;268,435,456D;1D:61 HILLBILLY:268,435,458D;1D;3D;4D:29 PLAGUE:56D;268,435,470D;1D:45 LEGION:14D;268,435,469D;1D:13 SPIRIT:800D;268,435,468D;1D:21 CLOWN:3D;268,435,467D;1D:25 THE PIG:3D;268,435,466D;1D:25 HUNTRESS:3D;268,435,463D;1D:25 DOCTOR:8D;268,435,462D;1D:13 SHAPE:5D;268,435,461D;1D:13 ****:16D;268,435,464D;1D:13 THE HAT:3D;268,435,460D;1D:13 NURSE:3D;268,435,459D;1D:25 GHOST FACE:3D;268,435,471D;1D:25 TRICKSTER:22D;268,435,478D;1D:13 EXECUTIONER:11D;268,435,475D;1D:13 NIGHTMARE:23D;268,435,465D;1D:13 TWINS:19D;268,435,477D;1D:13 THE ONI:18D;268,435,473D;1D:13 CENOBITE:24D;268,435,480D;1D:13 WRAITH:19D;268,435,457D;1D:29 killer Thx in advance
  13. Worked well until the 1.72.0.16851 update. Awaiting an updated script
  14. In a previous post, there was a script for this game, but it was deleted. Please help in hacking the level
  15. I want to stop this function from giving any output,just to make it useless in short. Class name: Namespace: CodeStage.AntiCheat.Detectors [AddComponentMenu("")] public abstract class ActDetectorBase : MonoBehaviour / Method name: // RVA: 0x134FD84 Offset: 0x134FD84 VA: 0x134FD84 Slot: 8 internal virtual void OnCheatingDetected() { }. How can i stop this thing.
  16. any special requirement to run the script? it doesnt work for me too.
  17. 【 @kiynox 】 --- thanks! well this script was given to me by my friend and I was trying to figure out what he was trying to do in this script lol ---
  18. View File [ ADVENTURE COMMUNIST ] X64 [ ADVENTURE COMMUNIST OP SCRIPT ] Features : EVERYTHING IS INSTANT SHOP ITEMS ARE FREE HOW TO USE ? CLICK THE VIDEO LINK https://www.facebook.com/100086163091766/videos/889365516523796/ NEED HELP AND HAVE A VIDEO ? JOIN THE TELEGRAM https://t.me/KUSCRIPTS Submitter Koolie Submitted 01/12/2024 Category LUA scripts  
  19. Version 6.32.0

    231 downloads

    [ ADVENTURE COMMUNIST OP SCRIPT ] Features : EVERYTHING IS INSTANT SHOP ITEMS ARE FREE HOW TO USE ? CLICK THE VIDEO LINK https://www.facebook.com/100086163091766/videos/889365516523796/ NEED HELP AND HAVE A VIDEO ? JOIN THE TELEGRAM https://t.me/KUSCRIPTS
  20. View File Arrow Quest Submitter Artem_Nikiforov Submitted 01/12/2024 Category LUA scripts  
  21. Hello! Thanks for your work. How does your script work exactly? I have activated the hack with the checkbox, but nothing happens... thank you!!
  22. View File [ ZOMBIE SLASHER ] X64 ZOMBIE SLASHER HACK Features : GOD MODE HACK Submitter Koolie Submitted 01/12/2024 Category LUA scripts  
  23. View File [ ALIEN INVASION : RPG IDLE SPACE ] X64 ALIEN INVASION : RPG IDLE SPACE X64 ONLY Features : MEAT STORAGE HACK Submitter KUMADEIT Submitted 01/12/2024 Category LUA scripts  
  24. View File [ SPACE HEROES ; GALACTIC RPG] X64 [ SPACE HEROES ; GALACTIC RPG] Features : ALL CURRENCY HACK Submitter Koolie Submitted 01/12/2024 Category LUA scripts  
×
×
  • 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.