HTML Magic World of Bimbo [v0.08] [DoctorBimbo/Adn700]

2.90 star(s) 10 Votes

Arkhost

New Member
Aug 27, 2023
1
0
68
What AI is used to make this? the itch page is gone and i cant fine anything elsewhere thats not behind a paywall.
 

Fazel

Member
Jul 20, 2017
156
173
170
One of the few games that actually uses AI well.
So happy to see it growing! Keep up the good work :)
 

jb88

Newbie
Jan 14, 2018
25
4
156
Used HTML games in MAC previously, but this time the image/sound files don't display or play during the game play in chrome. Am I an idiot, what am I missing? The files are in the same folder as the link, not sure if matters.
 

TylerDurdenAZ

New Member
Jun 2, 2021
10
20
118
Used HTML games in MAC previously, but this time the image/sound files don't display or play during the game play in chrome. Am I an idiot, what am I missing? The files are in the same folder as the link, not sure if matters.
Same issue here
 

bidlocat0

Newbie
Sep 27, 2019
32
85
173
You scrip not work i clt c and clt v on Tampermonkey add scrip and is say is ok and not work
I've just checked this script, and it works fine in both Edge and Firefox. (before that, I also thoroughly tested the script, otherwise I would not have sent it)
Open the developer tools by pressing the F12 key and go to the "Console" while refreshing the page, while on this mini-game, and if this message "Game active, slowing down" appears in the "Console", therefore the script works and performs its functions. And you should just slow down this mini-game even more using the variable that is written in this script.
JavaScript:
const SLOW_FACTOR = 0.3;
Instead of 0.3, set your number, for example - 0.1
 

erogeplayer

Newbie
Jan 26, 2018
18
11
113
Are you peoples happy ? really happy, i mean ?
do you all remembrer when game use to mean something ? when there was real art, NOT this AI Slop ? Because I do !
 

Nussy

New Member
Jun 7, 2017
1
1
95
Unlike almost all the other games, I have to say: Sorry, I think the music is fantastic, especially the song in the village.
 
  • Like
Reactions: Royal777

cooperdk

Engaged Member
Jul 23, 2017
3,753
5,550
714
What AI was used to make this?
A combination of FLUX or QWEN Image (for the generation of the basic pictures) and WAN2.1/2.2 for the video generation.
Likely with ComfyUI as the tool.
This is actually not hard, but it requires a bit more than a RTX 3060 (I can do it with my 5060 16GB).
 

cooperdk

Engaged Member
Jul 23, 2017
3,753
5,550
714
Are you peoples happy ? really happy, i mean ?
do you all remembrer when game use to mean something ? when there was real art, NOT this AI Slop ? Because I do !
You mean back when people generated screenshots with the fugly Illusion graphics? Which was not any fucking better than AI.

Fact is, AI does require artistic skills ... it's not just click and run. Which Illusion screenshots is.
AI generation is somewhere between screenshots from other games and actually drawing yourself...

...but you do not draw photorealistic clips like in this game. There is no other way to do it...

- SO... what would you suggest? Crappy Illusion shit, or this?
 

Shas'O

Member
Feb 3, 2018
311
228
228
You mean back when people generated screenshots with the fugly Illusion graphics? Which was not any fucking better than AI.

Fact is, AI does require artistic skills ... it's not just click and run. Which Illusion screenshots is.
AI generation is somewhere between screenshots from other games and actually drawing yourself...

...but you do not draw photorealistic clips like in this game. There is no other way to do it...

- SO... what would you suggest? Crappy Illusion shit, or this?
You step out of line smearing shit in Illusion's name, but I do agree the 3dcg genre require ai cg to increase the variety a bit
Right now it's mostly Illusion's game engines or Unreal, sometimes Unity which is starting to look boring
 

abinath

Newbie
Nov 27, 2017
16
5
30
mini-game is way too hard for me. I tried the speed script (tampermonkey) and editing the .html (both var currentspeed and speedseed, individually and seperately) but nothing worked.
It's def a skill issue as I'm SO bad at those types of mini-games.
Other then that its a great game.
 

bidlocat0

Newbie
Sep 27, 2019
32
85
173
I tried the speed script (tampermonkey)
Have you tried changing the number in my script?
JSON:
const SLOW_FACTOR = 0.3;
and editing the .html (both var currentspeed and speedseed, individually and seperately) but nothing worked.
My fault, I should have checked this line first before posting it. Here is a really working way to slow down the game in the installed version, but this will not work in the web version, for a very simple reason - the value will be reset due to verification.
JSON:
    function startCursorMovement() {
        if (cursorMoving) return;
        cursorMoving = true;
      
        const cursor = $('#planting-cursor');
      
        cursorInterval = setInterval(() => {
            if (!cursorMoving) {
                clearInterval(cursorInterval);
                return;
            }
          
            cursorPosition += cursorDirection * 6;
          
            if (cursorPosition >= 94) {
                cursorPosition = 94;
                cursorDirection = -1;
            } else if (cursorPosition <= 0) {
                cursorPosition = 0;
                cursorDirection = 1;
            }
          
            cursor.css('left', cursorPosition + '%');
          
            // Update state variables
            variables().cursorPosition = cursorPosition;
            variables().cursorDirection = cursorDirection;
        }, 20);
    }
You will need to change the number in cursorPosition += cursorDirection * 6; The lower the number, the slower the slider will move in the mini-game.

UPD: I have updated the script and made it universal, both for the web version and for the local version. But there is one thing, if you play in Chromium/Chrome browsers, you will need to go to the permissions settings, and select Tampermonkey, and find "Allow access to file URLs" there, and temporarily allow it. If you do not do this, the script itself will not be able to start and work. As for Firefox, it doesn't have that, and the script starts working immediately.
 
Last edited:
  • Like
Reactions: abinath and DanST

erogeplayer

Newbie
Jan 26, 2018
18
11
113
You mean back when people generated screenshots with the fugly Illusion graphics? Which was not any fucking better than AI.

Fact is, AI does require artistic skills ... it's not just click and run. Which Illusion screenshots is.
AI generation is somewhere between screenshots from other games and actually drawing yourself...

...but you do not draw photorealistic clips like in this game. There is no other way to do it...

- SO... what would you suggest? Crappy Illusion shit, or this?

Look, i don't talk about shitty 3d old engines or whatever. i couldn't care less. what i'm talking about is ero games in which a person drew stuff, like Claire's quest, summertime saga, academy 34...
You see i'm not an anti, far from it, but some stuff lately are just quick made slop and i don't like it; that's all !
 

sock_puppet

Newbie
Jun 30, 2025
19
31
32
Look, i don't talk about shitty 3d old engines or whatever. i couldn't care less. what i'm talking about is ero games in which a person drew stuff, like Claire's quest, summertime saga, academy 34...
You see i'm not an anti, far from it, but some stuff lately are just quick made slop and i don't like it; that's all !
There's no one forcing you to play this here, the games you like still exist and will continue to be made. You're just brooding over something that just has nothing to do with you instead of going enjoy the things you like.
Be better.
 
2.90 star(s) 10 Votes