MUSIC HELPPP PLEASE HELP
#6

pawn Код:
CMD:musicall(playerid, params[])
{
    if(pInfo[playerid][pLevel] >= 1)
    {
        new string_url[101];
        if(sscanf(params, "s[101]", string_url)) return SendClientMessage(playerid, -1, "usage: /musicall url.");
        if(strlen(string_url) > 1 && strlen(string_url) < 101)
        {
            for(new i = 0; i < MAX_PLAYERS; i++)
            {
                if(IsPlayerConnected(i))
                {
                    PlayAudioStreamForPlayer(i, string_url);
                }
            }
        }
        else
        {
            SendClientMessage(playerid, -1, "usage: /musicall url (min 1 character, max 100).");
        }
    }
    else
    {
        SendClientMessage(playerid, -1, "You are not administrator.");
    }
    return true;
}
Reply


Messages In This Thread
MUSIC HELPPP PLEASE HELP - by Mijata - 04.01.2015, 19:22
Respuesta: MUSIC HELPPP PLEASE HELP - by JuanStone - 04.01.2015, 19:28
Re: Respuesta: MUSIC HELPPP PLEASE HELP - by Mijata - 04.01.2015, 19:38
Respuesta: MUSIC HELPPP PLEASE HELP - by JuanStone - 04.01.2015, 19:41
Re: MUSIC HELPPP PLEASE HELP - by Mijata - 04.01.2015, 19:46
Respuesta: MUSIC HELPPP PLEASE HELP - by JuanStone - 04.01.2015, 19:49
Re: MUSIC HELPPP PLEASE HELP - by Mijata - 04.01.2015, 19:50
Re: MUSIC HELPPP PLEASE HELP - by Mijata - 04.01.2015, 19:56

Forum Jump:


Users browsing this thread: 1 Guest(s)