Solved Help me with first plugin!

Discussion in 'Rust Development' started by not777, Jan 27, 2016.

  1. Hi everyone!
    I need to do some things with players ping.
    I try to read Docs and find Hooks I need, but dont see any reference about "BasePlayer player", "PlayerSession session" and more. Where I can find documentation about object models, methods, else?
    Thanks.
     
  2. And? Where is description about Odject models ? How can I use "BasePlayer player" or else?
     
    Last edited by a moderator: Jan 27, 2016
  3. BasePlayer and such are all class within Rust's Assembly-CSharp.dll, to find out more about the fields, properties, methods,... that these classes make available you use a decompiler to view the Assembly-CSharp.dll.

    There are various decompilers available to the public, free and paid. Telerik JustDecompiler, .NET Reflector, ILSpy, and probably many others.
     
  4. Oh, thank you for solving!
    I will try to understand and help for beginners;)