Delete Blueprints of certain playersSolved

Is there a way to delete blueprints of certain players, not every player on the server?

can you change the status to solved  :)

Well, maybe there are other options some guys know?
Like modifying the blueprint file or admin commands.
That's just one solution so far.

Kleementin

Well, maybe there are other options some guys know?
Like modifying the blueprint file or admin commands.
That's just one solution so far.

No admin commands only delete all BP by deleting a file.
you could always try o.revoke user <idhere> *

Kleementin

Well, maybe there are other options some guys know?
Like modifying the blueprint file or admin commands.
That's just one solution so far.

Not sure if you checked this plugin already: https://umod.org/plugins/player-administration
It allows to go to any known player on your server and for instance delete their blueprints while leaving every other player unchanged.

Oh my god! I have and use this already. :D
I have to check it out.

The resetbp command does support a baseplayer

Interesting.
What would the whole command line look like?
Like resetbp player "..." ?

Kleementin

Interesting.
What would the whole command line look like?
Like resetbp player "..." ?

public static void resetbp(ConsoleSystem.Arg arg)
    {
      BasePlayer basePlayer = arg.GetPlayer(0);
      if ((UnityEngine.Object) basePlayer == (UnityEngine.Object) null)
      {
        if (arg.HasArgs())
        {
          arg.ReplyWith("Can't find player");
          return;
        }
        basePlayer = arg.Player();
      }
      basePlayer.blueprints.Reset();
    }

 

Ah you were talking about the Blueprint Manager plugin. Thanks.

Locked automatically