I'm trying to experiment a bit. (creating a plugin for rust)
I know that Covalence plugins should work for every game umod supports, whereas rust plugins only for rust.
Plugin that derives from Rust Plugin can use things like `cmd.AddChatCommand` etc.
1. Where I can find a list of things like cmd. to use? (Knowing this list is somehow easier to look what can do what and find methods using dot peek in the visual studio)
2. My second question is about `server.MaxPlayers` and `players.Connected`, which seem to be only accessible when using : ConvalencePlugin. Are there any alternatives when using RustPlugin? (for server.MaxPlayers I've found by digging into dlls ConVar.Server.maxplayers, but I'm not sure if is safe to use. I mean can Facepunch change this anytime without making something like "ConVar.Server.maxplayers is obsolete: use somethingelse")