Use a var and set it to 1 when runned song and check if its 0 before running song...
PHP код:
new runned_song[MAX_PLAYERS char]; // at top
// on p connect
runned_song{playerid} = 0;
//on req class
if(runned_song{playerid} == 0)
{
Run song
runned_song{playerid} = 1;
}
//on spawn
runned_song{playerid} = 0;
Hope you got it. I can not explain well as I am on phone now.