-
Posts
51 -
Joined
-
Last visited
-
Days Won
5
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by APEXggV2
-
for version 1.44.2.f2565 x64bit it's not perfect, but should be enough for you to get some hacks with CriticalOps=DUMP(1.44.2.f2565)[x64].txt
-
I made a script that can create a dump file for this game.. it will be missing some information, like enum values, and data type for fields, but majority of information will be useful for hacking. Wait.. I'll post here for you soon..
-
maybe just get range lists , first results start address, and last index end adress and subtract... idk if this would work how you want though not sure if this would account for propagated data when game is loading...
-
Is there a way to hide environment / root checks in f1vm? some games have security checks and won't even open more than half a second after detecting app is loaded in a virtual space with root.. (rooting main device is NOT an option) thanks in advance for the help.
- 7 replies
-
- hide root
- hide environment
-
(and 1 more)
Tagged with:
-
- 13 comments
-
- registration
- offsets
- (and 5 more)
-
- 13 comments
-
- registration
- offsets
- (and 5 more)
-
- 13 comments
-
- registration
- offsets
- (and 5 more)
-
I've tested on 6 games, 3 64bit and 3 32bit. I started by seeing what the registration offsets are from the dumper apk (as in 3rd pic) , then just started experimenting.. I saw someone else say something about pointer search from metadata start. after search, there will be results that are : pointer to code +0x4 pointer to meta +0x4 pointer to start metadata +0x4 pointer to start metadata going to those pointer addresses and -0x the offset shown in the dumper always took me to the start address of the libil2cpp.so
- 13 comments
-
- registration
- offsets
- (and 5 more)
-
- 13 comments
-
- registration
- offsets
- (and 5 more)
-
- 13 comments
-
- registration
- offsets
- (and 5 more)
-
View File Get Registration Offsets (Code+Metadata) Simple script will get the registration offsets for code and metadata. Allows you to copy offsets to your clipboard Submitter APEXggV2 Submitted 04/15/2024 Category Tools
-
1
-
- registration
- offsets
- (and 5 more)
-
- 13 comments
-
1
-
- registration
- offsets
- (and 5 more)
-
Here, run this script. it will get code and meta registration Offsets and let you copy to clipboard [GET]-RegistrationOffsets-v01--APEX[GG]v2.lua
-
gg.searchNumber(x.."~"..y,gg.TYPE_DOUBLE, ...(the rest)
-
but is there a way to manually get the offsets? (as shoen in prompt pic)
-
View File Lib Offset Hook Editor/Tester You can Quickly edit lib offsets for testing hacks. Or search Public Class Field Offsets. Enter lib Offset or Method Name Select Edit Option Enter Value (Int,Float,Double,Long) Copy Arm Hex or "Script it" Perfect to quickly and easily test offsets from dump.cs Works on all lib types, Not Just Unity/libil2cpp Script is Online for easy updates. Open Source / Not Encrypted Submitter APEXggV2 Submitted 03/26/2024 Category Tools
-
Version v03
1,889 downloads
You can Quickly edit lib offsets for testing hacks. Or search Public Class Field Offsets. Enter lib Offset or Method Name Select Edit Option Enter Value (Int,Float,Double,Long) Copy Arm Hex or "Script it" Perfect to quickly and easily test offsets from dump.cs Works on all lib types, Not Just Unity/libil2cpp Script is Online for easy updates. Open Source / Not Encrypted -
Attached is a pdf file that clearly explains how to make op codes for any value and type. The methods are specifically for GameGuardian, explaining common errors and how to fix. Any Value, Any Type. (Bool, Float, Double, Long/Qword, Int/Dword) GameGuardian-ARM-OPCodes--APEX[GG]v2.pdf
-
x=gg.getResults(10) gg.clearResults() for i, v in ipairs(x) do b=tonumber(v.address-10000) c=tonumber(v.address+10000) gg.searchNumber("1.2",64,false,gg.SIGN_EQUAL,b, c) z=gg.getResults(gg.getResultsCount()) gg.addListItems(z) gg.clearResults() end gg.loadResults(gg.getListItems())
-
View File Value to ARM Hex Converter This script can convert any value of any type to ARM Hex x32 and x64. Option to copy to clipboard. Also logs all entry into print. (the bit of process does not need to match the bit of the ARM you want converted. Requires gameguardian v 101.1 Submitter APEXggV2 Submitted 03/24/2024 Category Tools
-