Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Please try your game in an incognito window, it should ask if you want sound the first time you run the game.

If not, then please let me know which sound commands you are using in the game, and I'll try to work out what is happening.

I always use Firefox in Private Browsing mode.

As in the documentation example, I don't have sound until I've typed 'sound on' at least once. It doesn't give me a sound menu choice at first.

start_at    = my_location
start_theme = my_theme themes {
   my_theme : theme {
      theme_settings {
         losegame_jingle = on
         success_jingle  = on
         wingame_jingle  = on
         failure_jingle  = on
      }
   }
} locations {
   my_location : location "You are in a room with no exits.\n^n^Type WINGAME to play wingame jingle.\nType LOSEGAME to play losegame jingle.\nType FAILURE (or type bad direction) to play failure jingle.\nType SUCCESS to play success jingle.^m^" ;
} on_command {
   : match "wingame _"  {
      : win_game ;
   }
   : match "losegame _"  {
      : lose_game;
   }
   : match "success _"  {
      : success ;
   }
   : match "failure _"  {
      : failure ;
   }
}

OK, so the jingles are not triggering the sound ask permission. Let me sort that out.

Updated in 42c. Press F5 to update adventuron ( at https://adventuron.io/classroom ).

Please confirm this is resolved.

(+1)

Yes, thank you. Now it's working well.