Question? - 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: Question? (
/showthread.php?tid=480955)
Question? -
IceKold - 13.12.2013
When I open the server I added the public OnPlayerConnect (playerid)
Код:
"PlayAudioStreamForPlayer(playerid, "https://dl.dropboxusercontent.com/s/i1z7aewqu8p87la/Jason%20DeRulo%20Feat.%202%20Chainz%20-%20Talk%20Dirty-www.manomuzika.net.mp3?dl=1&token_hash=AAHoQvvniDg1gYdLu1Fjs5iWsitiUSo13R63QBPLgjzc2w");"
When you go on playing music server but how do that with PlayAudioStreamForPlayer disappear.
Re: Question? -
Zamora - 13.12.2013
What do you mean with disappear.
Re: Question? -
IceKold - 13.12.2013
Yes disappear writing when I connect the server
Re: Question? -
SilentSoul - 13.12.2013
pawn Код:
PlayAudioStreamForPlayer(playerid, "https://dl.dropboxusercontent.com/s/i1z7aewqu8p87la/Jason%20DeRulo%20Feat.%202%20Chainz%20-%20Talk%20Dirty-www.manomuzika.net.mp3?dl=1&token_hash=AAHoQvvniDg1gYdLu1Fjs5iWsitiUSo13R63QBPLgjzc2w");
for(new i = 0; i < 50; i++) SendClientMessage(playerid,-1," ");//this line will send 50 message which will clear the chat for the player and will hide the PlayerAudioSteam message thing.
Re: Question? -
DaTa[X] - 13.12.2013
pawn Код:
SendClientMessage(playerid,-1," ");
SendClientMessage(playerid,-1," ");
SendClientMessage(playerid,-1," ");
Re: Question? -
IceKold - 13.12.2013
Thanks SilentSoul.