The Dink Network

Reply to Re: .C

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:
 
 
August 13th 2007, 12:00 PM
slimeb.gif
DaVince
Peasant He/Him Netherlands
Olde Time Dinkere 
Simple, you made typos:

unfreez(1) should be unfreeze(1);
if(&result2==) should be if (&result == 2)
You forgot a bunch of ;s.

You only need to unfreeze once, and that's after all conditions.

Reversing the order of checking things (if 4, then 3, then 2, then 1), or using "else if" (I'm not sure if this works in Dink) will make sure that it runs an event only once without much problems, or you might get the problem of it going through ALL conditions. You should fix the errors in your script first though.