๐ Start level 1, kill the first enemy, and then jump off the platform for the first two achievements.
๐ Press F12 and enter this into the console to get 50 coins:
var runtime = cr_getC2Runtime();
var coinVar = runtime.all_global_vars.find(v => v.name === "total_coins");
if (coinVar) coinVar.data = 50;
๐ Then, run this command repeatedly to finish all levels:
var runtime = cr_getC2Runtime();
var currentIndex = runtime.layouts_by_index.indexOf(runtime.running_layout);
if (currentIndex < runtime.layouts_by_index.length - 1) {
runtime.changelayout = runtime.layouts_by_index[currentIndex + 1];
}
๐ To get the remaining two achievements for the different endings, run this command (replace "Finale_1" with "Finale_2" for the second one):
var runtime = cr_getC2Runtime();
runtime.changelayout = runtime.layouts["Finale_1"];