14.11.2016, 21:23
Galera, recentemente comprei uma rбdio e configurei ela tudo certinho, no meu fуrum tб funcionando normalmente, todos conseguem escutar, agora no servidor nгo funciona para alguns players, quando liga nгo acontece nada, jб outros players afirmam que a rбdio funcionou, eu gostaria de saber como posso arrumar isso pra todo mundo escutar?
pawn Код:
#include a_samp
#include zcmd
#define Radio 6969
#define Relaxed1 0xEBFF00AA
public OnFilterScriptInit()
{
print(" Ligando fs");
return 1;
}
CMD:radio(playerid){
ShowPlayerDialog(playerid,Radio,DIALOG_STYLE_LIST,"Radio","{00F5FF}Ligar\nDesligar","Selecionar","Cancelar");
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]){
if(dialogid == Radio){
if(response){
switch(listitem){
case 0:{
PlayAudioStreamForPlayer(playerid,"http://107.161.123.146:26342");
SendClientMessage(playerid,Relaxed1,"[ > ] Vocк ligou a Rбdio Lost!");
}
case 1:{
StopAudioStreamForPlayer(playerid);
SendClientMessage(playerid,Relaxed1,"[ > ] Vocк desligou a Rбdio Lost!");
}
}
}
}
return false;
}