โน๏ธ You can use the console to move yourself to the finish line. If you do this for the first 35 levels you will get all but one achievement.
๐ 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'];