Change
public function leaderCommand(toks) to
(cmd) or something, and then immediately after, do:
PHP Code:
temp.toks = temp.cmd.tokenize();
Strings don't tokenize themselves; in your script, temp.toks is the full chat string, not a tokenized array from
tokenize();.