mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Finish initial implementation of basic bots
This commit is contained in:
parent
909a3d7876
commit
78960f6bbd
@ -1248,7 +1248,12 @@ void CC_CreateFakePlayer_f(const CCommand& args)
|
||||
DevMsg(eDLL_T::SERVER, "usage: sv_addbot name teamid\n");
|
||||
return;
|
||||
}
|
||||
edict_t nHandle = IVEngineServer__CreateFakeClient(nullptr, args.Arg(1), std::stoi(args.Arg(2)));
|
||||
|
||||
g_pEngineServer->LockNetworkStringTables(true);
|
||||
|
||||
edict_t nHandle = g_pEngineServer->CreateFakeClient(args.Arg(1), std::stoi(args.Arg(2)));
|
||||
g_pServerGameClients->ClientFullyConnect(nHandle, false);
|
||||
|
||||
g_pEngineServer->LockNetworkStringTables(false);
|
||||
#endif // !CLIENT_DLL
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user