Returning merchants to bandit camp?
Tell me.
How to return merchants to the city of bandits.
Are they just not visible?
Thank you for your reply.
You may have removed them. You can wipe your map to get them back.
impossible, are you sure? maybe plugins removed it or one of your staff members?
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");
}
}
}
Did u mean the seller npcs in the Bandit Camp? if i look to the Code it will remove npcs/players that not have a steam ID. So if u delete the seller u cant spawn them back. HumanNPC plugin did it same and delete this npcs before i fix it. u need now wait for the next map wipe.