/music help - 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 help (
/showthread.php?tid=308120)
/music help -
fangoth1 - 02.01.2012
any idea why this wont work?
pawn Код:
if (strcmp("/music", cmd, true) == 0)
{
new Float:x, Float:y, Float:z, Float:distance = 3.0;
GetPlayerPos(playerid,x,y,z);
if(IsPlayerInRangeOfPoint(playerid,3.0,x,y,z))
PlayAudioStreamForPlayer(playerid, "http://www.pandora.com/#!/stations/play/94504033836520830",x,y,z,distance);
return 1;
}
Re: /music help -
N0FeaR - 02.01.2012
try this
Код:
if (strcmp("/music", cmd, true) == 0)
{
new Float:x, Float:y, Float:z, Float:distance = 3.0;
GetPlayerPos(playerid,x,y,z);
if(IsPlayerInRangeOfPoint(playerid,3.0,x,y,z))
PlayAudioStreamForPlayer(playerid, "http://www.pandora.com/#!/stations/play/94504033836520830",x,y,z,distance,0);
return 1;
}
Re: /music help -
fangoth1 - 02.01.2012
negative, still nothing, wont play ive tried many many many urls aswell
Re: /music help -
N0FeaR - 02.01.2012
When you type /music that come up in the coner like this Audio Stream:
http://www.pandora.com/#!/stations/p...04033836520830
Re: /music help -
fangoth1 - 02.01.2012
no, i dont get any message like that
Re: /music help -
N0FeaR - 02.01.2012
hmm strange. i look how i have sricpt and look same. sorry cannot help you then
Re: /music help -
fangoth1 - 02.01.2012
hmm thats wierd
Re: /music help -
fangoth1 - 02.01.2012
any more suggestions