Create and Fuck your AI Slut -70% OFF
x

Ren'Py Fuck Your Way to the Top [v0.2] [Kileos123]

3.30 star(s) 3 Votes

kileos123

Oracle of nonsense
Game Developer
Sep 19, 2018
174
322
178

3.0 Released, some small adjustments and a small amount of cards added to Leana and Elsa, new optional Communist Party.
 
Last edited:

kileos123

Oracle of nonsense
Game Developer
Sep 19, 2018
174
322
178
I have created a discord for bug reports, girl requests and mod making help.


Edit: Updated link, hopefully won't expire now.
 
Last edited:
  • Like
Reactions: WarblGarbl

sincity3000

Newbie
Mar 18, 2018
30
20
133
Videos don't play for me, but they do play as a fullscreen video when I use the renpy.movie_cutscene() command, so I am capable of playing them. For what it's worth, I'm using Ubuntu 24.10.

Code:
    # call playMovie(card.video[0])
    $ renpy.movie_cutscene(card.video[0])
So then I took a look at the playMovie label, and did this:
Code:
screen movie_screen(video):

    python:
        renpy.music.set_volume(persistent.video_volume, channel="Video")

    frame:
        align(0.5, 0.2)

        # add Movie(play=video, loop=True, channel="Video")
        add Movie(play=video, loop=True)
and now it works. For some reason the double declaration of channel="Video" made the video not play. I tried muting and unmuting and the volume still tracks.

By the way, game is fun.
 
Last edited:

erkan

Newbie
Nov 14, 2017
85
14
175
A balance thing: Meeting fee should probably not be a first tier law since it makes every starting card cost 2 money and it can be passed really fast. Bassically unless you have 4+ money income on turn 5 you are fucked and can only play 1 card per round). So either make it effect a narrower range of cards affected by it or move it to tier 2 or 3 so it not as big a deal when getting it (compared to refresh tax and mandatory condoms both of which are managable any time during game it is way OP).

Edit: also videos are not playing anymore moest of the time I have no idea why (Neither big ones or the small ones in politicians boxes)
 
Last edited:

kileos123

Oracle of nonsense
Game Developer
Sep 19, 2018
174
322
178
Videos don't play for me, but they do play as a fullscreen video when I use the renpy.movie_cutscene() command, so I am capable of playing them. For what it's worth, I'm using Ubuntu 24.10.

Code:
    # call playMovie(card.video[0])
    $ renpy.movie_cutscene(card.video[0])
So then I took a look at the playMovie label, and did this:
Code:
screen movie_screen(video):

    python:
        renpy.music.set_volume(persistent.video_volume, channel="Video")

    frame:
        align(0.5, 0.2)

        # add Movie(play=video, loop=True, channel="Video")
        add Movie(play=video, loop=True)
and now it works. For some reason the double declaration of channel="Video" made the video not play. I tried muting and unmuting and the volume still tracks.

By the way, game is fun.
Thanks for sharing that! I knew about people having trouble playing the videos but have no idea why it works for others and not for them. I have implemented a fix using this, you can choose to use the base video player or this one. I could not get the audio to work, but you said it works for you so this is better than not having videos. Thanks again.
 

erkan

Newbie
Nov 14, 2017
85
14
175
Thanks for sharing that! I knew about people having trouble playing the videos but have no idea why it works for others and not for them. I have implemented a fix using this, you can choose to use the base video player or this one. I could not get the audio to work, but you said it works for you so this is better than not having videos. Thanks again.
Figured the video thing out (I think): i had the mute all button turned on, but turning it off and no sound on sliders then vids play
 

sincity3000

Newbie
Mar 18, 2018
30
20
133
No problem. For the record, I reverted the $ renpy.movie_cutscene() command so I only have the movie_screen() screen changed.
 

erkan

Newbie
Nov 14, 2017
85
14
175
Bug: Threesome effect seems to not happen at all (as in no extra effects) when I have 2 in hand at the same time.
Also: like a lollipop is playable without max lust even tough it has the tag. Seems to effect other cards too, attaching save
 
Last edited:

kileos123

Oracle of nonsense
Game Developer
Sep 19, 2018
174
322
178
Bug: Threesome effect seems to not happen at all (as in no extra effects) when I have 2 in hand at the same time.
Also: like a lollipop is playable without max lust even tough it has the tag. Seems to effect other cards too, attaching save
Fixed the lust maxed bug but I cannot recreate the threesome getting no additional effects bug.
 

sincity3000

Newbie
Mar 18, 2018
30
20
133
If you have negative money, accountants make you lose money faster. If you intend this, then that's fine, but if you have -$10 then you are actually losing money each round.

if you wanted to fix it, line 636 in functions.rpy could have this:
Code:
                if "Accountant" in puppet.name:
                    interest = roundDown(money / 5)
                    if interest > 5:
                        interest = 5
                    elif interest < 0:
                        interest = 0
                    moneyIncome += interest
or you leave it as is since accountants are like that.
 
Last edited:

kileos123

Oracle of nonsense
Game Developer
Sep 19, 2018
174
322
178
If you have negative money, accountants make you lose money faster. If you intend this, then that's fine, but if you have -$10 then you are actually losing money each round.

if you wanted to fix it, line 636 in functions.rpy could have this:
Code:
                if "Accountant" in puppet.name:
                    interest = roundDown(money / 5)
                    if interest > 5:
                        interest = 5
                    elif interest < 0:
                        interest = 0
                    moneyIncome += interest
or you leave it as is since accountants are like that.
Definitely not supposed to be doing that, fixed.
 
3.30 star(s) 3 Votes