Music Not Playing?

Ive been trying to make it so i can have music (i created) in the background of some levels, it works on offline editor but not online.

// NPC made by Ver'iApplez if (created) { } if (playertouchsme) { } if (playerenters) { play phenomenonthememusic.wav; playlooped phenomenonthememusic.wav;}

[QUOTE=Ver;96600]
Ive been trying to make it so i can have music (i created) in the background of some levels, it works on offline editor but not online.

// NPC made by Ver'iApplez if (created) { } if (playertouchsme) { } if (playerenters) { play phenomenonthememusic.wav; playlooped phenomenonthememusic.wav;}
[/QUOTE]

first off, why are those flags in there… just take em all out, it looks messy and it doesn’t do anything.

// NPC made by Ver'iApplez if (playerenters) { play phenomenonthememusic.wav; playlooped phenomenonthememusic.wav;}

I don’t really know my shit, but wouldn’t it confuse the shit out of the client if you told it to play and then play looped? Also remember to upload the .wav to the sounds folder on your server.

Ok, thanks :slight_smile:

don’t add multiple flags if those are unnecessary. just use the ones that you need.

Ok :slight_smile: thanks for the help guys ill test it out