Reply to Re: Script Problem and some questions.
If you don't have an account, just leave the password field blank.
Please note that as a rule of the thumb local variable does not survive screen changes. So you will continue to get the magic every time you leave the screen and ask for it again. Also note that in the void talk(void) both the &gimme == 1 and &gimme == 2 will be executed. Perhaps this is intentional, but I thought I'd just remind you.
As for your problem, replace this:
with this:
Procedures such as void talk, void main or void hit should not have a semicolon!

As for your problem, replace this:
void talk(void);
with this:
void talk(void)
Procedures such as void talk, void main or void hit should not have a semicolon!