Cheese strat
š§ š§ š§
Start first level and open console using F12. First, paste the following:
Then, use the following command to move the mouse (you) and every cheese on the level to the exit. Lastly, tap one of the arrow keys to register movement in order to collect the cheese and exit the level. Repeat for every level.
{
const player = r.types.t25.n[0];
const cheeses = r.types.t26.n;
const goal = r.types.t27.n[0];
if (player && goal) {
if (cheeses) {
cheeses.forEach(cheese => {
cheese.x = goal.x;
cheese.y = goal.y;
});
}
player.x = goal.x;
player.y = goal.y;
}
}Credits
š§Cheese strategy provided by HD
Hi Dog.