I have no employees.
Server on local pc.
I'm not sure about the NPCFix plugin, (here is the code
class NPCFix: RustPlugin
{
private void OnServerInitialized ()
{
timer.Every (600f, () =>
{
BasePlayer.activePlayerList.ForEach (OnPlayerInit);
BasePlayer.sleepingPlayerList.ForEach (OnPlayerInit);
});
}
private void OnPlayerSleep (BasePlayer player) => OnPlayerInit (player);
private void OnPlayerInit (BasePlayer player)
{
if (player == null)
return
if (! player.userID.IsSteamId ())
{
player.DieInstantly ();
PrintWarning ($ "Fake player {player.displayName} ({player.userID}) was killed");
}
}
}