Ren'Py Abandoned Hot Advertising [v0.1.8] [Sweet Games Studios]

AlexaSky

Member
Jun 26, 2021
286
365
Also very annoyed by the slow text speed; while you can get an instant update by clicking a second time as it begins to crawl across the bottom, it is somewhat annoying.
It explains what's happening in this post
https://f95zone.to/threads/automaton-story-v0-0-16-angryfur.40065/post-4271038

For some bizarre reason this dev set cps manually for every line at 20. {cps=20}
That disables the user preferences for text speed. Manually changing it would mess up the English translation. Not sure if there is a way to disable the Text Tag

Edit: See if this breaks anything. Thank the uncensored fans for the patch code

Python:
### Hot Advertising
### Filter CPS Text Tag

init python:

    #  The callback.
    import re
    def smtf( text ):
        # Query if the CPS Text Tag is used.
        # Find all instances and filter them out.
        # Find the closing tag and filter that too.
        if text.count("{cps") > 0:
            cps_matches = re.findall("\{cps=\*?\d*\.?\d*\}", text)
            for cps_match in list(set(cps_matches)):
                text = text.replace(cps_match, "")
            text = text.replace("{/cps}", "")
        return text

    #  Tell Ren'py to use our function as callback.
    config.say_menu_text_filter = smtf
Is there any easier way to do this? Very likely as I finger banged my way through this :whistle:
Don't like it then do better and add some blackjack and hookers
 
Last edited:
Jan 7, 2021
202
263
It explains what's happening in this post
https://f95zone.to/threads/automaton-story-v0-0-16-angryfur.40065/post-4271038

For some bizarre reason this dev set cps manually for every line at 20. {cps=20}
That disables the user preferences for text speed. Manually changing it would mess up the English translation. Not sure if there is a way to disable the Text Tag

Edit: See if this breaks anything. Thank the uncensored fans for the patch code

Python:
### Hot Advertising
### Filter CPS Text Tag

init python:

    #  The callback.
    import re
    def smtf( text ):
        # Query if the CPS Text Tag is used.
        # Find all instances and filter them out.
        # Find the closing tag and filter that too.
        if text.count("{cps") > 0:
            cps_matches = re.findall("\{cps=\*?\d*\.?\d*\}", text)
            for cps_match in list(set(cps_matches)):
                text = text.replace(cps_match, "")
            text = text.replace("{/cps}", "")
        return text

    #  Tell Ren'py to use our function as callback.
    config.say_menu_text_filter = smtf
Is there any easier way to do this? Very likely as I finger banged my way through this :whistle:
Don't like it then do better and add some blackjack and hookers
You could have simplified that down to
Python:
### Hot Advertising
### Filter CPS Text Tag

init python:

    def cps(tag, argument, contents):
        return contents

    config.custom_text_tags["cps"] = cps
Override the Text Tag with a dummy one. Saves you having to parse through the text.
 

potato2125

New Member
Jul 13, 2021
1
0
[QUOTE = "rKnight, publicación: 6097149, miembro: 65613"]
"Decides dejar tu ciudad natal para buscar trabajo,
tu tía te convence de cambiar su sexo como parte de una campaña contra la contaminación." lol
[/CITA]
Xddd
 

bamachine

Well-Known Member
Nov 17, 2020
1,347
1,824
Wanted to like this but between the MC moobs, the pronoun issues plus other contextual errors and the crawling text speed, going to wait to see if this can get on the right track before sinking any time or money into it.
 
  • Like
Reactions: $@~ and sadfuck

Signtist

Member
Jun 8, 2017
257
623
Sounds like an interesting setting for a corruption game: an all-female staffed company with a righteous goal is failing, and the player comes in and slowly convinces them to use their sex appeal to gain support, only to eventually take over the company and turn it into a modeling/escort service instead. Given the tags, it seems that this game isn't going in that direction, though..
 
  • Like
Reactions: $@~

logros13

Newbie
Jan 17, 2018
59
76
Error when trying to access Cum Avenue

You don't have permission to view the spoiler content. Log in or register now.

Also the dark blue text is unreadable in many places where the background is gray/green/blue making it impossible to see what characters are saying half the time.
 

CMPunk434

Member
Nov 12, 2019
172
44
I know I'll beat a dead horse. But it's very annoying that very often you want to enter a room or other things you get an error message and you have to retract or quit the game.
 

dajunk12

Member
Mar 2, 2018
110
120
Number 1 recommendation: Make the text legible. The color used for the text on many of the backgrounds don't have enough contrast. Having a semi-transparent box behind the text can make it possible to have whatever color you want with enough contrast. Not having the background text box means you have to be careful there. The purple on blue in the subway in the beginning is particularly hard to read.
 

Vrijgeest

Engaged Member
Jun 16, 2019
3,332
3,170
The text is awful and so is the artwork. I gave up as you could not read it. The artwork is very primitive.
 

bigboxbarry

Member
Feb 3, 2018
304
278
no changelog? is there much content yet. not worth downloading for only a couple scenes otherwise
 

Wafflewaffuru

Active Member
Feb 10, 2021
741
1,358
Code:
I'm sorry, but an uncaught exception occurred.

While loading <'Image' u'desc5.png'>:
IOError: Couldn't find file 'desc5.png'.

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "tl/english/cont.rpyc", line 2152, in script
  File "renpy/ast.py", line 721, in execute
    renpy.exports.say(who, what, *args, **kwargs)
  File "renpy/exports.py", line 1419, in say
    who(what, *args, **kwargs)
  File "renpy/character.py", line 1249, in __call__
    self.do_display(who, what, cb_args=self.cb_args, dtt=dtt, **display_args)
  File "renpy/character.py", line 901, in do_display
    **display_args)
  File "renpy/character.py", line 647, in display_say
    rv = renpy.ui.interact(mouse='say', type=type, roll_forward=roll_forward)
  File "renpy/ui.py", line 298, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "renpy/display/core.py", line 3325, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
  File "renpy/display/core.py", line 3839, in interact_core
    self.draw_screen(root_widget, fullscreen_video, (not fullscreen_video) or video_frame_drawn)
  File "renpy/display/core.py", line 2565, in draw_screen
    renpy.config.screen_height,
  File "render.pyx", line 492, in renpy.display.render.render_screen
  File "render.pyx", line 263, in renpy.display.render.render
  File "renpy/display/layout.py", line 826, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 170, in renpy.display.render.render
  File "render.pyx", line 263, in renpy.display.render.render
  File "renpy/display/layout.py", line 826, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 170, in renpy.display.render.render
  File "render.pyx", line 263, in renpy.display.render.render
  File "renpy/display/layout.py", line 826, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 170, in renpy.display.render.render
  File "render.pyx", line 263, in renpy.display.render.render
  File "renpy/display/transform.py", line 733, in render
    return transform_render(self, width, height, st, at)
  File "accelerator.pyx", line 187, in renpy.display.accelerator.transform_render
  File "render.pyx", line 263, in renpy.display.render.render
  File "renpy/display/image.py", line 501, in render
    return wrap_render(self.target, width, height, st, at)
  File "renpy/display/image.py", line 307, in wrap_render
    rend = render(child, w, h, st, at)
  File "render.pyx", line 170, in renpy.display.render.render
  File "render.pyx", line 263, in renpy.display.render.render
  File "renpy/display/im.py", line 625, in render
    return cache.get(self, render=True)
  File "renpy/display/im.py", line 287, in get
    surf = image.load()
  File "renpy/display/im.py", line 706, in load
    raise e
IOError: Couldn't find file 'desc5.png'.

Windows-10-10.0.22000
Ren'Py 7.4.11.2266
 0.1.4
Sun Jul 10 18:12:48 2022
 

molitar

Engaged Member
Sep 22, 2016
3,236
3,133
Game unplayable. The bad's of it can't find anything good about it at all.

1. Text color blue on blue.. WTF?
2. Colors so damn bright that they hurt the eyes
3. MC is no male it's a shemale.. ugg

Can't say anything about story as I could not read a single damn line. Verdict: Game deleted until dev gets serious about making a playable game as he/she sure is not at this time as NO ONE would put blue text on blue background.
 
Last edited:

Wafflewaffuru

Active Member
Feb 10, 2021
741
1,358
Game unplayable. The bad's of it can't find anything good about it at all.

1. Text color blue on blue.. WTF?
2. Colors so damn bright that they hurt the eyes
3. MC is no male it's a shemale.. ugg

Can't say anything about story as I could not read a single damn line. Verdict: Game deleted until dev gets serious about making a playable game as he/she sure is not at this time as NO ONE would put blue text on blue background.
Idk about the male/shemale thing, I think that's just... really bad translations from spanish to english. At least, that's what I assumed it was. Also, there was a really big portion of this game just not translated at all. The spanish was jarring to say the least.
 
  • Thinking Face
Reactions: jadih96207