diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-10-19 02:18:24 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-10-19 02:18:24 +0100 |
commit | ed7e4fed4ddedaf9d4c181052ca552a0914d57bb (patch) | |
tree | 0d451e40d82b0513c4f2acd42ea750638b1d4c88 /NorthstarDedicatedTest/squirrel.cpp | |
parent | 9b8a6d155a7a2cf1bfb4e8d98980bfb0b6e94d92 (diff) | |
download | NorthstarLauncher-ed7e4fed4ddedaf9d4c181052ca552a0914d57bb.tar.gz NorthstarLauncher-ed7e4fed4ddedaf9d4c181052ca552a0914d57bb.zip |
add masterserver mod list support and fix some squirrel issues
Diffstat (limited to 'NorthstarDedicatedTest/squirrel.cpp')
-rw-r--r-- | NorthstarDedicatedTest/squirrel.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/NorthstarDedicatedTest/squirrel.cpp b/NorthstarDedicatedTest/squirrel.cpp index f8d8cd33..5d8d69a2 100644 --- a/NorthstarDedicatedTest/squirrel.cpp +++ b/NorthstarDedicatedTest/squirrel.cpp @@ -70,6 +70,9 @@ sq_pushfloatType ServerSq_pushfloat; sq_pushboolType ClientSq_pushbool; sq_pushboolType ServerSq_pushbool; +sq_pusherrorType ClientSq_pusherror; +sq_pusherrorType ServerSq_pusherror; + // sq stack get funcs sq_getstringType ClientSq_getstring; @@ -84,9 +87,6 @@ sq_getfloatType ServerSq_getfloat; sq_getboolType ClientSq_getbool; sq_getboolType ServerSq_getbool; -sq_getentityType ClientSq_getentity; -sq_getentityType ServerSq_getentity; - template<Context context> void ExecuteCodeCommand(const CCommand& args); @@ -132,12 +132,12 @@ void InitialiseClientSquirrel(HMODULE baseAddress) ClientSq_pushinteger = (sq_pushintegerType)((char*)baseAddress + 0x36A0); ClientSq_pushfloat = (sq_pushfloatType)((char*)baseAddress + 0x3800); ClientSq_pushbool = (sq_pushboolType)((char*)baseAddress + 0x3710); + ClientSq_pusherror = (sq_pusherrorType)((char*)baseAddress + 0x8470); ClientSq_getstring = (sq_getstringType)((char*)baseAddress + 0x60C0); ClientSq_getinteger = (sq_getintegerType)((char*)baseAddress + 0x60E0); ClientSq_getfloat = (sq_getfloatType)((char*)baseAddress + 0x6100); ClientSq_getbool = (sq_getboolType)((char*)baseAddress + 0x6130); - ClientSq_getentity = (sq_getentityType)((char*)baseAddress + 0x12F80); ENABLER_CREATEHOOK(hook, (char*)baseAddress + 0x26130, &CreateNewVMHook<CLIENT>, reinterpret_cast<LPVOID*>(&ClientCreateNewVM)); // client createnewvm function ENABLER_CREATEHOOK(hook, (char*)baseAddress + 0x26E70, &DestroyVMHook<CLIENT>, reinterpret_cast<LPVOID*>(&ClientDestroyVM)); // client destroyvm function @@ -163,12 +163,12 @@ void InitialiseServerSquirrel(HMODULE baseAddress) ServerSq_pushinteger = (sq_pushintegerType)((char*)baseAddress + 0x36A0); ServerSq_pushfloat = (sq_pushfloatType)((char*)baseAddress + 0x3800); ServerSq_pushbool = (sq_pushboolType)((char*)baseAddress + 0x3710); + ServerSq_pusherror = (sq_pusherrorType)((char*)baseAddress + 0x8440); ServerSq_getstring = (sq_getstringType)((char*)baseAddress + 0x60A0); ServerSq_getinteger = (sq_getintegerType)((char*)baseAddress + 0x60C0); ServerSq_getfloat = (sq_getfloatType)((char*)baseAddress + 0x60E0); ServerSq_getbool = (sq_getboolType)((char*)baseAddress + 0x6110); - ServerSq_getentity = (sq_getentityType)((char*)baseAddress + 0x203B0); ENABLER_CREATEHOOK(hook, (char*)baseAddress + 0x1FE90, &SQPrintHook<SERVER>, reinterpret_cast<LPVOID*>(&ServerSQPrint)); // server print function ENABLER_CREATEHOOK(hook, (char*)baseAddress + 0x260E0, &CreateNewVMHook<SERVER>, reinterpret_cast<LPVOID*>(&ServerCreateNewVM)); // server createnewvm function |