Music on server - 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 on server (
/showthread.php?tid=655748)
Music on server -
wilking - 28.06.2018
how to turn on a music ( url : http: __.mp3 ) when enter the door .
just in door can listen to music , else when use /exit , music auto off
Help me Problem .
i tried with PlayAudioStreamForPlayer , but I can't do it .
Re: Music on server -
Sasino97 - 29.06.2018
Hello,
You might find useful this tutorial by spd_sahil:
https://sampforum.blast.hk/showthread.php?tid=332729
Re: Music on server -
wilking - 29.06.2018
thank you so much
Re: Music on server -
BadJih - 30.06.2018
PlayAudioStreamForPlayer(playerid, url[], Float:posX, Float:posY, Float:posZ , Float:distance, usepos)
Re: Music on server -
AmarPlayer - 01.07.2018
Use kiwi6.com to upload your music and then just paste the link down here:
Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
PlayAudioStreamForPlayer(playerid, "http//:kiwi6.com/yoursongurl");
return 1;
}