-
Posts
522 -
Joined
-
Last visited
-
Days Won
16
MAARS last won the day on January 21
MAARS had the most liked content!
Additional Information
-
Android
7.x
13.x -
Device
M2012K11AG; Emulator
-
Service provider
Other
Recent Profile Visitors
16,995 profile views
MAARS's Achievements
-
That unnecessary, you can delete it right away on the execution, cause when you execution a script, it will be loaded in the memory, and the file source code is no longer needed until next execution Not everyone has root privilege, and just like the /root, game data folder is no longer accessible without root on recent android version 10+
-
no way, this is easy to bypass, someone can just use a file manager that that list recently created file, or just list everything by date, and got it
-
local configFile = gg.getFile()..'.cfg' local data = loadfile(configFile) if data ~= nil then data = data() end local input = gg.prompt({'Please input something'}, data) if input == nil then os.exit() end gg.saveVariable(input, configFile) Examples of Lua scripts (#5no51qfc)
-
i dont think actually fully support armv9
-
How can i make my scripts send a message in a paste site?
MAARS replied to _insidious's question in Help
pastebin expose the dev api, the documentation is written in php but you can rewrite it in lua -
what your game ? can you give a url ?
- 10 replies
-
- Gamehacking
- Help
-
(and 2 more)
Tagged with:
-
Just dump the game then patch the address using a hex editor
- 10 replies
-
- Gamehacking
- Help
-
(and 2 more)
Tagged with:
-
Have you checked @MarioRossi93i wall ? have been publishing a lot of script on RR3 https://gameguardian.net/forum/profile/1123343-mariorossi93i/content/?type=downloads_file&change_section=1
-
Jurassic World: The Game how to get a locked dinosaur?
MAARS replied to greenhairbeard's topic in Requests
How can you access this forum is it is banned i your country ? and also even it is banned you can still install gg cause it is not a play store app -
How to edit values with abbreviations (300k, 2M, 3.42k)?
MAARS replied to doomsday555's question in Help
Usually we use range search, like for 30k: gg.searchNumber("30000~30001", gg.TYPE_DWORD) I will not go beyond that cause there is already a lot of topics talking about this, even someone have posted something on tutorial section, I let you check -
Jurassic World: The Game how to get a locked dinosaur?
MAARS replied to greenhairbeard's topic in Requests
xD this is beautiful, MonkeySAN and his Padawan -
Version 0.0.1
113 downloads
Zombeast: Zombie Shooter Cheats Usage Instructions Download the the script Download the dependencies script (links below) Place all the files in the same folder Run this script with game guardian Game Name: Zombeast: Zombie Shooter Package: com.akpublish.zombie Version: 0.31.1 Url: https://play.google.com/store/apps/details?id=com.akpublish.zombie Script Version: 0.0.1 Abis: arm64-v8a, armeabi-v7a Emulators: supported Dependencies: Patcher Features Immortality Unlock all weapons Unlock all skins Changelog 0.0.1 Initial release -
think about switching your system language to English when asking for help
-
Hope this help gg.clearResults() gg.searchNumber("123456.0", gg.TYPE_FLOAT) local gravity for k, v in ipairs(gg.getResults(6)) do v.flags = gg.TYPE_WORD; if gg.getValues({ v })[1].value == 100 then v.flags = gg.TYPE_FLOAT; gravity = gg.getValues({ v })[1]; break; end end -- can edit gravity.value here gravity.freeze = true; gravity.value = "can edit here or remove this line"; local teleport = { address = gravity.address + 0x4, -- replace offset flags = gg.TYPE_FLOAT, freeze = true, value = "can edit here or remove this line", } local jump = { address = gravity.address + 0x8, flags = gg.TYPE_FLOAT, freeze = true, value = "can edit here or remove this line", } -- must call setValues if you want to edit value -- gg.setValues({ teleport, jump }) gg.addListItems({ gravity, teleport, jump }) another question, how can teleport be in a single value ? teleport normally require 3 coordinate, xyz
- 6 replies
-
3
-
- Gameguardian
- Script
-
(and 4 more)
Tagged with:
-
I may provide a template for that but i am actually outside so no computer xD. You could already provide all the offset with associated name like 0x108, Speed Hack 0x309, Damage Hack This way i will write a ready to use script
- 6 replies
-
- Gameguardian
- Script
-
(and 4 more)
Tagged with: