1. A couple of months ago, the developers have fixed this warning on the map Craggy Island, but after the release of the game error returned again. Can someone ask the developers to re-fix this warning?
     
  2. I only noticed this happening on my small test server - believe the world size was 1500. It shouldn't affect anything if you have custom server spawns
     
  3. The annoying message appears every time you connect the player. I don't like it.
     
  4. Use FilterEx to hide it as many other annoying and unuseful logs :)
     
  5. Big thanks :)

    Code:
            private void Init()
            {
                var filter = Oxide.Game.Rust.RustExtension.Filter.ToList();
              
                filter.Add("Couldn't find an appropriate spawnpoint for the player - so spawning at camera");
                filter.Add(" has entered the game");
              
                Oxide.Game.Rust.RustExtension.Filter = filter.ToArray();
            }
    [DOUBLEPOST=1519198790][/DOUBLEPOST]
    How i can do remove the output in the webrcon server console?
     
    Last edited by a moderator: Feb 21, 2018
  6. As I see, Oxide doesn't handle RCON broadcasting. I think it's means you should to handle unneeded messages by herself via rcon client.
    For example, RustAdmin has a console filters.
    Of course, there is another's sticky ways)

    Or maybe Wulf is able to make a new hook for this?)
     
    Last edited by a moderator: Feb 21, 2018