Ok then...
Well, my original suggestion was to do this:
Code:
ffc script smurf{
void run() {
if(Link->Item[17]) Trace(1); else Trace(0);
Link->Item[17] = true;
if(Link->Item[17]) Trace(1); else Trace(0);
Link->Item[18] = false;
Link->Item[91] = false;
Link->Item[143] = true;
}
}
Go into the room, leave it, then go back in. Then, check allegro.log. You should see a few lines that should look like this, if the script is working:
Originally Posted by
allegro.log
0
1
1
1
If it isn't, it'll be either four zeroes, or more likely, nothing.