[Ajuda] ajuda radio samp - 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] ajuda radio samp (
/showthread.php?tid=516346)
ajuda radio samp -
chefaoBR - 30.05.2014
alguem ae sabe, sabe como criar uma radio que inicia automaticamente ao entra no servidor e pra desligar e /radiooff
e pra ligar /radioon , pf Obrigado !! strcmp!!!!
Re: ajuda radio samp -
Felipe_Freeze - 30.05.2014
em OnPlayerConnect coloca
pawn Код:
PlayAudioStreamForPlayer(playerid, "http://somafm.com/tags.pls");
Ai cria os comandos:
/radioof
pawn Код:
if (strcmp("/radioof", cmdtext, true) == 0)
{
StopAudioStreamForPlayer(playerid);
}
/radioon
pawn Код:
if (strcmp("/radioon", cmdtext, true) == 0)
{
PlayAudioStreamForPlayer(playerid, "http://somafm.com/tags.pls");
}
Troca o "http://somafm.com/tags.pls" pelo link da rбdio/musica
* Isso й uma base, da pra ter uma noзгo e fazer algo melhor por cima disto.
Re: ajuda radio samp -
chefaoBR - 30.05.2014
suave , obrg
Re: ajuda radio samp -
FabioGTP - 30.05.2014
te ensinei isto ontem era sу mudar pra strcmp,