18.04.2012, 21:40
1. The parameters for PlayAudioStreamForPlayer are (playerid, url[], Float:posX = 0.0, Float:posY = 0.0, Float:posZ = 0.0, Float:distance = 50.0, usepos = 0) - you have the last one set to 10. It should be 1 if you want to play it at certain coordinates. However, I would just use playerid and url if I were you, there's no need to set the position!
2. You can't do
you need to use brackets:
3. The URL is all messed up with %20 shit.
2. You can't do
pawn Код:
if(something)
function();
function();
function();
pawn Код:
if(something)
{
function();
function();
function();
}

