Show the world size in km²:
Thanks for a great plugin :)
#if RUST
double WorldKm = ConVar.Server.worldsize /1000.0;
WorldKm = Math.Pow(WorldKm,2);
...
.Replace("{server.worldsize.in.km}", WorldKm.ToString("00.00") + " km²")
Use commas to separate the entity count by thousands (untested with 100k+):
.Replace("{server.entities}", BaseNetworkable.serverEntities.Count.ToString("#,##0"))Thanks for a great plugin :)