For my own learning purposes, where is Oxide finding information about the various Rust classes that it can hook into? Is Rust providing its source code, or are you looking at Unity Framework documentation, or where would be a good place to start?
Any help would be very much appreciated.
Thanks,
Jay
Finding Rust functions
Discussion in 'Rust Development' started by Jaykrog, Feb 28, 2015.
-
Wulf Community Admin
For Oxide hooks, see http://docs.oxidemod.org/.
For Rust functions, use a decompiler such as JustDecompile and look at the Assembly-CSharp.dll. -
Download: http://www.telerik.com/products/decompiler.aspx
Decompile Assembly-CSharp.dll inside your rust RustDedicated_Data\Managed directory.
That is all we are doing -
Exactly what I was looking for - thanks guys.