1. I have tried all the obvious ways, but I cant find a way how I can write messages in chat from the client console. For example, in GMod, you can do 'say "ASDF"' and that would print "ASDF" to the chat, is there an equivalent for Rust?
     
  2. Wulf

    Wulf Community Admin

    say "ASDF"

    Pretty sure you need to be owner or moderator to broadcast with that though.
     
  3. but that wont be sent to the server, only displayed to the player on the chat
    [DOUBLEPOST=1436927002][/DOUBLEPOST]The reason I want to do this is so I can run commands like "/help" from the console
     
  4. Wulf

    Wulf Community Admin

    Just add a console command natively to your plugin that uses the same functions as the chat command.
     
  5. Oh wow, had no idea that would work, you should probably update the docs to say that adding a "Console" command, adds not just a server-side console command, but also a client-side one. Thank you! :)