problem with playaudiostreamforplayer...
#1

hey guys,
i have made a radio for my server and everytime a player gets into his car there will be a randomsong played...
but now i have a problem...
last time my friend asked me why i have made that always putting the radio on user player when he gets in a car and why he can't hear a song...
i thought first that it was only him who couldnt use the audiostream but now i discovered that NO-ONE can.. EXCEPT ME...
its very weird but it seems that only I can hear the songs when im in a car... and no one else...
i dont understand whats wrong bu t this are my codes:
pawn Код:
new RandomSongs[][] =
{
    {"http://www.*******-mp3.org/get?video_id=GchEVSx9XEA&h=a8095da0a3ebb0ec68a35519043d1582&r=1328024501269"},
    {"http://www.*******-mp3.org/get?video_id=ePQe5E69INg&h=2706037ccdd40f95ec94684e9d62be1c&r=1328024701897"},
    {"http://www.*******-mp3.org/get?video_id=WLTI2rWAlV4&h=04cba55788b97850fde78cfbb8f105da&r=1328024728490"},
    {"http://www.*******-mp3.org/get?video_id=T3E9Wjbq44E&h=6e40dca1abce34e24c7b4e2bb2aefbea&r=1328024787925"},
    {"http://www.*******-mp3.org/get?video_id=_ovdm2yX4MA&h=e5dda6ce00166e58122425f9180b27bd&r=1328024750460"},
    {"http://www.*******-mp3.org/get?video_id=ZD-MpVSmFtg&h=79ed33894f7191ab74879d0f59e3c93a&r=1328024815583"},
    {"http://www.*******-mp3.org/get?video_id=YFK6H_CcuX8&h=4f22916d966ddabb6c6595646faf4f65&r=1328380810418"}
};
under onplayerexitvehicle:
pawn Код:
StopAudioStreamForPlayer(playerid);
and statechange:
pawn Код:
if(newstate == PLAYER_STATE_DRIVER || newstate == PLAYER_STATE_PASSENGER)
    {
        TextDrawShowForPlayer(playerid, Capstext);
        PlayAudioStreamForPlayer(playerid, RandomSongs[random(sizeof(RandomSongs))]);
        SendClientMessage(playerid, COLOR_GREEN, "if you want to listen to another song then type {FF0000}'/radio'");
    }
// here is more other code but thats not for this audio stream
i dont understand why only I can hear the random songs and no one else can...
pls help this is a very annoying bugg, and all the players dont like it so i want to fix it but i dont understand whats wrong here and why only I can hear it...
pls help

greets niels
Reply
#2

ah come on no one?( i hope this isnt bump but i posted this at begin of day and now its end of day and still no replies... can pls anyone help me?)
Reply
#3

You can hear it but others can't? Seriously, they checked their GTA SA Audio Settings? If it's muted they can't hear radio ofc.
Reply
#4

hey yeah that could be the problem... but i dont think EVERYONE who joins my server has their radio settings on OFF... but i will ask my friend if that works thnx for help anyways
Reply
#5

eehm sorry for late reply XD but it isnt working i asked my friend but he has his radio in gta sa config on full... can anyone else help and pls tell me whats wrong here!? i shouldnt know
Reply
#6

come on is there no one who can help me!? there are more players who having this problem too pls help!
Reply
#7

Well, I have no idea if it works. The only I can confirm is that it compiles.
pawn Код:
public OnPlayerStateChange( playerid, newstate, oldstate )
{
    new vehicle;
    vehicle = GetPlayerVehicleID( playerid );
    if( oldstate == PLAYER_STATE_ONFOOT && newstate == PLAYER_STATE_DRIVER )
    {
        for( new x; x < MAX_PLAYERS; x ++ )
        {
            if( IsPlayerInVehicle( x, vehicle ) )
            {
                TextDrawShowForPlayer( x, Capstext );
                PlayAudioStreamForPlayer(playerid, RandomSongs[ random( sizeof( RandomSongs  ) ) ] );
                SendClientMessage( x, COLOR_GREEN, "if you want to listen to another song then type {FF0000}'/radio'" );
            }
        }
    }
    else if( oldstate == PLAYER_STATE_DRIVER && newstate == PLAYER_STATE_ONFOOT )
    {
        for( new x; x < MAX_PLAYERS; x ++ )
        {
            if( !IsPlayerInVehicle( x, vehicle ) ) StopAudioStreamForPlayer( x );
        }
       
    }
    return 1;
}
Reply
#8

Man, the radio in ur server works 4 me ? o.O anywayz, Nice! : D

- OpTic.Hecz
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)