I'm just trying to make a script that gives Link some items and takes some away when he enters the screen. But the script doesn't work. It compiles fine, but nothing happens. Here's the script:
Code:
ffc script item{
     void run() {
          Link->Item[17] = true;
          Link->Item[18] = false;
          Link->Item[91] = false;
          Link->Item[143] = true;
     }
}
What am I doing wrong?