diff options
Diffstat (limited to 'NorthstarDedicatedTest/squirrel.cpp')
-rw-r--r-- | NorthstarDedicatedTest/squirrel.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/squirrel.cpp b/NorthstarDedicatedTest/squirrel.cpp index d0d54a3a..a0680d9a 100644 --- a/NorthstarDedicatedTest/squirrel.cpp +++ b/NorthstarDedicatedTest/squirrel.cpp @@ -72,6 +72,9 @@ sq_pushboolType ServerSq_pushbool; sq_pusherrorType ClientSq_pusherror; sq_pusherrorType ServerSq_pusherror; +sq_defconst ClientSq_defconst; +sq_defconst ServerSq_defconst; + sq_pushAssetType ClientSq_pushAsset; sq_pushAssetType ServerSq_pushAsset; @@ -148,6 +151,8 @@ void InitialiseClientSquirrel(HMODULE baseAddress) ClientSq_sq_get = (sq_getType)((char*)baseAddress + 0x7C30); + ClientSq_defconst = (sq_defconst)((char*)baseAddress + 0x12120); + ENABLER_CREATEHOOK( hook, (char*)baseAddress + 0x26130, @@ -203,6 +208,8 @@ void InitialiseServerSquirrel(HMODULE baseAddress) ServerSq_sq_get = (sq_getType)((char*)baseAddress + 0x7C00); + ServerSq_defconst = (sq_defconst)((char*)baseAddress + 0x1F550); + ENABLER_CREATEHOOK( hook, (char*)baseAddress + 0x1FE90, |