-
Posts
547 -
Joined
-
Last visited
-
Days Won
19
Everything posted by MC874
-
Hi! The reason its says deleted is because its already unloaded from the memory, so to dump the memory maps, you need certain timing to properly dump the metadata. I recommend to freeze the app at launch or first game loading screen then do the dumping process [Method 1] >I recommend doing it on an Android Emulator as its give you an easy practice >Freeze the game on launch or 5-15 seconds after the game launch. Now freeze the game with GG >Make sure you freeze the game completely, you can check if there's the game services/activity running. If there's some of it running in the background, do the deep-freeze / terminate the game activity/service (Not Main Activity) with 'pm' shell command >After the game freeze completely, now do the dumping, it may take a while. >Now check if the metadata.dat has been properly tampered, if not, you may need to freeze the game with different interval. It can be more faster or wait a little bit more. This might tricky, so i recommend method number 2 [Method 2] >This way, you definitely required to use Android Emulator (LDPlayer, Nox) >Write 2 bat script, one for freezing the Android Emulator, and the second is for freeze-unfreeze-freeze the Emulator with 1ms delay >Launch the game and then freeze it immediately >Pull some memory debugger like Cheat Engine or HxD >Now scan for "metadata" string or the metadata.dat header if you already know some bytes of the metadata file >If the bytes/string doesnt exist, now launch the second script and scan the memory again. Do this until you can find the full metadata file -Good Luck!
-
Hi! Using an FTP Server requires internet access, this is might not good for easy access. Maybe try some Json Web Token (JWT) so you can encrypt-decrypt script offline with ease. -Yuuki
-
Hi! Does this also script also prevent the script being mapped in memory? I mean to prevent memory fisher from being able to get the script value. -Thanks
-
Hi! Just stumble accross your post, and seems no one already answer this. Anyway, since the host is patched or they changing the Server Name, i recommend to use port blocking. Try to block 443 and 80 port while in game and remove the blocker after the match is finish. You can do this using No Root Firewall or using IPTables (Requires root) [For Advanced User]: You can start by disabling unnecessary files using permission 0 and disable the game services using MyAndroidTools Pro. As for memory manipulation, you can try to nullified the game memory maps inside proc using bind. >mount -o bind /proc/2/maps /proc/[Game PID]/maps >mount --bind /proc/2/maps /proc/[Game PID]/maps -Good Luck!
-
Hi! Unfortunately that the detailed tutorial about esp is kinda limited. Usually people put paid tutoring for this but i think its not worth it. But yeah, what you can do probably is just messing around with the template. I mean, changing the base address and add the offset (May also changing the driver / target app) and see if its working. Sadly that UDP Stream tutorial is also limited or almost hard to find. I can only tell you the main idea and a little bit of implementation behind the UDP Stream trick. In the end, you need to do it yourself as self learning. Yeah, its sucks when nobody teaches you directly. Happen to me all the time xD Anyway Goodluck!
-
Hi! You can try to capture In-Game Data trough UDP Stream that based on Game Packets (Send-Receive). From there you can try to visualize the location. However, there's cons and pros from this. You can visualize it everywhere, even on different device, as long you have tunelling between each device. The cons, it may hard to visual, since the packets updated if there's any changes to the target (Lets say enemy) From my understanding, you only have the old value from Youtube and need to find the updated one right? Well, the easiest option is to always reverse engineering the game. You can always compare the value from the old library and try to find it in the newer version because its hard to find it manually using GG. Once you found it, its up to you to make it as ESP or WallHack. You can always find the ESP template and adjust it to your need such as the target game, offset and etc. Wich will help you alot rather than make it from scratch.
-
Hi! Its seems you have some trouble with slow search inside LDPlayer, its looks like that you're using the latest version of LDPlayer and thats the problem. Try to downgrade to LDPlayer 3.99 but it may not met your criteria since its uses Android 5. Or you can use the first version of LDPlayer 4, it may slow but its a little bit fast than the latest one. Not to mention that its also already using Android 7. Good Luck
-
Its possible but it might a challenging task, for a better sight you can only decompile the game library using a decompiler like IDA, Ghidra or something similar.
-
Most game, the hacked item price (paid to free) can still be saved into Online SaveGames because the game only lookup for the transaction (Used Item), this still happens on XboxLive Games. Only a little that does reset everytime you go back to main-menu, so its worth it to look up for the item price. There's atleast 3 different ways to achieve that: 1) Directly change the price value (Rarely work) 2) Changing the item tag (Paid and free item have different tag assigned) 3) Or you can look up on UserHasOwned or something similar to disable paid item and make everything availably free.
-
Hi ! Its looks like the game currency is tied to server-side, thus cant be changed. You can only change the value from the client-side wich there's a value mismatch when the game do transaction. It would be much easier if you can just make the item price to 0 or free instead of changing the gems.
-
You can probably try to freeze the process while the metadata still loaded, i recommend do it with an Android Emulator for easier use.
-
Actually you can only mask it..
- 14 replies
-
- gg
- magisk hide
- (and 4 more)
-
Well that's sucks for not able to play again, but you can easily fix that : 1) Change any of your Phone Info (Including Imei, Device ID, etc) 2) Backup the game shared_prefs and databases folder inside /data/data/ 3) Change Any UUID or Identifier string in there.. 4) Reinstall the game and copy-paste your backup folder.
- 14 replies
-
- gg
- magisk hide
- (and 4 more)
-
Unfortunately they're different altough there's some little similarities between them. Well in UE there's also encrypted string that prevent readable data but the Sdk helps as workaround. I forgot to mention that sometimes String is stored as different name (To make it more difficult to find i suppose). As for example No Recoil String in PUBGM is stored as "RecoilInfo", for me i wouldnt expect that names Or Grass-Object as : "Default__MaterialExpressionLandscapeGrassOutput" to make some no-grass hacks.
-
You can just increase the AimAssist value or using ESP and add some features that will lock to the player bones for Aim-Bot. In term of auto-headshot, you need to find the player hitbox and increase it. Pretty much its still part of Player-Props... You can simply find it in Gworld+Gnames. Or you can just pretty much assuming the range of Hitbox using floats, and see that values that related to Player for Auto-Headshot.
-
I usually hangout at PUBG Mobile sub-forum, actually both games use same environment. So its kinda easy to find game component as-long as you have Gnames and Gworld noted on your list. Or you can just look up on dumped LibUE and you'll get Gworld+Gnames easily. CoD games isnt officially listed on the forum yet, so you can look up on 'Other FPS Games' sub-forum.
-
Actually im kinda lazy to make some ESP layer from scratch, so i usually using other people works from github and adjust it to my needs (changing driver, updating offsets and etc). If you're interested in this kind of field, you may need to hop on Hacking forum. Here's some reference for basic Hacking Unity Games including how's ESP work in Unity: Hacking Unity Games Usually on UE4 you just need to find Gworld and Gnames and from there you can point player offsets but its kinda differ in Unity. You may get some Player-Pos inside generic AssemblyCSharp.dll. Never tried it on myself because i usually making ESP for UE games. Oh yeah, you can browse some pre-existing people works and look it up for basic understanding. Just search it on the forum or browse github like i does :v
-
Well that's kinda an advanced game. You may need some external uses outside the devices. Like using Android Emulator and use Cheat Engine for external memory editor?
-
Game Guardian works by reading /proc. If it does not shown, the problem is probably because of Virtual-Space itself or Game Guardian is unable to read /proc properly. The only fix i can think of is to use Original Environment wich is your phone needs to be rooted. Alternative way is to keep play the Game on Emulator (Memu. LDPlayer. etc) wich has built-in Root/Supersu. I often use Emulator other than using Virtual Spaces.
-
1) For GG Lua, you can learn from their documentation and see their Template Script : https://gameguardian.net/help/classgg.html For further info, you can come to visit guides and tutorial forum : Guides Forum | Tutorial Forum 2) To find Game Offset such as Player Info or etc, you can use Unity ill2ccp dumper from github. It will help you to make Player Hacks or else : Ill2CppDumper
-
Its crappy 'Free Fire', the script does produce results but its not getting edited. I have fixed the issue by passing gg.getResultsCount into gg.getResults and its actually edit the values. I dont know what happen but the final script will look like this : gg.setVisible(false) gg.toast("【 1 / 8 】") gg.clearResults() gg.clearList() gg.setRanges(gg.REGION_C_DATA | gg.REGION_CODE_APP) gg.searchNumber(16384, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0x04000000, 0x04ea7000) if gg.getResultsCount() > 1 then gg.getResults(gg.getResultsCount()) gg.editAll("4451", gg.TYPE_DWORD) gg.clearResults() end
- 12 replies
-
Its a static range, dont worry. I have script that has 8 stage writes, its writes to each different game library on that mentioned range. I have tested this multiple times using manual search and using cat /proc/pid/maps. Its just the script that doesnt work. I do have working script but its writing to all scanned memory. gg.clearResults() gg.setRanges(gg.REGION_C_ALLOC | gg.REGION_CODE_APP) gg.searchNumber("1685382481", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0) gg.getResults(100000) gg.editAll("0", gg.TYPE_FLOAT) gg.setVisible(false) gg.clearResults() gg.clearList() Im trying to compare the above script with mine. Adding (' 0, -1, 0 ') to my script is also not work. Im basically stuck
- 12 replies
-
Both are DWORD, I have change the QWORD to DWORD like this : gg.setVisible(false) gg.toast("【 5 / 8 】") gg.clearResults() gg.clearList() gg.setRanges(gg.REGION_C_DATA | gg.REGION_CODE_APP) gg.searchNumber("16384", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0x0c000000, 0x0c6af000) gg.getResults(100000) gg.editAll("4451", gg.TYPE_DWORD) But those didnt work, am i missing something?
- 12 replies
-
Hi MonkeySan! the script you give doesnt change any values that exist in that memory ranges. Is there any other way?
- 12 replies
-
Thanks again, its really usefull to not miss them...
- 12 replies