The Dink Network

Reply to Re: Problemo again

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:
 
 
April 6th 2009, 08:58 AM
slayer.gif
rabidwolf9
Peasant He/Him United States
twitch.tv/rabidwolf9 
There is a bracket right before your if (&story == 4) statement that is unnecessary. You might also want to double check to see if your &story variable is the right value.

What I usually do is make a key script that will tell me all my variables at any given time. Something like this helps a lot.

//key-80.c "P"
void main ()
{
freeze(1);
choice_start();
"Story is &story"
choice_end();
unfreeze(1);
kill_this_task();
}