init python:
import random
type_sounds = [
"audio/seks2.mp3",
"audio/seks3.mp3",
]
def typing_callback(event, interact=True, **kwargs):
if not interact:
return
if event == "show":
for _ in range(180):
renpy.sound.queue(
random.choice(type_sounds),
channel="sound",
loop=False
)
elif event in ("slow_done", "end"):
renpy.sound.stop(channel="sound")
if event == "end":
renpy.sound.play("audio/pirno.mp3", channel="sound").
.
.
.
.
.
.
.
.
.
.
.
.
.
, callback=typing_callback