Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

VioletIzHere

3
Posts
1
Following
A member registered Jan 18, 2018

Recent community posts

(1 edit)

This is a pretty good game. I like that you can use JavaScript code. However, it's also really easy to trick the game when you're using code. For example, I could literally create a function whose purpose was to reduce a cell by a x and y value, then just spam the function until the entire puzzle was complete. However, I tended to spam functions with callbacks in a certain way. Here's an example (on level 6):

function forEverySecondOne(doSomething) {
    var i = 0;
    while (i < 10) {
        doSomething(i); i += 2;
    }
}

function forEverySingleOne(doSomethingElse) {
    var e = 0;
    while (i < 10) {
        doSomething(e); e++;
    }
}

forEverySingleOne(function(e) {
    forEverySecondOne(function(i) {
        ReduceCell(i, e);
    });
});

NOOO!!! BRING BACK THE TURTLE!!! I DEMAND A SEQUEL WHERE HE LEARNS THAT HE'S NOT IN A VIDEO GAME AFTER ALL!!!

Great game, though! Everyone should try to clear it, though it very difficult. A sequel would be cool.

I wasn't sure how to play the game at first...