The Dink Network

changing vision

October 16th 2006, 12:22 AM
custom_robj.png
Robj
Jester He/Him Australia
You feed the madness, and it feeds on you. 
I have recently been trying to create my own Dmod but i am haveing trouble changing the vision, here is a copy of the script i'm using.

void main(void)
{
if(&story == 1)
{
&vision = 1;
move_stop(1, 2, 135, 1);
wait(200);
say_stop("blahblahblahblah", 1);
wait(200);
move_stop(1, 6, 509, 1);
wait(200);
say_stop("blahblahblahblah", 1);
sp_dir(1, 2);
wait(200);
unfreeze(1);
&story = 2;
}
}
October 16th 2006, 06:23 AM
custom_king.png
redink1
King He/Him United States bloop
A mother ducking wizard 
You can only change the vision in a script attached to the screen, called a base script.
October 16th 2006, 09:02 PM
custom_robj.png
Robj
Jester He/Him Australia
You feed the madness, and it feeds on you. 
Cool thanks for the help i got it working.