No Sound?

HarjKS
04 Jun 2014, 16:02
I'm trying to show my friend my text-adventure game so far and it's the first one I made. I downloaded 'Quest' and edited it there, I haven't finished it yet but I know for sure I added sound and when I played it on 'Quest' the sound worked. However here, there is no sound when I try playing it online?

Is there a reason for this, or am I doing something wrong?

Pertex
05 Jun 2014, 08:59
What files do you want to play (mp3? wav?) and which browser do you use when playing online?

caberg
24 Jun 2014, 12:30
same happen to me, use .wav file for unlock/lock door .. works fine in Quest but crash when play online using google chrome.


here's the code
if (game.pov.parent = frontdoor) {
if (game.score=0) {
IncreaseScore (1)
}
if (frontdoor_locked.locked) {
UnlockExit (frontdoor_locked)
play sound ("unlocking-door.wav", true, false)
msg ("you open the door.")
}
else {
LockExit (frontdoor_locked)
play sound ("unlocking-door.wav", true, false)
msg ("you lock the door.")
}
}
else if (game.pov.parent = myroom) {
if (myroom_locked.locked) {
UnlockExit (myroom_locked)
play sound ("unlocking-door.wav", true, false)
msg ("you open the door.")
}
else {
LockExit (myroom_locked)
play sound ("unlocking-door.wav", true, false)
msg ("you lock the door.")
}
}
else {
msg ("this key just for front door and my room")
}


that code are set in Wait for sound to finish before continuing = yes

i try change to Wait for sound to finish before continuing = no , game not crash but no sound play.

is this my code or another issue in online game ?