4.10 star(s) 11 Votes

Master of Puppets

Conversation Conqueror
Oct 5, 2017
7,386
9,770
Also tweaked the oralelf animations to fix the looping when she puts her hands up.
In animations.rpy:
Python:
# First define the two videos
image oralelf2 = Movie(play="movies/oralelf2.webm", # Raising her arms
    loop=False, # This one doesn't want to loop
    image="oralelf3.webp") # Display this after the video finishes if not looping
image oralelf3 = Movie(play="movies/oralelf3.webm", # Holding his hips
    start_image="oralelf3.webp") # Display this before the video loads
# Then define a new Displayable to show both videos
image oralelf2transition:
    "oralelf2" # Show first movie
    pause 3 # First movie duration, minus a tiny bit
    "oralelf3" # Show second looping movie
Then in the main script:
Python:
scene oralelf # These should be scene statements, not show statements
with dissolve
p "Hmmm even your mouth is so tight."
scene oralelf2transition # Using the new displayable
with dissolve
p "Yes that is how I like it."
"Servant" "Mhmmmm..."
# scene oralelf3 # Don't need to show this one
# with dissolve
p "Here let me help you little cocksucker..."
scene oralelf4
with dissolve
You can do the same for any other animation that wants to play one once, then loop another
 

OneManVN

Engaged Member
Game Developer
Nov 16, 2018
2,490
5,854
Thanks to everyone who tried the demo, and especially those of you who kept the focus on FOM. Your feedback has helped improve FOM CH1 as well as future releases. The Fate of Mirador is now officially out on the FOM Patreon page. Public release is sometime next month, at best. Talk soon.
 

Professor Black

Active Member
Jun 14, 2020
548
1,072
Gonna wait for walkthroughs/mod if there are going to be missable paths. too lazy to replay multiple playthroughs. if there are none oh well.
 

Sennistrasz

Active Member
Oct 6, 2020
574
652
Are the king and prince going to be named? And I don't see a reason to hide them behind other people or things in scenes, just looks weird and jarring.

Actually, the further I go, the more characters who need names.
 
Last edited:

giqui

Conversation Conqueror
Compressor
Nov 9, 2019
6,284
43,453
Fate Of Mirador [v0.1.1] [OneManVN]
compressed_.gif

3.2 GB to ≅ 258 MB

Download PC/MAC/ANDROID: -

The Android port/version is not official.
 
Last edited:
4.10 star(s) 11 Votes