Song cannot be hear by everyone
#9

its not a bump after someone replyed

and this code is sending to all

pawn Code:
SendClientMessageToAll(COLOR_RED, string);
this one send only to 1 player
pawn Code:
SendClientMessage
also to stop it for everyone

pawn Code:
if(IsPlayerConnected(i) && (i != playerid))
           {
              StopAudioStreamForPlayer(i);
              IsSongPlaying[i] = 0;
           }
should be

pawn Code:
if(IsPlayerConnected(i))
           {
              StopAudioStreamForPlayer(i);
              IsSongPlaying[i] = 0;
           }
Reply


Messages In This Thread
Song cannot be hear by everyone - by L0zaix - 17.02.2012, 07:50
Re: Song cannot be hear by everyone - by L0zaix - 17.02.2012, 08:09
Re: Song cannot be hear by everyone - by L0zaix - 17.02.2012, 11:37
Re: Song cannot be hear by everyone - by emokidx - 17.02.2012, 11:39
Re: Song cannot be hear by everyone - by L0zaix - 17.02.2012, 11:48
Re: Song cannot be hear by everyone - by L0zaix - 17.02.2012, 12:11
Re: Song cannot be hear by everyone - by Madd Kat - 17.02.2012, 12:15
Re: Song cannot be hear by everyone - by L0zaix - 17.02.2012, 12:33
Re: Song cannot be hear by everyone - by Madd Kat - 17.02.2012, 12:39
Re: Song cannot be hear by everyone - by L0zaix - 17.02.2012, 12:42

Forum Jump:


Users browsing this thread: 3 Guest(s)