Skip to content

Commit 4ebf0d4

Browse files
authored
Updated readme and added tips.
1 parent c61566d commit 4ebf0d4

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This is a port of ReClass to the .NET platform with additional features.
1010
- Hex 8 / 16 / 32 / 64
1111
- Int 8 / 16 / 32 / 64
1212
- UInt 8 / 16 / 32 / 64
13+
- Bool
1314
- Bits ![](https://abload.de/img/bitsnhlql.jpg)
1415
- Float / Double
1516
- Vector 2 / 3 / 4
@@ -26,6 +27,7 @@ This is a port of ReClass to the .NET platform with additional features.
2627
- Control the remote process: start / stop / kill
2728
- Process Selection Dialog with filtering
2829
- Memory Viewer
30+
- Class address calculator
2931
- Code Generator (C++ / C#)
3032
- Plugin Support
3133
- Plugins can be written in different languages (example: C++, C++/CLI, C#)
@@ -37,13 +39,25 @@ This is a port of ReClass to the .NET platform with additional features.
3739
## Plugins
3840
- [Sample Plugins](https://github.com/KN4CK3R/ReClass.NET-SamplePlugin)
3941
- [Frostbite Plugin](https://github.com/KN4CK3R/ReClass.NET-FrostbitePlugin)
42+
- [MemoryPipe Plugin](https://github.com/KN4CK3R/ReClass.NET-MemoryPipePlugin)
4043

4144
To install a plugin just copy it in the "Plugins" folder.
4245
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.
4346

4447
## Installation
4548
Just download the [latest version](https://github.com/KN4CK3R/ReClass.NET/releases) and start the x86 / x64 version.
4649

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+
4761
## Compiling
4862
If you want to compile ReClass.NET just fork the repository and open the ReClass.NET.sln file.
4963
Compile the project and copy the dependencies to the output folder.
@@ -82,4 +96,4 @@ Settings
8296
- [DarthTon](https://github.com/DarthTon)
8397
- [ReUnioN](https://github.com/ReUnioN)
8498
- leveln
85-
- [buddyfavors](https://github.com/buddyfavors)
99+
- [buddyfavors](https://github.com/buddyfavors)

0 commit comments

Comments
 (0)