Actualiser Unreal Engine offsets dealing

2025-09-14 09:53:27 +00:00
parent db90552c81
commit 102fa604f2

@@ -121,3 +121,19 @@ else
end
```
# Modifiying SDK
The SDK doesn't allow to modify the offsets natively. So we got to modify the code a bit in order to achieve it.
Open the Basic.hpp and modify at the very beginning the Offsets namespace to look like this.
```
namespace Offsets
{
inline int32 GObjects = 0x092F8D70;
inline int32 AppendString = 0x01273B00;
inline int32 GNames = 0x092155C0;
inline int32 GWorld = 0x090C7008;
inline int32 ProcessEvent = 0x0149DC80;
inline int32 ProcessEventIdx = 0x0000004F;
}
```