05/01/2021 16:26
(Esta mensagem foi modificada pela última vez a: 05/01/2021 16:26 por MarcosBrazz.)
Tente:
Código:
Topo GM:
new StatusRadio[MAX_PLAYERS];
Comando:
if(strcmp(cmd, "/Radio", true) == 0){
if(IsPlayerConnected(playerid)){
if(StatusRadio == 0){
SendClientMessage(playerid, 0xEEDC2DFF, "Rádio TSVR ligada com sucesso");
PlayAudioStreamForPlayer(playerid, "http://stream.zeno.fm/y458xxmyhm0uv.mp3");
StatusRadio[playerid] = 1;
return 1;
}
else
{
SendClientMessage(playerid, 0xEEDC2DFF, "Rádio TSVR desligada");
StopAudioStreamForPlayer(playerid);
StatusRadio[playerid] = 0;
return 1;
}
}
return 1;
}