ID:178648
 
i cant my music to go.... when i compile there are no errors but when i log on (after i put the music in) the music wont go
this is what i did.......

area
sounds
town
Entered()
usr << sound("town msuic.mid",1)
Exited()
usr << sound(null)
the space where u log in has to not hav any music... then it shud werk when u move around
Try this:

area
sounds
town
Entered()
usr << sound('town msuic.mid',1)
Exited()
usr << sound(null)


-Kappa the Imp
In response to Kappa the Imp
Actually its his tabbing. Tab in entered and exited.

area
sounds
town
Entered()
usr << sound('town msuic.mid',1)
Exited()
usr << sound(null)


Aleis wrote:
i cant my music to go.... when i compile there are no errors but when i log on (after i put the music in) the music wont go

usr does not belong in Entered() and Exited() procs.

area
sounds
town
Entered(<font color=#ffffa0>O</font>)
<font color=#ffffa0>O</font> << sound("town msuic.mid",1)
Exited(<font color=#ffffa0>O</font>)
<font color=#ffffa0>O</font> << sound(null)

Also, if you are setting a player's loc when they login instead of using Move(), no Entered() procs are being called. If you still don't get the sound after getting rid of usr in the procs, try exiting the town and returning. If the music plays when you return to town, then the area's Entered() proc is not being called on login.