Music onplayerconnect - 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: Music onplayerconnect (
/showthread.php?tid=321272)
Music onplayerconnect -
Gooday - 26.02.2012
I saw that a lot of servers got a little "music" when you set the skin, how i can do this?
(NOT Audio Stream player...)
Re: Music onplayerconnect -
emokidx - 26.02.2012
Quote:
Originally Posted by Gooday
(NOT Audio Stream player...)
|
PlayPlayerSound?
Re: Music onplayerconnect -
Gooday - 26.02.2012
Thanks now i got a problem, How to stop it?
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
GameTextForPlayer(playerid,"~y~CIVILIAN",4000,4);
SetPlayerInterior(playerid,0);
SetPlayerPos(playerid,-1753.6743,885.2703,295.8750);
SetPlayerCameraPos(playerid,-1753.6849,892.0016,295.8750);
SetPlayerCameraLookAt(playerid,-1753.6743,885.2703,295.8750);
SetPlayerFacingAngle(playerid,0.6323);
PlayerPlaySound(playerid, 1185, -1753.6743,885.2703,295.8750);
return 1;
}
When i spawn the music wont stop :/
Re: Music onplayerconnect -
emokidx - 27.02.2012
i don't think you can stop playing it, it stops automatically, or use any other Sound id.
Re: Music onplayerconnect -
FalconX - 27.02.2012
Quote:
Originally Posted by emokidx111
i don't think you can stop playing it, it stops automatically, or use any other Sound id.
|
You can use this for stopping the PlayerPlaySound:-
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
PlayerPlaySound(playerid,1186 ,x,y,z);
return 1;
}
It works like a charm
-FalconX
Re: Music onplayerconnect -
Chrillzen - 27.02.2012
Use the code above under Onplayerspawn and the other on class selection.