
Lover1500
-
Posts
341 -
Joined
-
Last visited
-
Days Won
19
Content Type
Profiles
Forums
Downloads
Gallery
Posts posted by Lover1500
-
-
On 8/22/2021 at 8:00 PM, X-finisher said:
there is nothing to select global-metadata.dat file from memory range.
There is. sure.
There is usually metadata.dat in front of main lib.ML use liblogic.so instead of libil2cpp.so. So firstly i go to liblogic.so and go up to find metadata.dat.
In freefire case, ff use libil2cpp.so. So you have to go to libil2cpp.so. And go up. There will be metadata.dat.
Or check in maps.txt.
0 -
20 hours ago, Lover1500 said:
an address which can be pointer
Not all purple is pointer.The one you choose is float value. And pointers are Dword in 32 bit.Qword in 64 bit.The game in yours is 64 bit. Find in Qword for yours.
4 minutes ago, blocx said:its say me imput offsett
You can without it.use 0. for now XD
2 -
36 minutes ago, blocx said:
please tell me more about "pointers" i dont know what is that thanks
Pointer is pointer.XD. He is always pointing to its belong values.
You will notice some addresses are in purple color. Lets choose an address which can be pointer.Note it as 'P'. hold press it and choose goto pointer.
it will take you to another address.Lets note this address as 'A'. Hold press it and choose pointer search. The 'P' address will be in the results. you try find connection between 'A' and 'P'. There will be some static values around 'A' or 'P'.Use them as advantage.
You will confused if i tell all. Read this article.you'll get a bunch of knowledge.
Using Offsets (#90nae9fs)3 -
8 minutes ago, blocx said:
these value are ramdom
Then you should search some pointers. Backward or forward.Both is useful.
10 minutes ago, blocx said:it work only.in my device
May be because of different arm or firmware.I've seen like that.Ones dont have Cb region. Values are in another region instead of in Anonymous, Ca. Try different setRanges for that.
1 -
I found direct value of coin.Its pointer always changes once coin value is changed.and idk its encryption.
So i recommend monkey san's method.
2 -
Mobile Legends maphack script
i dont put maphack icon.it can ban your acc.So i use 'no icon' only with drone view and no grass.work for both arm.
I'll release script update once script doesnt work or i find new features.
-
Submitter
-
Submitted08/20/2021
-
Category
0 -
-
-
-
You should link the game or photo at least.
i think this one
https://play.google.com/store/apps/details?id=com.happylabs.hotelstory
1 -
This is how i dump meta.dat
ML hide global-metadata.dat.And I remember someone say global-metadata.dat is decrypted when load game.
You can dump it like this. I tested it on online il2cpp dumper and it works.no error.
2 -
error from metadata? or lib? both?
0 -
-
function funcValue() local a = gg.prompt({"
ENTER YOUR CURRENT COINS
:", "
ENTER YOUR CURRENT GEMS
:"}) if not a then return end group=';' t={} for b, c in ipairs(a) do if not tonumber(c) then return print('Input number pls') end table.insert(t, c) --put value into table t end --you can check t[1] and t[2] by print(t) groupsearch=t[1]..group..t[2] return groupsearch end lol=funcValue() print(lol)
I think this is what u need. I write this to be clear as possible as i can.
40 minutes ago, MonkeySAN said:you only show a tiny part from the script and above is working without the
sometime it needs more info like monkeysan said.
0 -
-dump a little. target is maps txt.
-search global-metdata.dat in the resulted txt. Copy its start address and end address.
-dump again with start and end address. it will end with bin file.
And now i dont know how to continue lol
1 -
It will show after you enable desktop site.
4 -
On 7/8/2021 at 2:53 AM, sammax71 said:
I changed the HP of my bot but the enemies changed too.
You can change only ally bot when start fighting.There are a lot of things in manually. So I recommend to create a script.
0 -
3 hours ago, AKidWithMidgetFriend said:
For i, v in pairs(r) do
v.address + 0x9C
v.flags = gg.TYPE_DWORD
end
Yeah its a loop. I'll correct some syntax.
for i, v in pairs(r) do v.address = v.address + 0x9C v.flags = gg.TYPE_DWORD v.value = 999 --desired value to edit end gg.setValues(r)
3 -
-
I wrote a simple script. Fine for both arms. but it must be the same version(4.0.7.95).
script will auto put coin value into saved list. Hope it helps.
0 -
11 hours ago, blocx said:
r = gg.getResults(100)
local t = {}
t[1] = {}
t[1].address = r[1].address + 0x9C
t[1].flags = gg.TYPE_DWORD
t[1].value =You need a loop to check every each results. You only check first one in table r in your code.
1 -
I dont know
51 minutes ago, hsusudhbsjwhdhdgsj said:to revert the changes back to original state value
Then, create a table that will store original value.
and
58 minutes ago, hsusudhbsjwhdhdgsj said:lol(p, i+2, r, i, 0x40, 13618)
Instead of those 13618, 4713 blah blah,
use table which stored original values.
0 -
19 minutes ago, hsusudhbsjwhdhdgsj said:
gg.searchNumber("AccID;40;6;1065353216::"
wrong coding.
AccID is variable. not string
use
gg.searchNumber(AccID..";40;6;1065353216::"
0 -
1 minute ago, hsusudhbsjwhdhdgsj said:
but can not use as variable and will return nil
its for table
t = {} t[1] = {} t[1].address = 0x18004030 t[1].flags = gg.TYPE_DWORD t = gg.getValues(t) print(t)
or
t = {address = 0x18004030,flags = gg.TYPE_DWORD} t = gg.getValues(t) print(t)
0 -
9 hours ago, hsusudhbsjwhdhdgsj said:
how to retrive the value of an offset address?
Use gg.getValues() for that purpose
0
How to 'os.exit' it, while someone peek at searching value, when gg are searching values?
in Help
Posted
@nio04I think you saw my post XD
But script will go to next line only after gg.searchNumber. So putting checking wont prevent for the first search.
Or may be this one?
https://gameguardian.net/help/classgg.html#a46b78a631174e0c2ea89664c51426440