Developing new plugins for Rust

So theres a plugin I want. Similar to an existing one but it affects other items. The dev of the other plugin didn't seem interested in making his do what I wanted, so I decided to make it myself.

Unfortunately the documenation that all existed over at the OxideMod website is no longer assessable (autoforwards here) so I can't find a source of data for entity lists, properties for those entities, etc.

Specifically I'm looking to modify the power output of the SmallGenerator and need to verify that I have the name and variables for that entity correct.

The old data was at docs.oxidemod.org/rust, and I can see that it still exists, unfortunately there is no equavalent for the same data on uMod that I've been able to find. Am I looking in the wrong place, or is this data no longer available?

Thanks!

Brax

None of that information was in the old docs, nor the new docs as it is from the game, not Oxide. You'd find that information in the game's DLLs and via exports from the game server itself.
In response to Wulf ():
None of that information was in the old docs, nor the new docs as it is from the game, not Oxide. Yo...
On the contrary, full item lists were on the Oxide site at: http://docs.oxidemod.org/rust/#item-list
In response to braxhusky ():
On the contrary, full item lists were on the Oxide site at: http://docs.oxidemod.org/rust/#item-list
That is an item list, not entity list, and is available in the Docs at the top link of this site as well.
https://umod.org/documentation/games/rust/definitions#items
In response to Wulf ():
That is an item list, not entity list, and is available in the Docs at the top link of this site as...

Thanks! Couldn't find that either!

Also, using this thread on the other site, I was able to find the info I wanted.

https://oxidemod.org/threads/c-plugin-development-guide-and-advice-dump.23738/

Should definitely do a quick 'getting the data you want' howto in the basic umod development guide, rather than just the simple hello world.


Thanks!

Brax