Radio Help[rep]
#1

i want so if im on bike and i crash into wall and im on ground i want auotmaticly radio to stop.i hope you understand!

PHP код:
public OnPlayerExitVehicle(playeridvehicleid)
{
if(
GetPlayerState==PLAYER_STATE_DRIVER)
StopAudioStreamForPlayer(playerid);

Reply
#2

pawn Код:
public OnPlayerExitVehicle(playerid, vehicleid)
{
    StopAudioStreamForPlayer(playerid);
    return 1;
}
Reply
#3

Try this;
pawn Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
    if(newstate == PLAYER_STATE_ONFOOT)
    {
        StopAudioStreamForPlayer(playerid);
    }

    return 1;
}
Reply
#4

Toreno thx fixed this how i wanted. :X thanks REP
OFF:come on skype please!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)