Apologies for the late replies.
Crazy Li wrote:I agree with this. I use neither voices nor beeps. I never liked the beeping in Ace Attorney games, but I kinda let them slide... but depending on what kinda VN you're making, the beeps could REALLY take away from it. If it's a silly game like AA, it might work out... but something that's not goofy might suffer from it.
Yeah, I understand that but I'm just adding in the bleeps since the VN I'm making is supposed to be a parody (and I was wondering if I was able to do the bleeping in the first place, if I were to make a serious game with bleeps then I wouldn't have put the "godawful" in the title of the post). To be honest I've never been bothered with the bleeping. Perhaps there's a way that you can set the bleeping on and off in the options just to give players convenience?
Alex wrote:Try to rename either your callback function or your character (if this won't help, check if your sound file can be played at all and/or sounds loud enough to be heared).
I've re-named the callback but I still can't hear the sound. Like I've said, I already checked the file to see if it was loud enough for the VN (having it play by itself) and I could hear it. I wonder what's wrong this time?
EDIT:
For these interested in what my entire script.rpy file looks like, it's this:
Code: Select all
init python:
def fencer(event, **kwargs):
if event == "show":
renpy.music.play("sound/Fencerkun.wav", channel="sound", loop="True")
elif event == "slow_done" or event == "end":
renpy.music.stop(channel="sound")
# Declare images below this line, using the image statement.
# eg. image eileen happy = "eileen_happy.png"
image bg classroom = "image/bg_classroom.png"
# Declare characters used by this game.
define f = Character ('Fencer-kun', color="#CC1D1D")
$ f = Character("Fencer-kun", callback="fencer")
# The game starts here.
label start:
show bg classroom
play music "music/(Cafe) Gael Brulin - Morning Beat 2013.mp3"
f "Oh, look what we have here!"
f "An eager player, I hope."
f "Unfortunately, there isn't much to the game right now since it's just bare bones..."
f "Look at me! I'm even invisible!"
play sound "sound/Fencerkun.wav"
f "I call this injustice!!"
return
I could hear the sound at
play sound "sound/Fencerkun.wav".