The Dink Network

Reply to Re: Visions problem: Begone, I don't believe in you!

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 8th 2011, 03:01 PM
pillbug.gif
Pillbug
Peasant He/Him United States
Love! True love! 
I actually included that in my tutorial. If you use load_screen(); and draw_screen();, you can change visions while on that screen.

For example, you could have a normal vision script attached to the screen you're on:
void main(void)
{
if(&story == 0)
{
&vision = 0;
}

if(&story == 1)
{
&vision = 1;
}

}


And you could attach this script to a sprite:
void talk(void)
{
say_stop("Appear, magical Vision 1 sprite!",¤t_sprite);
&story += 1;
load_screen(your screen);
draw_screen(your screen);
}