Does anybody know how to get the sb3 file of an unremixable project on cocrea?
Viewing post in Incredibox Games SB3 files comments
find the mod on sprunkin or another sprunki website
(eg sprunksomnia)
wait for it to laod
then go to inspect element, find the source which is wowtbc.net/insertwebnamehere/insertmodname here, then paste go to console in inspect element on THAT source website
then paste this into the console:
vm.saveProjectSb3().then(blob => {
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = 'project.sb3';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
});
yw if this helped
Yo dude, so i have a question for ya.
I tried the code on plain htmls from itch and was able to get sprunked FV's PMP, hoever i keep trying with other mods (Using the html, example is https://html-classic.itch.zone/html/14853124/index.html), and for some reason it gives me the file with the sounds and all, however its missing all the SVGs/vectors. Do u know how to fix this? kept trying to find solutions but couldnt.