Hello guys!
I am looking for some sort of API or list of all availabe methods/functions that can be used in plugin development.
Functions like PrintToChat or GameManager.server.CreateEntity() are nowhere listed in Oxide API(there are more or less only hooks.
I was googling a lot and found only one solution: to decompile dll-s to find those methods. But since there are hundreds of .cs files, this is really time consuming.
Does there exist any documentation for this?
Best thanks!
Solved List of all available methods and functions?
Discussion in 'Rust Development' started by Weedhopper, May 13, 2018.
-
There aren't hundreds of .cs files, you need only a few really.
Here's a guide: C# plugin development guide and advice dump -
Thanks! Well, I decompiled Assembly-CSharp.dll and there were a few hundred cs files, but most of them really contained just some data and settings.
-
Wulf Community Admin
Everything that Oxide provides can be found in our Docs and our GitHub. The rest is just game methods and such, which you can see by decompiling the game, through that isn’t really an API, just the game.