Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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

I can't understand what you mean by that

You think I'm some kind of computer scientist?

i want to do this with itch.io mods too, but it says

"Uncaught ReferenceError: vm is not defined at <anonymous>:1:1", what do i do here?

nevermind