
MAARS
Contributor-
Posts
680 -
Joined
-
Last visited
-
Days Won
28
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by MAARS
-
I don't know why @Sysadmin removed the code snippet, i dont like writing code without highlighting. check the script file offset.lua
-
I don't use the refine function because i have set the limit to 1 value so my results list will always have one value, the first one
-
Ah ok i understand i got the same when searching, it is because these values you selected for the group search are not statics they change. i managed to get the good group. -- this group : 1,769,238,352;1,885,431,122;29,285::53 -- the offset between the first results and chilly value is 0x54
-
Yeah this is one might be a little bit complicated, the goal is to show how to retrieve value using offsets. sa.lua
-
Offset should remain the same, throw the game link [added 0 minutes later] xD we posted at the same time, that hilarious
-
local function memoryPatch(offset, value) local so = gg.getRangesList('libil2cpp.so')[1].start local v = {} local v[1] = {} v[1].address = so + offset v[1].flags = gg.TYPE_QWORD v[1].value = value .. "r" gg.setValue(v) gg.toast('memory patched') end memoryPatch(0x4856E5, HEX VALUE)
-
View File Script Loader Load all your useful script at one place Submitter MAARS Submitted 07/22/2021 Category Tools
-
View File GG Helper Game Guardian Offline Documentation help for scripter Submitter MAARS Submitted 07/22/2021 Category Tools
-
-
xD he clearly said that gg is detected by the game he cant launch the game without uninstalling gg, do you understand now ?
-
In this case you have 2 opportunities i think, - The first is the simple one, if you are rooted you can install game guardian only in a virtual space, like V.xposed then gg will not be detected. - The second one is, reverse engineering, you need to unpack the app then remove or disable this protection, if you dont know s*** about java and smali then forget about this one.
-
View File elapsed-birthday-time-calculator ----- [[ DESCRIPTION ]] EVERYONE HAVE A BIRTHDAY RIGHT ?, BUT DO YOU KNOW HOW MUCH TIME ELAPSED SINCE YOU WHERE BORN ? NOT REALLY YES ?, THIS TOOLS CAN TELL YOU THAT. Submitter MAARS Submitted 06/20/2021 Category Tools
-
-
you forget this print('dont dec my script or i will kill you')
-
Send the script file in this case, it is better
- 15 replies
-
View File Sniper 3D Cheat Script SCRIPT FOR : sniper 3d GAME VERSION : 3.32.0 ARCH : armeabi-v7a TYPE : lib base script RELEASE : beta AUTHOR : MAARS Submitter MAARS Submitted 05/08/2021 Category LUA scripts
-
View File Archero cheat script Script for : Archero Game version : 3.1.2 Type : lib based --------------------------- Update 1.0 : - Damage hack - Health hack --------------------------- Note: 32 and 64 file correspond on armeabi-v7a and arm64-v8a variant of the game. YouTube Telegram Submitter MAARS Submitted 05/08/2021 Category LUA scripts
-
2
-
- Archero Hack
- Scripts
-
(and 3 more)
Tagged with:
-
- 1 comment
-
4
-
- Archero Hack
- Scripts
-
(and 3 more)
Tagged with:
-
-
local g = gg local ls = {'test1','test2'} local val = {"10;0;0;1::","20;0;0;2::"} local c = g.multiChoice(ls,{false,false},'prova') if c==nil then print('Canceled') os.exit() end -- table to store search results local results = {} for i=1, #ls do if c[i] then s = val[i] g.searchNumber(s,4) -- ['getResults'] = function (maxCount, skip, addressMin, addressMax, valueMin, valueMax, type, fractional, pointer) end, -- gg.getResults(int maxCount [, int skip = 0 [, long addressMin = nil [, long addressMax = nil [, string valueMin = nil [, string valueMax = nil [, int type = nil [, string fractional = nil [, int pointer = nil]]]]]]]]) -> table || string with error results[i] = g.getResults(999, nil, nil, nil, nil, nil, nil, nil, nil) g.clearResults() print(s) print(results) end end -- So the first results list is stored in the table -- results in index 1 ( results[1] ). -- the second search results list is also stored in the results table -- but index 2 -- for editing you will use the code bellow for k, v in ipairs (results[1]) do v.value = '45' -- The value you want to change to v.flags = gg.TYPE_DWORD -- value type v.freeze = false -- true if you want to freeze v.freezeType = gg.FREEZE_NORMAL -- remove both freeze and freeze type if you dont want to freeze the value end g.setValues(results[1])
-
Its work correctly, if you select both it search for both, if you select one it search only the selected one. it is the purpose of your script right ?