28.01.2013, 10:32
Ey.
The command is weird but its just for testing..
Anyway , I checked my connection ( to the audio plugin ) and its fine.
When I use the CMD it says
Now Playing: the track name , which means it really works , but I cant hear it !
pawn Код:
CMD:stest(playerid, params[])
{
new auds[128];
if(!sscanf(params,"s[128]",auds))
{
new Float:x,Float:y,Float:z;
new aud;
aud = Audio_PlayStreamed(playerid,auds,false,true,false);
Audio_Set3DPosition(playerid, aud, x,y,z , 100);
Audio_SetVolume(playerid, aud, 100);
}else return 0;
return 1;
}
Anyway , I checked my connection ( to the audio plugin ) and its fine.
When I use the CMD it says
Now Playing: the track name , which means it really works , but I cant hear it !