The Dink Network

Reply to Re: Goto

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
June 9th 2003, 10:43 AM
wizardb.gif
Phoenix
Peasant He/Him Norway
Back from the ashes 
None of you has done it right (at least not in accordance with documentation).

you can do

if (&one == 1)
say("Wah", 1);

but not

if (&one == 1) say("Wah", 1);
or
if (&one == 1) { say("Wah", 1); }

also notice that you can only have one command if you do it this way, so

if (&one == 1)
say("Wah", 1);

is valid, but

if (&one == 1)
say("Wah", 1);
say("Wah again", 1);

is not. In that case, you must do

if (&one == 1)
{
say("Wah", 1);
say("Wah again", 1);
}

There you go. The really dinky way of doing it.