22.03.2018, 20:35
PHP код:
new Songs[][] =
{
"Song1 link",
"Song2 link",
"Song3 link",
"Song4 link"
};
//OnGameModeInit
SetTimer("AutoSong", 60000, true);
forward AutoSong();
public AutoSong()
{
new autos= random(sizeof(Songs));
for(new i;i<MAX_PLAYERS;i++) PlayAudioStreamForPlayer(i, Songs[autos]);
}