[Pedido] MP3 Pra todos ouvirem
#5

pawn Код:
forward PlayAudioStreamForAll(url[]);
forward StopAudioStreamForAll();

public PlayAudioStreamForAll(url[]) {
    for(new i = 0; i < MAX_PLAYERS; i++) {
        if(IsPlayerConnected(i))
            PlayAudioStreamForPlayer(i, url);
    }
    return 1;
}

public StopAudioStreamForAll() {
    for(new i = 0; i < MAX_PLAYERS; i++) {
        if(IsPlayerConnected(i))
            StopAudioStreamForPlayer(i);
    }
    return 1;
}
Essas 2 funзхes devem fazer o trabalho.

Comando, em zcmd:
pawn Код:
CMD:Radio(playerid, params[]) {
    static Bool:on = false;
    (!on ? PlayAudioStreamForAll(url) : StopAudioStreamForAll());
    (!on ? on = true : on = false);
    return 1;
}
Cуdigo nгo testado.
Reply


Messages In This Thread
MP3 Pra todos ouvirem - by rodrigooo - 27.12.2013, 10:19
Re: [Pedido] MP3 Pra todos ouvirem - by i7Core - 27.12.2013, 15:07
Re: [Pedido] MP3 Pra todos ouvirem - by rodrigooo - 27.12.2013, 15:52
Re: [Pedido] MP3 Pra todos ouvirem - by Schocc - 27.12.2013, 15:54
Re: [Pedido] MP3 Pra todos ouvirem - by GWMPT - 27.12.2013, 16:37

Forum Jump:


Users browsing this thread: 3 Guest(s)