Solved Color Text

Discussion in 'Rust Development' started by cookiecool, Feb 5, 2018.

  1. When you send a player a chatmessage how do you make it colored?
     
  2. By html color tags
     
  3. So with #4286f4 what would you do? #4286f4 + "message"?
     
  4. <color=red>message</color>
    [DOUBLEPOST=1517839733][/DOUBLEPOST]enjoy - Oxide API for Rust
     
  5. ohh ok thanks :D. You could do that with hex coorrect? So for red would it be player.ChatMessage(<color=red>"You do not have permission to this command!"</color>);
     
  6. player.ChatMessage("<color=red>You do not have permission to this command!</color>"); - Must be that
    Make solved