You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To install a plugin just copy it in the "Plugins" folder.
42
45
If you want to develop your own plugin just learn from the code of the [Sample Plugins](https://github.com/KN4CK3R/ReClass.NET-SamplePlugin) and [Frostbite Plugin](https://github.com/KN4CK3R/ReClass.NET-FrostbitePlugin) repositories. If you have developed a nice plugin, leave me a message and I will add it to the list above.
43
46
44
47
## Installation
45
48
Just download the [latest version](https://github.com/KN4CK3R/ReClass.NET/releases) and start the x86 / x64 version.
46
49
50
+
## Tips
51
+
- Lots of elements have a context menu. Just right-click it and see what you can do there.
52
+
- The node window can be controlled with the keyboard too. Arrow keys can select other keys, combined with the shift key the nodes get selected. The menu key opens the context menu which itself can be controlled with the keyboard.
53
+
- The memory address field of a class can contain a real formula not just a fixed address.
54
+
55
+
**<Program.exe> + 0x123** will use the base address of Program.exe and add 0x123 to it.
56
+
**[0x4012ABDE]** will read the integer (4 byte on x86 / 8 byte on x64) from the address 0x4012ABDE and use this value as class address.
57
+
**[<Program.exe> + 0xDE] - AB** will calculate the base address of Program.exe, add 0xDE to it, read the value from this address and finally sub 0xAB from it.
58
+
59
+
Valid operations are read ([..]), add (+), sub (-), mul (*) and div (/). Please note that all operations are integer calculations.
60
+
47
61
## Compiling
48
62
If you want to compile ReClass.NET just fork the repository and open the ReClass.NET.sln file.
49
63
Compile the project and copy the dependencies to the output folder.
0 commit comments