Jump to content
  • 0

Question

Posted

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

  • 0
Posted (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 by MANDO01
  • 0
Posted

Hi @trafo, you can edit method using these tools:

  1. -Β Il2Cpp Edits
  2. -Β 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
Posted
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
Posted
14 hours ago, trafo said:

This is what inside dump.cs

And i search the name on game guardian, It's not find anythink

Screenshot_2023-11-11-09-17-23-31_5a36f6e0f8b96c8fbbd9efc54bb8de1e.png

Screenshot_2023-11-11-09-22-09-52_9e9ab5c5476c9092298975eda32e3c54.png

Screenshot_2023-11-11-09-21-34-58_9e9ab5c5476c9092298975eda32e3c54.png

Screenshot_2023-11-11-09-22-29-42_9e9ab5c5476c9092298975eda32e3c54.png

Screenshot_2023-11-11-09-21-41-81_9e9ab5c5476c9092298975eda32e3c54.png

Search by field offset check youtube offset field searcher

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.