20.02.2012, 04:17
Can anyone show me how to turn off radio automatic when i leave vehicle.
// play an internet radio stream
if(strcmp(cmdtext, "/radioon", true) == 0)
if(IsPlayerInAnyVehicle(playerid))
{
PlayAudioStreamForPlayer(playerid, "http://somafm.com/beatblender.pls");
return 1;
}
// stop the internet radio stream
if(strcmp(cmdtext, "/radiooff", true) == 0)
if(IsPlayerInAnyVehicle(playerid))
{
StopAudioStreamForPlayer(playerid);
return 1;
// play an internet radio stream
if(strcmp(cmdtext, "/radioon", true) == 0)
if(IsPlayerInAnyVehicle(playerid))
{
PlayAudioStreamForPlayer(playerid, "http://somafm.com/beatblender.pls");
return 1;
}
// stop the internet radio stream
if(strcmp(cmdtext, "/radiooff", true) == 0)
if(IsPlayerInAnyVehicle(playerid))
{
StopAudioStreamForPlayer(playerid);
return 1;