so i have a script, and here is what it SHOULD do: if you stand on it, have 3 or more triforce pieces (not the first 3 specifically, since this is like a banjo-kazooie or mario 64 style thing where you can get them in any order.) it teleports you to another screen. here is my script:
ffc script TriforceWarp{
void run(int map, int scr){
while(true){
if ( LinkCollision(this) && NumTriforcePieces() >= 3 ) Link->PitWarp(map,scr);
Waitframe();
}
}
}
does anyone have an idea why it doesnt work?
Edited by lincolnpepper, 05 June 2016 - 11:31 AM.


This topic is locked
