Create and Fuck your AI Slut -70% OFF
x
4.90 star(s) 189 Votes

Duckson1298

Newbie
Sep 24, 2023
98
200
87
[CITAÇÃO="Bunduru, postagem: 18107905, membro: 1915454"]
Sim... Não posso piratear isso com uma consciência (um pouco) boa.

Esta última atualização foi fantástica e eu ainda adoro o estilo de arte e os pequenos detalhes da animação, que eu sei que dão muito trabalho.

Acabei de me inscrever no Patreon e espero ver esse jogo se desenvolver ainda mais, pois acho que ele é uma verdadeira joia.

Atenciosamente.
[/CITAR]
Blender report on chapter 6 just came out. If you subscribed to his Patreon, can you tell us what's in the report?
 

youraccount69

I'm like a karate chop
Donor
Dec 30, 2020
8,734
3,989
436
Hooked-0.5.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.​
 

Finuee

Gorehound Gal
Game Developer
Sep 14, 2022
1,083
6,965
589
Yeah... I can't pirate this with a (somewhat) good consciousness.

This last update was fantastic and I still adore the artstyle and the small details of animation that I know is a lot of work.

Just subbed as of now on patreon and hope to see this game develop further, as I think it's a true gem.

Kind regards.
You, sir, are a person of morals. (y)
 

CreepingLine

New Member
Dec 14, 2021
6
23
79
Yeah, I'm officially Hooked *badum-ts*

Just browsing what's new and updated, no high hopes, but Hooked had an "Animated" tag and model designs stood out among the myriad of lifeless 3D poser VNs. I sighed, tired but deciding to give it a chance, fully expecting to delete the game after I see copy/paste animations, a bunch of static face expressions and comically oversized body parts not featured in the promo pics or whatever. The author's name didn't even register. At first.

Somehow this game made me want to see all the girls other than the alt chick. Bravo. Oh, and the rest of the content too. Bumbling protag, decent jokes, lighthearted dialogue that's not cringe, stuff happens, animations are good and full of charm (please don't chill on them too much sir BlenderKnight, they really made it stand out with subtlety and life).

This, ladies and gents, is a gem. BlenderKnight deserves my money, and I too cannot pirate it in good conscience.
 

xmehmehmehx

New Member
May 22, 2018
13
28
109
10/10 story, art and UI.

Also here's a small gallery unlock that should work for future versions too.
Copy paste into a file named whatever_ren.py under game/

Python:
"""renpy
init python:
"""

import re
from pathlib import Path

config.developer = True


def main():
    ulog = []

    unlock(ulog)
    dump_log(ulog)


def unlock(ulog):
    fp_variables = Path("./game/variables.rpy")

    # defaults aren't available to init scripts so find the relevant python code and parse it manually ¯\_(ツ)_/¯
    scenesToReplay_raw = (
        re.search(
            r"default scenesToReplay = \[(.*?)\]",
            fp_variables.read_text(),
            re.MULTILINE | re.DOTALL,
        )
        .group(1)
        .strip()
    )
    ulog.append(scenesToReplay_raw)

    persistent.UnlockedScenes = []
    for idx, ln in enumerate(scenesToReplay_raw.split("\n")):
        ulog.append([idx, ln])

        id = re.search(r'ID="(.*?)",', ln).group(1)
        label = re.search(r'label="(.*?)"', ln).group(1)

        ulog.append([id, label])

        persistent.UnlockedScenes.append(id)
        renpy.mark_label_seen(label)


def dump_log(ulog):
    lines = [str(x) for x in ulog]
    log_text = "\n".join(lines)
    Path("./unlock.log").write_text(log_text)


main()
 
4.90 star(s) 189 Votes