The Dink Network

Reply to Re: Talking

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:
 
 
May 7th 2005, 03:47 PM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
Well, you'll need to put the objects in vision 1 in this case. Then the variable controls when it'll display that vision. So if the knights are there when &story is 0, 1 and 2, you should make it if (&story <= 2). Or if they're only there when &story is 3, then you should make it if (&story == 3). Basically variables control the state of the game and when something happens, you need to change a variable to keep track of it. Usually &story is the main variable throughout the game but you can use other variables as well for subquests or other things that need to be tracked.