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
SmileyAG
changed the title
Reduce the number of hardcoded offsets in favor of automatic finding
restructuring: reduce the number of hardcoded offsets in favor of automatic finding
Jul 29, 2024
Example of current code from ServerDLL.cpp:
offCmd = 283736;
In that example it would be better to include header with
playermove_t
struct and replace it with:offCmd = offsetof(playermove_t, cmd);
The text was updated successfully, but these errors were encountered: