Skip to content

Commit

Permalink
Fixed an issue that "Failed to locate host_frametime from engine dll …
Browse files Browse the repository at this point in the history
…!" in Sven Co-op 5.26 official release buildnum 10257
  • Loading branch information
hzqst committed Dec 7, 2024
1 parent dad369d commit caaf496
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions fallguys/meta_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ static META_FUNCTIONS gMetaFunctionTable = {
plugin_info_t Plugin_info = {
META_INTERFACE_VERSION, // ifvers
"FallGuys", // name
"1.7", // version
"1.8", // version
"2024", // date
"hzqst", // author
"https://github.com/hzqst/metamod-fallguys", // url
Expand Down Expand Up @@ -351,7 +351,7 @@ C_DLLEXPORT int Meta_Attach(PLUG_LOADTIME /* now */,

VAR_FROM_SIGNATURE_FROM_START(engine, sv_models, 13);

VAR_FROM_SIGNATURE_FROM_END(engine, host_frametime, 0);
VAR_FROM_SIGNATURE_FROM_START(engine, host_frametime, 7);
VAR_FROM_SIGNATURE_FROM_END(engine, pmovevars, 0);
VAR_FROM_SIGNATURE_FROM_START(engine, sv_areanodes, 9);

Expand Down
2 changes: 1 addition & 1 deletion fallguys/signatures.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#define SV_WriteMovevarsToClient_Signature "\x56\x8B\x74\x24\x08\x6A\x2C\x56\xE8\x2A\x2A\x2A\x2A\xD9\x05"

#define sv_models_Signature "\x3D\xFE\x1F\x00\x00\x2A\x2A\x0F\xAE\xE8\xFF\x34\x8D"
#define host_frametime_Signature "\xD8\x83\xA8\x00\x00\x00\xD9\x9B\xA8\x00\x00\x00\xE8\x2A\x2A\x2A\x2A\xDD\x05"
#define host_frametime_Signature "\xE8\x2A\x2A\x2A\x2A\xDD\x05\x2A\x2A\x2A\x2A\x83\xC4\x04\x6A\x00"
#define pmovevars_Signature "\x56\x8B\x74\x24\x08\x6A\x2C\x56\xE8\x2A\x2A\x2A\x2A\xD9\x05"
#define sv_areanodes_Signature "\x8D\x84\x24\xA0\x00\x00\x00\x50\x68\x2A\x2A\x2A\x2A\xE8"
#define pg_groupop_Signature "\xE8\x2A\x2A\x2A\x2A\x83\xC4\x2A\x83\xF8\xFF\x75\x2A\x8B\x0D\x2A\x2A\x2A\x2A\x8B\x15"
Expand Down

0 comments on commit caaf496

Please sign in to comment.