outsider artisan

Developer of Succubus Stories.
Game Developer
Jun 14, 2020
367
633
> Debtor's prison
> Romance content
I'll pass. Cool that some story branches are wrapped up.
To be clear, this update includes both v0.15.0 (which was previously patron-exclusive) and v0.15.1, so it's a pretty huge update. It's actually the second largest update I've ever released.
What kind of transformation content is included? I've seen the tranformation tag, but nothing is explained.
It's mostly just futa->female and vice versa. There's some other stuff, but it's mostly low on the tf scale.
Will you include other languages at some point?
Probably not. It would be hard to do because the content and code are pretty mixed together unfortunately. A translator would need to be a programmer willing to learn about the game's engine and systems and willing to do a lot of work. Plus the game is almost 600,000 words long at this point.
 
  • Sad
Reactions: Birdnman993

outsider artisan

Developer of Succubus Stories.
Game Developer
Jun 14, 2020
367
633
游戏引擎是 rpgmv.v8 吗?为什么 mtool 不能翻译
The game is not made with RPG Maker. You can try the web browser version of the game in a modern web browser, and use your web browser's translation features. I use a lot of English idioms and expressions, though so YMMV.
 

asockchild

New Member
Jul 28, 2022
5
0
I got a full save and I can't go back into debt so I'm stuck in a limbo for Gerald's quest what do I do??? I accidentally got Charlotte to bail me out instead of getting auctioned
 

outsider artisan

Developer of Succubus Stories.
Game Developer
Jun 14, 2020
367
633
I got a full save and I can't go back into debt so I'm stuck in a limbo for Gerald's quest what do I do??? I accidentally got Charlotte to bail me out instead of getting auctioned
Good question lol. I didn't think of that. I guess I'll have to add a way for him to re-add the debt status.
 

sup3rbreakout

Member
Nov 10, 2020
114
137
??? What did you even download to think that? Patreon version gets one week of exclusivity on new updates, extra cosmetics, and a built-in cheat menu. That's it.
I think I must have by chance clicked every exclusive outfit but none of the others.
I guess If I could give you a tip, grouping the patreon outfits at the top/bottom would avoid that issue? It's pretty small issue looking at it now, but it felt pretty scummy at the time.
 

Valen_H

Newbie
Jan 28, 2019
41
18
I made a script to decode the game data back to twee format, in case anyone is interested in modding the game deeply.

Put this in the (browser) console, it will trigger a download of the game file.
Prefer to not use exe versions.

JavaScript:
//Decrypt Game:

game = Document.parseHTMLUnsafe(LZString.decompressFromBase64(jQuery("subc-data").text()));
passages = Array.from(game.querySelectorAll("subc-passage"));

gdata = passages.map(p => {
    const    ed    = ' ' + JSON.stringify({
        position:    p.getAttribute("position"),
        size:        p.getAttribute("size"),
    });
   
    return `:: ${p.getAttribute("name")}` + (p.hasAttribute("tags") ? (" [" + p.getAttribute("tags").trim() + ']') : "") + (ed ? ed : "") + '\n' + p.textContent + '\n';
}).join('\n');

function export_game(s = gdata) {
    const    g        = document.createElement("a"),
            data    = URL.createObjectURL(new Blob([ s ], { type: "text/html" }));
   
    g.href        = data;
    g.download    = document.title + ".twee";
    g.click();
   
    URL.revokeObjectURL(data);
   
    return g;
} //export_game

export_game();
 
  • Like
Reactions: fomi
4.30 star(s) 16 Votes