Quote:
Originally Posted by DustyPorViva
You don't have to tokenize the serveroptions staff list, it should be read as an array 
|
It doesn't

. One of Graal's stupid quirks.
PHP Code:
function onCreated() {
echo("without: " @ serveroptions.staff[0]);
echo("with: " @ serveroptions.staff.tokenize(",")[0]);
}
produces
Quote:
without: Clockwork,[FOUNDER],HoudiniMan,[DIRECTORS],Tigairius,Chompy,... (trimmed the rest off)
with: Clockwork
|