1. 1. How to write your plugin Oxide HurtWorld
    2. How to open Assembly-CSharp-firstpass.dll and why it is even needed!
    3.How to find hooks? Please help me my head hurts can not figure out how to create a plugin.
    Sorry for the language I'm Russian
     
  2. Wulf

    Wulf Community Admin

    The Docs link at the top shows the available hooks and basic examples. The Plugins section also contains numerous plugin examples.
     
  3. Here for example there is
    SetFlymode(player.Session);

    I can not find which is responsible for the jump. I want to make a double jump

    Apologize. I want to say that I need a hook (hooks) which are responsible for the jump.
     
    Last edited by a moderator: Apr 5, 2017
  4. Wulf

    Wulf Community Admin

    All of that would be in the Hurtworld game itself, so you'd need to get a .NET decompiler and look/search through the game's Assembly-CSharp.dll. We only document what Oxide provides, which are the hooks and helpers.
     
  5. Thanks, I installed TelerikJustDecompile and Assembly-CSharp.dll opened But can't understand where is hook responsible for jump

    I realized that I need, I need this (using System.Collections. Generic; using System.Reflection;) but I don't understand where this is
     
    Last edited by a moderator: Apr 5, 2017
  6. Wulf

    Wulf Community Admin

    I'd suggest getting familiar with C# basics and go from there.