ID:267641
 
This is another one of those problems where I don't think it should go under code problems because it's a newbie type question.

What am I doing wrong here?

area
var/sound
area1
sound = 'ff1town.mid'

Thanks.
That's not how you play a sound. There's no need to declare it. Make sure you have the sound in the directory. To play it, do this:

world << 'yoursound.wav'
In response to HavenMaster
Nevermind, I got it.