[Ajuda] Mъsica tocar a todos - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Mъsica tocar a todos (
/showthread.php?tid=523763)
Mъsica tocar a todos -
Wakayama - 03.07.2014
Como Posso Fazer essa Mъsica tocar para todos Online ?
Eu digito ''/tocar'' e a Mъsica comeзa a tocar para todos Online no servidor.
pawn Код:
if (strcmp("/tocar", cmdtext, true) == 0)
{
PlayAudioStreamForPlayer(playerid, "http://80.237.155.73:80");
return 1;
}
Re: Preciso de Ajuda! -
darkxdll - 03.07.2014
Utilize um loop.
PHP код:
for(new loop; loop < GetMaxPlayers(); loop++)
{
PlayAudioStreamForPlayer(loop,"http://80.237.155.73:80");
}
Re: Preciso de Ajuda! -
Wakayama - 03.07.2014
Como assim ?
Re: Preciso de Ajuda! -
Wakayama - 03.07.2014
Consegui Obrigado.
+Reep