Reply to Re: random talking issue
If you don't have an account, just leave the password field blank.
int &rndme random(4,0)
This is missing stuff

int &rndme; &rndme = random(4,0);
This would work best. You can do it in one line, but I think it's better practice (in Dink) to declare it seperately because you can't redeclare a variable twice.
EDIT: ARGH! SPARROW!