1. I want text I write to console to write to chat for example test 1 2 3 would printtochat 1 2 3
    How would I go about doing that? Thanks. :)
     
  2. Wulf

    Wulf Community Admin

    I don't have in in front of me, but generally something like:
    Code:
    PrintToChat(string.Join(" ", args.ToArray());
    or

    Code:
    PrintToChat($"{args[0]} {args[1]} {args[2]}")
    ^ Check args length first to make sure they exist with this. This is good for integrating into a message.

    There are other methods too, some of which I believe Rust even has natively such as args.FullString and such.
     
  3. Thanks Wulf. arg.FullString works great. :)