05.05.2014, 20:16
Information
Hello, everyone, today I built a thing called AudioStream, basically the player can play songs on *******, by linking to *******, you will do the dirty work, published in the meantime, I saw one of those, so short enjoy.
Features
Credits
Exampels
Download
Pastebin.
solidfiles.
Have Fun!
Hello, everyone, today I built a thing called AudioStream, basically the player can play songs on *******, by linking to *******, you will do the dirty work, published in the meantime, I saw one of those, so short enjoy.
Features
PHP код:
PlayAudioForPlayer(clientid,url[])
PlayAudioForAll(url[])
StopAudioForPlayer(clientid)
StopAudioForAll()
PHP код:
/*
* The big credtt to: iRaiDeN;
* Give you relief mode, play songs without convert;
* Features:
- PlayAudioForPlayer(clientid,url[])
- PlayAudioForAll(url[])
- StopAudioForPlayer(clientid)
- StopAudioForAll()
********************* Enjoy ********************************************* */
PHP код:
OnPlayerConnect(playerid)
{
PlayAudioForPlayer(playerid,"www.youtube.com/watch?v=l3Bpvl8S5h8");
PlayAudioForAll("www.youtube.com/watch?v=l3Bpvl8S5h8");
SetTimerEx("EndMusic",5000,false,"d",playerid);
}
forward EndMusic(playerid);
public EndMusic(playerid) return StopAudioForPlayer(playerid),StopAudioForAll();
Pastebin.
solidfiles.
Have Fun!