1. Hello
    I want when a player uses the following command:
    /do yes
    His message will appear in a different color in chat (with his name):
    yes
    plz help me :)
     
  2. Wulf

    Wulf Community Admin

    Are you wanting a plugin or are you asking how to do it? The Docs and existing plugins have examples of how to make commands.
     
  3. Yes, but I'm starter And I dont know how to reply the user's message with his name's
    Can you explain the way to make this plugin?
     
  4. Code:
    [ChatCommand("do")]
    private void DoCmd(BasePlayer player, string command, string[] args)
    {
    SendReply(player, $"<color=purple>yes {player.displayName}</color>");
    }
    
     
  5. Thank u, But I want, reply player message -
    Example:
    /do "player message"
    And also show her message in chat (for everyone).
     
    Last edited by a moderator: Apr 5, 2018
  6. I want, reply player messages -
    Example:
    /do "player message"
    show:
    "player name"+"player message"
    And also show her message in chat (for everyone). can u help me?
     
  7. Wulf

    Wulf Community Admin

    Look at Easy Broadcast and Better Say Command
     
  8. no, just players
     
  9. Can u Help me?
     
  10. Code:
    [ChatCommand("do")]
    private void DoCmd(BasePlayer player, string command, string[] args)
    {
    SendReply(player, $"{player.displayName}:  <color=purple>yes (({player.displayName}))</color>");
    }
    
     
  11. I want, reply player messages -
    Example:
    /do "player message"
    show:
    "player name"+"player message"
     
  12. Add me on Discord Sonny-Boi#0768
     
  13. Do you have team speak?