mirror of
https://github.com/R2Northstar/NorthstarLauncher
synced 2026-08-23 20:26:04 -04:00
18 lines
611 B
C++
18 lines
611 B
C++
#include "squirrel/squirrel.h"
|
|
#include "tier1/convar.h"
|
|
#include "tier1/cmd.h"
|
|
|
|
void ConCommand_ns_script_servertoclientstringcommand(const CCommand& arg)
|
|
{
|
|
if (g_pSquirrel[ScriptContext::CLIENT]->m_pSQVM)
|
|
g_pSquirrel[ScriptContext::CLIENT]->Call("NSClientCodeCallback_RecievedServerToClientStringCommand", arg.ArgS());
|
|
}
|
|
|
|
ON_DLL_LOAD_CLIENT_RELIESON("client.dll", ScriptServerToClientStringCommand, ClientSquirrel, (CModule module))
|
|
{
|
|
RegisterConCommand(
|
|
"ns_script_servertoclientstringcommand",
|
|
ConCommand_ns_script_servertoclientstringcommand,
|
|
"",
|
|
FCVAR_CLIENTDLL | FCVAR_SERVER_CAN_EXECUTE);
|
|
}
|