17.02.2011, 22:34
Hi, I have a request it is a sound plugin I would like to make it so that you type cmd / playstreamed and everyone will hear the music not just me
sorry my English :<
Код:
dcmd_playstreamed (playerid, params[])
{
#pragma unused playerid
new
bool:downmix,
bool:loop,
bool:pause,
url[256];
if (sscanf(params, "sddd", url, pause, loop, downmix))
{
SendClientMessage(playerid, COLOR_YELLOW, "USAGE: /playstreamed <url> <pause (0/1)> <loop (0/1)> <downmix (0/1)>");
return 1;
}
Audio_PlayStreamed(playerid, url, pause, loop, downmix);
return 1;
}

