Gina Valentina, she's got heaps of content.So, any idea on who the third model will be?
Does the link not work for anyone else? it seems to send me to my Mega dashboard.MEGA
3.0 Released, some small adjustments and a small amount of cards added to Leana and Elsa, new optional Communist Party.
Try it now, I copied the link from the manager instead of the search bar this time.Does the link not work for anyone else? it seems to send me to my Mega dashboard.
Thanks, fixed.Get error doing next turn:You don't have permission to view the spoiler content. Log in or register now.
Nice, new error when trying to play breed me on secret police communist:Thanks, fixed.
This has been fixed on the bugfixes post communist_party.rpy or on the mega folder where the communist party is downloaded.Nice, new error when trying to play breed me on secret police communist:
You don't have permission to view the spoiler content. Log in or register now.
# call playMovie(card.video[0])
$ renpy.movie_cutscene(card.video[0])
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)
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.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.
So then I took a look at the playMovie label, and did this:Code:# call playMovie(card.video[0]) $ renpy.movie_cutscene(card.video[0])
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.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)
By the way, game is fun.
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 playThanks 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.