Please show me the direction to the documentation/description for BaseChairSolved

Hello,
I'm preparing my second plugin and I need to better understand to methods which I can use with. For example BaseChair, which I need to use now.
Is there any documentation? It took a long time to find methods for BasePlayer (name,id,etc) from other plugins. But I didn't find anything for for example BaseChair class. Can anyone please advise me where to find it?

Thank you very much W

The uMod website does not document internals of Rust such as BaseChair. The best way to get the info you need is to decompile the game assemblies to read the source code. This is the approach most devs use if they are going to make anything significant.

The way to do this is to install a local Rust server, install Oxide on top of it, then open Assembly-CSharp.dll (somewhere under the Managed folder, can't remember off the top of my head) in a decompiler program such as ILSpy, DnSpy or JustDecompile.

Yes! That's exactly the right advice! :-) Thank you very much again and I'm going to try :-)

Locked automatically