IDE is saying method is unusedSolved
These are just info messages, and it is ok because methods may not be used by your app at all - it could be API or be used by reflection in this case or similar. Just disable the detection. Also, Command is only for CovalencePlugin and uses IPlayer - not BasePlayer, change RustPlugin -> CovalencePlugin and BasePlayer->IPlayer to avoid "Why does this not work?" in future. Then you will be able to just do: iplayer.Reply("Welcome to uMod!");
That is static analysis which is designed for self-contained libraries or programs, not plugins.

Those methods (hooks, commands) are invoked externally at run-time.

It's normal and nothing to worry about.
Thank you!!
Locked automatically