21.03.2015, 03:18
Eae galera tava criando um sistema de dj aqui funcionou mas apenas eu ouзo a mъsica os players nгo ouvem nada!
Code:
Code:
PHP код:
if(dialogid == 772)
{
TogglePlayerControllable(playerid, 1);
if(!response) { return 1; }
switch(listitem)
{
case 0:
{
PlayAudioStreamForPlayer(playerid, "https://dl.dropboxusercontent.com/u/238210935/DJ/DaviDGuettaShotMeDown.mp3",1484.7277,-1748.0680,20.4053,180,1);
format(string, sizeof(string), "O Player %s[%d]Iniciou como DJ na prefeitura de Los Santos!", PlayerName(playerid), playerid);
SendClientMessageToAll(COR_CV, string);
}
case 1:
{
PlayAudioStreamForPlayer(playerid, "https://dl.dropboxusercontent.com/u/238210935/DJ/TurnDownForWhat.mp3",1484.7277,-1748.0680,20.4053,180,1);
format(string, sizeof(string), "O Player %s[%d]Iniciou como DJ na prefeitura de Los Santos!", PlayerName(playerid), playerid);
SendClientMessageToAll(COR_CV, string);
}
case 2:
{
PlayAudioStreamForPlayer(playerid, "https://dl.dropboxusercontent.com/u/238210935/DJ/Disclosure.mp3",1484.7277,-1748.0680,20.4053,180,1);
format(string, sizeof(string), "O Player %s[%d]Iniciou como DJ na prefeitura de Los Santos!", PlayerName(playerid), playerid);
SendClientMessageToAll(COR_CV, string);
}
case 3:
{
PlayAudioStreamForPlayer(playerid, "https://dl.dropboxusercontent.com/u/238210935/DJ/NApontadope.mp3",1484.7277,-1748.0680,20.4053,180,1);
format(string, sizeof(string), "O Player %s[%d]Iniciou como DJ na prefeitura de Los Santos!", PlayerName(playerid), playerid);
SendClientMessageToAll(COR_CV, string);
}
case 4:
{
PlayAudioStreamForPlayer(playerid, "https://dl.dropboxusercontent.com/u/238210935/DJ/WeDemBoyz.mp3",1484.7277,-1748.0680,20.4053,180,1);
format(string, sizeof(string), "O Player %s[%d]Iniciou como DJ na prefeitura de Los Santos!", PlayerName(playerid), playerid);
SendClientMessageToAll(COR_CV, string);
}
case 5:
{
PlayAudioStreamForPlayer(playerid, "https://dl.dropboxusercontent.com/u/238210935/DJ/SkrillexRaggaBombwithRaggaTwins.mp3",1484.7277,-1748.0680,20.4053,180,1);
format(string, sizeof(string), "O Player %s[%d]Iniciou como DJ na prefeitura de Los Santos!!", PlayerName(playerid), playerid);
SendClientMessageToAll(COR_CV, string);
}
case 6:
{
StopAudioStreamForPlayer(playerid);
format(string, sizeof(string), "O Player %s[%d]Parou como DJ na prefeitura de Los Santos!", PlayerName(playerid), playerid);
SendClientMessageToAll(COR_CV, string);
}
}
}