Cannot change radio station
#4

Just stop the stream and play sound 1068 then a few seconds later play 1069, this re-activates the radio while driving a vehicle (tested)

pawn Код:
}
forward ResetAllPlayersRadio();
public ResetAllPlayersRadio()
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            PlayerPlaySound(i, 1068, 0.0, 0.0, 0.0);
            SetTimerEx("EnablePlayerRadio",2000,false,"i",i);
        }
    }
    return 1;
}
forward EnablePlayerRadio(playerid);
public EnablePlayerRadio(playerid)
{
    if(IsPlayerConnected(playerid))
    {
        PlayerPlaySound(playerid, 1069, 0.0, 0.0, 0.0);
    }
    return 1;
}
with this just make a command to call "ResetAllPlayersRadio();" or put it in a stopaudiostream function.

Hope this helps
Reply


Messages In This Thread
Cannot change radio station - by Atrox95 - 04.04.2012, 16:41
Re: Cannot change radio station - by leong124 - 06.04.2012, 01:34
Re: Cannot change radio station - by Kar - 06.04.2012, 02:22
Re: Cannot change radio station - by Killa[DGZ] - 07.04.2012, 07:47
Re: Cannot change radio station - by kikito - 07.04.2012, 10:59
Re: Cannot change radio station - by Killa[DGZ] - 07.04.2012, 14:16
Re: Cannot change radio station - by Atrox95 - 07.04.2012, 16:13
Re: Cannot change radio station - by Killa[DGZ] - 07.04.2012, 19:15

Forum Jump:


Users browsing this thread: 1 Guest(s)