17.07.2011, 10:12
I use this snippet
But often when you turn to Radio Off, you can't turn on the radio back.
And another thing:
How can i replace GTA SA radio with custom streamed radio? Is it possible to change the name of the radio station that is writen on top?
pawn Code:
public Audio_OnRadioStationChange(playerid, station)
{
if(station != 0)
{
new vehicleid = GetPlayerVehicleID(playerid);
foreach(Player, i)
if(IsPlayerInVehicle(i,vehicleid) && i != playerid)
Audio_SetRadioStation(i, station);
}
else
{
new vehicleid = GetPlayerVehicleID(playerid);
foreach(Player, i)
if(IsPlayerInVehicle(i,vehicleid) && i != playerid)
Audio_StopRadio(i);
}
return 1;
}
And another thing:
How can i replace GTA SA radio with custom streamed radio? Is it possible to change the name of the radio station that is writen on top?