trafo Posted November 8, 2023 Posted November 8, 2023 Pleas help me. I have dump.cs, and want to use it manualy hack the game. Buy i don't know how I try to find the offset with search the methodh name with string search " : " but It's empty/not found.i have try in 'A','ca',and 'other' memory. Btw they make the methodh name with random word
0 MANDO01 Posted November 9, 2023 Posted November 9, 2023 (edited) On 11/8/2023 at 5:29 AM, trafo said: Pleas help me. I have dump.cs, and want to use it manualy hack the game. Buy i don't know how I try to find the offset with search the methodh name with string search " : " but It's empty/not found.i have try in 'A','ca',and 'other' memory. Btw they make the methodh name with random word Β offset in xa rang Filed offset in a rang Use Filed offset and class name (Field Offset Finder) to get filed offsetΒ To use offset in xa there's alot of videos in youtube Edited November 9, 2023 by MANDO01
0 MC874 Posted November 9, 2023 Posted November 9, 2023 Hi @trafo, you can edit method using these tools: -Β Il2Cpp Edits -Β GGIl2Cpp Here's some example on how you can do it on GGIl2Cpp: require("Il2cppApi") Il2cpp() classes = Il2cpp.FindClass( {{Class = val.class_name, MethodsDump = true, FieldsDump = true}} ) for k, v in ipairs(classes) do for k, v in ipairs(v) do if v.Methods then local methods = v:GetMethodsWithName(your_method_name) if #methods > 0 then for i = 1, #methods do Il2cpp.PatchesAddress(tonumber(methods[i].AddressInMemory, 16), your_patches) end end end end end --- Notes - Change "your_method_name", with the method name, example: get_Hp - Change "your_patches", with ARM Patches (Hex), example: \x00\x00\x00\xE3\x10\x0A\x00\xEE\x40\x0B\xB8\xEE\x10\x0B\x51\xEC\x1E\xFF\x2F\xE1 - Add "\x" to every bytes, for example: 00 (Hex) -> \x00 You can use:Β ARM ConverterΒ to get ARM Patches.
0 THETWINSOFFICIAL Posted November 11, 2023 Posted November 11, 2023 On 11/8/2023 at 12:29 PM, trafo said: Pleas help me. I have dump.cs, and want to use it manualy hack the game. Buy i don't know how I try to find the offset with search the methodh name with string search " : " but It's empty/not found.i have try in 'A','ca',and 'other' memory. Btw they make the methodh name with random word Formethod offset just use calculate offset or use any scriptΒ For field offset use script field offset finder (but not all field offset can search)Β
0 trafo Posted November 11, 2023 Author Posted November 11, 2023 I don't understand how to make script,thats whay i Jack it manualy. Β
0 trafo Posted November 11, 2023 Author Posted November 11, 2023 This is what inside dump.cs And i search the name on game guardian, It's not find anythink
0 MC874 Posted November 11, 2023 Posted November 11, 2023 Quote thats whay i Jack it manualy Hi @trafo, then use Il2Cpp Edits I mentioned earlier.
0 THETWINSOFFICIAL Posted November 11, 2023 Posted November 11, 2023 7 hours ago, trafo said: I don't understand how to make script,thats whay i Jack it manualy. Β You can use manualy Without any script
0 THETWINSOFFICIAL Posted November 11, 2023 Posted November 11, 2023 8 hours ago, trafo said: I don't understand how to make script,thats whay i Jack it manualy. Β Β km_20231111_720p_30f_20231111_190840.mp4
0 THETWINSOFFICIAL Posted November 11, 2023 Posted November 11, 2023 14 hours ago, trafo said: This is what inside dump.cs And i search the name on game guardian, It's not find anythink Search by field offset check youtube offset field searcher
Question
trafo
Pleas help me.
I have dump.cs, and want to use it manualy hack the game. Buy i don't know how
I try to find the offset with search the methodh name with string search " : " but It's empty/not found.i have try in 'A','ca',and 'other' memory.
Btw they make the methodh name with random word
9 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now