1. Hey guys, I'm interesting in making plugins, does anyone have a good place to start?
    [DOUBLEPOST=1466743089][/DOUBLEPOST]@Calytic helped me a bit, just curious if there is a list of hooks or something to mess around.
     
  2. Thanks guys.
    [DOUBLEPOST=1466807877][/DOUBLEPOST]So would this be correct?
    Code:
    void OnPlayerRespawn(BasePlayer player)
    {
    SendReply("Maybe don't die this time.");
    }
    
     
  3. Code:
    void OnPlayerRespawn(BasePlayer player)
    {
    player.ChatMessage("Maybe don't die this time.");
    }
     
  4. Thanks
     
  5. Wulf

    Wulf Community Admin

    SendReply actually exists too, as do other options such as PrintToChat and the Reply/Message from the Covalence API too.
     
  6. Covalence API?
     
  7. Wulf

    Wulf Community Admin

    WIP universal API that most of the Oxide-supported games share. The plugins under the Universal Plugins section all use it.
     
  8. Thanks @Wulf :)
    [DOUBLEPOST=1466825131][/DOUBLEPOST]I'm willing to pay someone to show me more about writing plugins, I don't need to have someone write a plugin through me just I want to learn more :)
     
  9. i use:
    Code:
    void OnPlayerRespawn(BasePlayer player)
    {
    SendReply(player, "Maybe don't die this time.");
    }
    
     
  10. Yeah I noticed Reneb using that.