The Dink Network

Reply to Re: Bookshelf

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:
 
 
October 29th 2012, 12:05 PM
spike.gif
Your script says Dink should only unfreeze if the choice picked is number 4, so there's a problem. Just remove the
if(result== 4) [<-- missing an &]
{
}
check entirely, and only have unfreeze(1) there.

As for why the bookshelf won't say anything, it's probably your lack of spacing in the if check. Try writing it as
if(&result == 1)
or if it still doesn't work, as
if (&result == 1)


EDIT: You're also missing an underline in choice_start() and choice_end().