Radio Problem - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Radio Problem (
/showthread.php?tid=319728)
Radio Problem -
Hansolue - 20.02.2012
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;
Re: Radio Problem -
Mark™ - 20.02.2012
// stop the internet radio stream
pawn Код:
if(strcmp(cmdtext, "/radiooff", true) == 0) {
if(!IsPlayerInAnyVehicle(playerid))
{
StopAudioStreamForPlayer(playerid);
return 1;
}
}
Re: Radio Problem -
Sufyan - 20.02.2012
you mean when player leave vehicle then here is code..
Код:
public OnPlayerExitVehicle(playerid, vehicleid)
{
StopAudioStreamForPlayer(playerid);
return 1;
}
Re: Radio Problem -
Hansolue - 20.02.2012
That is the same thing man
Re: Radio Problem -
Mark™ - 20.02.2012
Quote:
Originally Posted by Hansolue
That is the same thing man
|
thats what you wanted right ?
Re: Radio Problem -
Hansolue - 20.02.2012
when i leave vehicle i can still hear music,i want to stop radio automatic when i leave vehicle
Re: Radio Problem -
Mark™ - 20.02.2012
Quote:
Originally Posted by Hansolue
when i leave vehicle i can still hear music,i want to stop radio automatic when i leave vehicle
|
Me and sufyan already gave you the code for that, read post #2 and #3.
Re: Radio Problem -
emokidx - 20.02.2012
try what sufyan wrote
Quote:
Originally Posted by Sufyan
you mean when player leave vehicle then here is code..
Код:
public OnPlayerExitVehicle(playerid, vehicleid)
{
StopAudioStreamForPlayer(playerid);
return 1;
}
|
Re: Radio Problem -
Hansolue - 20.02.2012
i try that and nothing
Re: Radio Problem -
Mark™ - 20.02.2012
Quote:
Originally Posted by Hansolue
i try that and nothing
|
are you still hearing the music even after you left the vehicle ?