Reading user data after ChatCommand
I'm looking to build a plugin that reads user data after the chat command... For example if I had something where a player could report another player for cheating...

/report BlackHawk

the chat command would just be [ChatCommand("report")] but then how would i get it to read the next block of text?

Even if you have a simple plugin example i could reference. The only one I could think of was grid teleport which is a bit beyond my skill level and understanding.
Chat coommand has argumets - string[] type. just make cycle and += every arg

Merged post
Ex:
var a = "";

foreach (var arg in args)
{
    a += arg;
}

PrintError(arg);​