ℹ️ You can use the console to move yourself to the finish line. (Credits to GENiEBEN for finding the console.) If you do this for the first 35 levels you will get all but one achievement. The last achievement for completing the game is ⚠️ broken, so no need to play the last 5 levels (36-40).
🏆 Start a new game, start level 1 and then open console/inspector with F12.
🏆 Toggle to "Console" in the inspector, and paste the following command while being in a level. This will put you just before the finish line (layoutWidth * 0.995 means at 99,5% completion of the level).
(function() {
var runtime = cr_getC2Runtime();
var layoutWidth = runtime.running_layout.width;
var teleportX = layoutWidth * 0.995;
var playerType = runtime.types_by_index.find(t => t.name === "t10" || t.behaviors.some(b => b.behavior instanceof cr.behaviors.Platform));
if (playerType && playerType.instances[0]) {
var player = playerType.instances[0];
player.x = teleportX;
player.y -= 50;
var p = player.behavior_insts.find(b => b.behavior instanceof cr.behaviors.Platform);
if (p) {
p.dx = 0;
p.dy = 0;
}
}
})();🏆 Repeat for the next 35 levels to get all working achievements, then run the following code for the final achievement.
var r = cr_getC2Runtime();
r.eventsheets['end'] = r.eventsheets['steam'];
r.changelayout = r.layouts['end'];
If the game doesn't download any files, use depot: download_depot 1379840 1379841 2818777715872217438
Cheese strategy provided by HD
Hi Dog (level skip) and Bobogoobo (achievement fix).