[Pedido] Adaptaзгo de comandos
#5

Quote:
Originally Posted by Ley
Посмотреть сообщение
PHP код:
Participante[0] = Usuario1
Participante[1] = Usuario2
Colocando essas linhas no comando de participaзгo? Nгo irб gerar possнvel conflito adicionando mais de um usuбrio no "Participante[0]"? Terб como me explicar? Grato!
Cada cйlula й um participante.

Usuario1 e Usuario2 seria o id dos players.

@EDIT

Tente dessa forma

PHP код:
#define MAX_PARTICIPANTE 3
new Participante[MAX_PARTICIPANTE];
CMD:participantes(playeridparams[])
{
    new 
id1id2id3;
    if(
sscanf(params"iii"id1id2id3))
        return 
SendClientMessage(playerid, -1"use: /participantes [primeiro] [segundo] [terceiro]");
    if(!
IsPlayerConnected(id1))
        return 
SendClientMessage(playerid, -1"Primeiro jogador nгo conectado.");
    if(!
IsPlayerConnected(id2))
        return 
SendClientMessage(playerid, -1"Segundo jogador nгo conectado.");
    if(!
IsPlayerConnected(id3))
        return 
SendClientMessage(playerid, -1"Terceiro jogador nгo conectado.");
    
Participante[0] = id1;
    
Participante[1] = id2;
    
Participante[2] = id3;
    return 
1;
}
CMD:votar(playerid)
{
    new 
name[MAX_PARTICIPANTE][20], str[128];
    
GetPlayerName(Participante[0], name[0], 20);
    
GetPlayerName(Participante[1], name[1], 20);
    
GetPlayerName(Participante[2], name[2], 20);
    
format(str128"Participante 1: %s\nParticipante 2: %s\nParticipante 1: %s"name[0], name[1]); 
    
ShowPlayerDialog(playerid2345DIALOG_STYLE_LIST"TESTE | Escolha um usuбrio:"str"Testar""Cancelar");
    return 
1;
}
public 
OnDialogResponse(playeriddialogidresponselistiteminputtext[])
{
    if(
dialogid == 2345)
    {
        if(
response)
        {
            new 
str[30], name[20];
            
GetPlayerName(Participante[listitem], name20);
            
format(str30"Vocк votou no participante %s"name);
            
SendClientMessage(playerid, -1str);
        }
    }
    return 
1;

Reply


Messages In This Thread
Adaptaзгo de comandos - by Ley - 12.01.2016, 17:26
Re: Adaptaзгo de comandos - by EditPawn - 12.01.2016, 17:46
Re: Adaptaзгo de comandos - by Ever_SH - 12.01.2016, 17:48
Re: Adaptaзгo de comandos - by Ley - 12.01.2016, 19:09
Re: Adaptaзгo de comandos - by EditPawn - 12.01.2016, 19:19
Re: Adaptaзгo de comandos - by Ley - 13.01.2016, 13:27
Re: Adaptaзгo de comandos - by focaximubh - 13.01.2016, 19:06
Re: Adaptaзгo de comandos - by Ley - 14.01.2016, 07:13
Re: Adaptaзгo de comandos - by EditPawn - 14.01.2016, 10:44
Re: Adaptaзгo de comandos - by Coringa_Vilao - 14.01.2016, 11:10

Forum Jump:


Users browsing this thread: 4 Guest(s)