For some reason ThunderHooves (The Level) is not restricting any flag other than the basic one so it allows us to use flags on this level. Flags like the Dynamic one.
Here is my code:
// Move right, to the oasis.
// Build a "fence" above or below when you see a yak.
while(true) {
var green = hero.findFlag("green");
var black = hero.findFlag("black");
if (green) {
hero.pickUpFlag(green);
hero.buildXY("fence", green.pos.x,green.pos.y);
}
if (black) {
hero.pickUpFlag(black);
}
}
The code still works if you time it right. I submitted the code and it worked. It gave me gems and everything. I redid the level the proper way and erased the Ctrl C of my old code just now by Ctrl C-ing an L.
Please Fix This!