Try this:
Code:
public client_putinserver(id)
set_task(2.0, "taskPlaySnd", id);
public taskPlaySnd(id)
client_cmd(id, "mp3 play %s", music[1]);
I remember something like if player starts playing an MP3 while he's connecting (on client_connect() or client_authorized()), the sound stops on client_putinserver(). So that's why you should try to do that AFTER it.
__________________