I'm starting to learn the language, yet it isn't a good start so far. I can't figure out why my sound wave won't play.
Code:
symbols message entered message activated message exited sector cantina surface switch end # ======================================================================================== code entered: print ("Get out of my bar! You always cause trouble."); channel = PlaySoundLocal(i00mn19z.wav, 2, -1, 0x10000); return; activated: print ("Don't touch my buttons!"); return; exited: print ("I wish you wouldn't shoot paying customers."); channel = PlaySoundLocal(i00mn18z.wav, 2, -1, 0x10000); return; # ........................................................................................ end