Lover1500
Contributor-
Posts
341 -
Joined
-
Last visited
-
Days Won
18
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by Lover1500
-
This is getting dump.cs. This is how i check class name and field offset. you can also learn what is il2cppdumper for and modding.
- 30 replies
-
2
-
- class name
- field offset
-
(and 1 more)
Tagged with:
-
Actually, i make this script for modders. in dump.cs, the value you find will be like this. search class PlayerProfile check the field offset 0x104. its your value. If you want use hooking, aim that offset. I'll also make a script how you can get the value using update void. So please wait a while.
- 30 replies
-
2
-
- class name
- field offset
-
(and 1 more)
Tagged with:
-
View File Class name and Field offset searcher Sometimes, we could find the value with gg. But in dump.cs, we dont know which value under which class is the right one for modding. Testing one by one takes time. In those cases, how did you continue your modding journey? This script do search the class name and field offset of the value. So you will easily know what one to be editted. Usage -search your value. -when you get the value, run script. -script will give you class and offset of that value. Submitter Lover1500 Submitted 12/09/2021 Category Tools
- 30 replies
-
3
-
- class name
- field offset
-
(and 1 more)
Tagged with:
-
Version 3.1
10,158 downloads
Sometimes, we could find the value with gg. But in dump.cs, we dont know which value under which class is the right one for modding. Testing one by one takes time. In those cases, how did you continue your modding journey? This script do search the class name and field offset of the value. So you will easily know what one to be editted. Usage -search your value. -when you get the value, run script. -script will give you class and offset of that value.- 6 comments
- 1 review
-
7
-
- class name
- field offset
-
(and 1 more)
Tagged with:
-
Dont use gg.getTargetInfo() then. its only for selected process. Do a function that check every process. by yourself. proc/pid etc
-
You cant. because you editting values in memory. after you edit, it will change. Either using second gg or using other memory viewer can see it. Ahh i see why you ask to check running processes. You are going to detect second gg and if it is running, you will stop your values to edit. like that? wont be easy to detect gg.
-
You mean gg.getTargetInfo()? can get process name etc from it. yeah. i think it cant be stopped. depend on how you edit values. if you edit hex in Xa, its so easy to find with second gg. What relates between checking running process and protecting against from second gg? i cant imagine what you want.
-
Genshin Impact| How to find values using pointers and metadata
Lover1500 replied to Platonic's topic in Video Tutorials
very good tutorial for me. hope you also do for offsets- 14 replies
-
3
-
- Genshin impact
- values
-
(and 3 more)
Tagged with:
-
We dont understand what you mean too. it will be great if you explains more clear. This is what i think you need. may be wrong ok.lua
-
-
-
keep scroll down little and show ss again. The one you are showing doesnt include useful one of movement speed. it just going with pointers.
-
View File Hook Offset Searcher Script search the offsets where hacker hook, inject, jump codes. Useful for searching offsets of modded games. Its only available for armv7 for now. I will update script when i am ready for arm64. Special Thanks to cmp, enyby, saiaapiz Submitter Lover1500 Submitted 10/23/2021 Category Tools
-
-
X0 is the instance normally.You shouldnt edit instance directly. There must be a value loader. If your movement is at offset 0x3C of instance, for example, it'd be like that. MOV W8, #0x42C80000 --put float 100 into W8. STR W8, [X0,#0x3C] --put float 100 into offset 0x3C of instance RET The point is make sure you are editing the right offset.
-
View File Hidden global-metadata.dat searcher Read before download! Finally i've done this one. There are games such as freefire, ace fishing which hide metadata. This script will give you the hidden metadata header. If the value of result address is 0 or any number which the first 4 bytes is not AF 1B B1 FA, metadata header has been probably obfuscated. Re-edit header value for valid use. This script is Open Source! I'll update script when i found new features. Big thanks to cmp and enyby. Submitter Lover1500 Submitted 10/15/2021 Category Tools
-
Version 4
7,641 downloads
Read before download! Finally i've done this one. There are games such as freefire, ace fishing which hide metadata. This script will give you the hidden metadata header. If the value of result address is 0 or any number which the first 4 bytes is not AF 1B B1 FA, metadata header has been probably obfuscated. Re-edit header value for valid use. This script is Open Source! I'll update script when i found new features. Big thanks to cmp and enyby. -
results is over 2000k. really? which is slower searching and setting value in yours?
-
How to find high number with letters (200U)?
Lover1500 replied to IsraeliSoldierX's question in Help
When value is changed, Try fuzzy search with increased or decreased. It will be fast if you can add how many value is increased or decreased. -
-
dump libil2cpp.so and metadata.dat dumping script
Lover1500 replied to Lover1500's topic in LUA scripts
Hmm i have heard its hard to dump cod. I'll let you know when i found a way to dump. yeah -
dump libil2cpp.so and metadata.dat dumping script
Lover1500 replied to Lover1500's topic in LUA scripts
get lib through gg dump runtime. get metadata from gg dump too. Go to il2cppdumper. Dont use auto. use manually. Input start address of the dumped lib. Done!