Audio Help.
#3

Quote:
Originally Posted by Kindred
Посмотреть сообщение
pawn Код:
if(sscanf(params, "s[256]", params))
^ Is that even possible? Isn't it like this?:
if(sscanf(stringtolookin, placeholders, variables to use))?

So I created a variable named url, and used it in place of params.

Try this:
pawn Код:
CMD:music(playerid, params[])
{
    if(!IsPlayerAdmin(playerid))
    {
        SendClientMessage(playerid, COLOR_RED, "You cannot use this command");
        return 1;
    }
    else
    {
        new string[128], url[128];
        if(sscanf(params, "s[256]", url)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /music [url]");
        if(!strcmp(url, "stop", true, 4))
        {
            StopAudioStreamForPlayer(playerid);
            SendClientMessage(playerid, COLOR_RED, " You have stopped listening to music.");
            return 1;
        }

        format(string, sizeof(string), "An Admin Has Started A Song. Use '/music stop' to stop the song");
        SendClientMessageToAll(COLOR_ORANGE, string);
        foreach(Player, i)
        {
            PlayAudioStreamForPlayer(i, url);
        }
    }
    return 1;
}
:\ That didn't work. I don't get errors but it doesn't work IG
Reply


Messages In This Thread
Audio Help. - by nogh445 - 12.08.2012, 00:45
Re: Audio Help. - by Kindred - 12.08.2012, 00:57
Re: Audio Help. - by nogh445 - 12.08.2012, 01:02
Re: Audio Help. - by Kindred - 12.08.2012, 01:09
Re: Audio Help. - by nogh445 - 12.08.2012, 01:10
Re: Audio Help. - by Kindred - 12.08.2012, 01:21
Re: Audio Help. - by nogh445 - 12.08.2012, 01:34

Forum Jump:


Users browsing this thread: 3 Guest(s)