[Pedido] Comando GMX com tempo determinado
#1

Bom, eu tentei fazer um SetTimer, deu erro, tentei tambйm com SetTimerEx, deu erro! lol, vou postar o comando normal...

pawn Code:
CMD:gmx(playerid)
{
    if(Info[playerid][zAdmin] >= 5)
    {
        GetPlayerName(playerid,pNome,MAX_PLAYER_NAME);
        format(String,sizeof(String),"{7FFFD4}O Adminitrador {AFEEEE}%s{7FFFD4} deu GMX no Servidor!",pNome);
        SendClientMessageToAll(SUCESS, String);
        for(new i; i < MAX_PLAYERS; ++i)
        {
            SalvarConta(i);
        }
        SendRconCommand("Gmx");
    }
    else
    {
        SendClientMessage(playerid, FAIL, NAOADM);
    }
    return 1;
}
Alguem ajuda ae o/
Reply
#2

Tempo = segundos
pawn Code:
SetTimer("Exit",Tempo*1000, false);
Reply
#3

Quote:
Originally Posted by Viniborn
View Post
Tempo = segundos
pawn Code:
SetTimer("Exit",Tempo*1000, false);
Eu sei mano, mas para isso vou ter que fazer uma public pra colocar isso:
pawn Code:
for(new i; i < MAX_PLAYERS; ++i)
        {
            SalvarConta(i);
        }
        SendRconCommand("Gmx");
e й nessa parte que da erro...
Reply
#4

tentas:
pawn Code:
CMD:gmx(playerid)
{
    if(Info[playerid][zAdmin] >= 5)
    {
        GetPlayerName(playerid,pNome,MAX_PLAYER_NAME);
        format(String,sizeof(String),"{7FFFD4}O Adminitrador {AFEEEE}%s{7FFFD4} deu GMX no Servidor!",pNome);
        SendClientMessageToAll(SUCESS, String);
       
        for(new i, e = GetMaxPlayers(); i != e; ++i){
            SalvarConta(i);
        }
       
        SetTimer("Down",  Tempo * 1000, false);
    }
    else
    {
        SendClientMessage(playerid, FAIL, NAOADM);
    }
    return 1;
}

Down(); public Down()
{
    return SendRconCommand("gmx");
}
Reply
#5

Quote:
Originally Posted by [Full]Garfield[XDB]
View Post
tentas:
pawn Code:
CMD:gmx(playerid)
{
    if(Info[playerid][zAdmin] >= 5)
    {
        GetPlayerName(playerid,pNome,MAX_PLAYER_NAME);
        format(String,sizeof(String),"{7FFFD4}O Adminitrador {AFEEEE}%s{7FFFD4} deu GMX no Servidor!",pNome);
        SendClientMessageToAll(SUCESS, String);
       
        for(new i, e = GetMaxPlayers(); i != e; ++i){
            SalvarConta(i);
        }
       
        SetTimer("Down",  Tempo * 1000, false);
    }
    else
    {
        SendClientMessage(playerid, FAIL, NAOADM);
    }
    return 1;
}

Down(); public Down()
{
    return SendRconCommand("gmx");
}
Vlw gatгo!
PHP Code:
Rep 
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)