RPGM Succum Brewery [v0.4.4] [LimeJuiceGames]

4.30 star(s) 128 Votes
Aug 23, 2024
192
119
87
SuccumBrewery-0.4.4
You don't have permission to view the spoiler content. Log in or register now.
rpdl torrents are unaffiliated with F95Zone and the game developer.
Please note that we do not provide support for games.
For torrent-related issues use here, or join us on !
, . Downloading issues? Look here.​
could we get a changelog?
 

Nymphonomicon

Well-Known Member
Jan 10, 2019
1,141
852
328
So is it just 1 big new scene in the update?
I'm not sure, but I think technically two other scenes that setup the big scene were added too.
The ones where the pictures are hidden and then found. I'm fairly certain those scenes weren't present the last time I played prior to this update.
 
  • Like
Reactions: RapidMagic0705

Incendax

Newbie
Dec 20, 2019
73
116
105
Dialog in the new scene feels pretty underwhelming compared to many other scenes. It could use a quick re-write. Would only take an hour or two, tops.
 

NymphoRose

New Member
Sep 19, 2025
2
9
3
Auto-Perfect Fill Bartender

Works for all drink types and the “Serving Tables” minigame.

1. Open www/js/plugins.js
2. Find this entry:
JSON:
{"name":"GraphicsRenderFix","status":true,"description":"","parameters":{}}
3. Replace it with this (adds the new plugin after the existing one):
JSON:
{"name":"GraphicsRenderFix","status":true,"description":"","parameters":{}},
{"name":"AutoPerfectBartender","status":true,"description":"","parameters":{}}
4. Create a new file at www/js/plugins/AutoPerfectBartender.js and paste the code below.
5. Save the file and restart the game.

JavaScript:
/*:
* @target MZ
* @plugindesc Always pass bartender QTE success checks without skipping content. Leaves waitress hazards (Tripped! / Groped!) untouched.
* @author Groomtinger (+ helper)
*/

(() => {
  'use strict';

  const QTE_ACTIVE_SWITCH    = 3;

  const VAR_MART_POS   = 6;   // Martini cursor offset
  const VAR_MART_STAGE = 27;  // Martini tally 0..3

  const PERFECT_MART_POS   = 0;  // centered, inside -130..130
  const PERFECT_MART_STAGE = 3;  // perfect result branch

  const _gvValue = Game_Variables.prototype.value;
  Game_Variables.prototype.value = function(id) {
    const real = _gvValue.call(this, id);

    if (id === VAR_MART_POS)   return PERFECT_MART_POS;
    if (id === VAR_MART_STAGE) return PERFECT_MART_STAGE;

    return real;
  };

  const PHRASES_PERFECT = [
    "Perfect Fill"
  ];

  function deepClone(o){ return JSON.parse(JSON.stringify(o)); }

  function isExactSingleLineShowTextAt(list, i, phrases) {
    const cmd = list[i];
    if (!cmd || cmd.code !== 401) return false;
    const txt = cmd.parameters?.[0];
    if (typeof txt !== 'string' || !phrases.includes(txt)) return false;
    if (!(i > 0 && list[i - 1]?.code === 101)) return false;
    if (i + 1 < list.length && list[i + 1]?.code === 401) return false;
    return true;
  }

  function findOwningIfIndex(list, i) {
    const needIndent = Math.max(0, (list[i]?.indent ?? 0) - 1);
    for (let j = i - 1; j >= 0; j--) {
      const c = list[j];
      if (!c) continue;
      if (c.code === 111 && c.indent === needIndent) return j;
      if (c.indent < needIndent) break;
    }
    return -1;
  }

  function alreadyPatched(cev) {
    const first = cev?.list?.[0];
    return first && first.code === 108 && String(first.parameters?.[0]||'').startsWith('AUTO PERFECT (rewrite)');
  }

  function patchCommonEvent(cev) {
    if (!cev || !Array.isArray(cev.list) || alreadyPatched(cev)) return false;

    let changed = false;
    const L = cev.list;

    for (let i = 0; i < L.length; i++) {
      if (!isExactSingleLineShowTextAt(L, i, PHRASES_PERFECT)) continue;

      const ifIdx = findOwningIfIndex(L, i);
      if (ifIdx < 0) continue;

      const branch = L[ifIdx];
      if (branch && branch.code === 111) {
        const b2 = deepClone(branch);
        b2.parameters = [12, "true"];
        L[ifIdx] = b2;
        changed = true;
      }
    }

    if (changed) {
      L.unshift({ code:108, indent:0, parameters:['AUTO PERFECT (rewrite): perfect-branch condition set to true'] });
    }
    return changed;
  }

  const _DataManager_isDatabaseLoaded = DataManager.isDatabaseLoaded;
  DataManager.isDatabaseLoaded = function() {
    if (!_DataManager_isDatabaseLoaded.call(this)) return false;

    if (!DataManager._autoPerfectRewriteDone) {
      DataManager._autoPerfectRewriteDone = true;
      if (Array.isArray($dataCommonEvents)) {
        for (let i = 1; i < $dataCommonEvents.length; i++) {
          try { patchCommonEvent($dataCommonEvents[i]); } catch(e){ console.error(e); }
        }
      }
    }
    return true;
  };
})();
Dumb question but can you upload both files? Every time I try this, I fuck something up.
 

ImNotHereRN

New Member
Jun 22, 2023
6
0
70
How do you save your game on mac? it just makes a loud chime when I press a new save file and i have to restart every time I open the game.
 

jakekiko

Newbie
Jun 25, 2021
82
106
74
Man I gotta agree with what someone said recently, this art ain't it. The gangbang scene just didn't look good, and didn't seem to have very good angles. Just the shapes and style of everything seems wrong. Looked so good before.
 

deadxak

Member
Jun 7, 2017
186
109
163
Well, the new update turned out to be a bit, um... short. I'm still waiting for the brainwashing of all the girls that was promised at the very beginning. The addition of a strip pole and private rooms. And as promised, girls can be sent to these jobs.
 

LimeJuiceGames

Member
Game Developer
Sep 24, 2022
100
1,762
242
Well, the new update turned out to be a bit, um... short. I'm still waiting for the brainwashing of all the girls that was promised at the very beginning. The addition of a strip pole and private rooms. And as promised, girls can be sent to these jobs.
It's just me and the one artist. We are slowly filling everything out but it will eventually get there. I see another year and a half of development before all the scenes planned can be added.
 

Syrinfox

Newbie
Feb 9, 2020
62
75
159
Wow the first time I played this I had no idea how to get the gym scenes and now after playing this update I have figured out that there was a shovel where you get the arcade machine that you used to clear out trash. I kind of got too used to every other interact-able thing having either the stars, the purplish little circles, a heart, or big orange circle highlighting them, didn't think to click things that weren't.
 
  • Like
Reactions: BadIdea102

deadxak

Member
Jun 7, 2017
186
109
163
It's just me and the one artist. We are slowly filling everything out but it will eventually get there. I see another year and a half of development before all the scenes planned can be added.
I hope my words weren't offensive. It's just that I'm so tired of projects that drag on for decades, with versions like 0.99.99.14.a.b.c, and so on. That's why I worry about every project that I like. Thank you for your response—it made me feel much lighter.
 

Nymphonomicon

Well-Known Member
Jan 10, 2019
1,141
852
328
It's just me and the one artist. We are slowly filling everything out but it will eventually get there. I see another year and a half of development before all the scenes planned can be added.
I appreciate your work and am hoping that furthering Alexa and May's training will be coming up soon.
 

LimeJuiceGames

Member
Game Developer
Sep 24, 2022
100
1,762
242
Wow the first time I played this I had no idea how to get the gym scenes and now after playing this update I have figured out that there was a shovel where you get the arcade machine that you used to clear out trash. I kind of got too used to every other interact-able thing having either the stars, the purplish little circles, a heart, or big orange circle highlighting them, didn't think to click things that weren't.
You make a good point. At first the sewer was just going to be a little side area for some endings, but I really enjoyed giving her some non-waitress things to do so I started adding content to the sewers. I should add something to mark the shovel or add some additional clues.
I hope my words weren't offensive. It's just that I'm so tired of projects that drag on for decades, with versions like 0.99.99.14.a.b.c, and so on. That's why I worry about every project that I like. Thank you for your response—it made me feel much lighter.
Man, I feel the same way. I want a game to end. I want this game to end. If I don't finish this game I can't make the other ideas floating around in my head. Also finishing the game means that Steam money. So I really must finish the game. But I also can't rush. I can say I'm more than 40% of the way done, but I'm giving myself that room to improve things. I still need to polish up the mini-games, add the strip club, and give the game a much better UI.
I appreciate your work and am hoping that furthering Alexa and May's training will be coming up soon.
May gets a scene in the next update. Alexa will be the last one to fall. I want her to witness what's happening around her knowing what's eventually coming for her.
 

slowparson

Active Member
May 30, 2017
833
571
219
Man I gotta agree with what someone said recently, this art ain't it. The gangbang scene just didn't look good, and didn't seem to have very good angles. Just the shapes and style of everything seems wrong. Looked so good before.
As much as I agree with how the new art can result in kind of weird body proportions (arms too skinny to climb out of that uncanny valley, let alone balance a tray of drinks!), the art for the new scene seems fine. Practically storyboarded.

Plotting seems kinda weird though, since the bar is still on the lounge stage and not the club stage, but I guess I shouldn't be surprised because the previous scene drop was full VR immersion for getting railed, not for dancing around a pole...
 

buzzslut

New Member
Feb 18, 2025
4
3
3
would really appreciate it if the springs area got a visual update....it looks too basic in comparison to what's show in the CG
 
  • Like
Reactions: Thecatbred

Tampan02

Newbie
Aug 11, 2018
82
46
81
what's the 'cool stuff' from sewer? i keep collecting but no one wants it..
and for visual update.... new Nora sprite when.. the cg from Aina masturbation looks good.
 
  • Like
Reactions: Thecatbred
Aug 23, 2024
192
119
87
id also like to add my concerns about the artwork. at first i actually thought the art overhaul might have been defensible, but the bad anatomy is worrying. i think it's pretty clear the majority of people like the old artwork better, since we agree it looked better. if that's not enough to go back to the old artwork idk what is
 
4.30 star(s) 128 Votes