I know this might be a noob mistake but this keeps happening when ever i try create a plugin
https://cdn.discordapp.com/attachments/756819047311736842/760482716797108224/rip.png
I don't understand why this keeps saying its unused, is it a big issue?
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.
Those methods (hooks, commands) are invoked externally at run-time.
It's normal and nothing to worry about.
Thank you!!
Locked automatically