[Ajuda] Como Fazer
#1

Queria Que O Player Fosse Agendado Quando Estiver Online
Comando de agendar

pawn Код:
if(strcmp(cmd, "/agendarcadeia", true) == 0 || strcmp(cmd, "/agendarcarandiru", true) == 0 || strcmp(cmd, "/punirnick", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            new playa[64];
            new money;
            playa = strtok(cmdtext, idx);
            tmp = strtok(cmdtext, idx);
            if(!strlen(playa))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "[BGL] /agendarcadeia [Nome] [Tempo(Minutos)] [Motivo]");
                return 1;
            }
            money = strval(tmp);
            if (PlayerInfo[playerid][pAdmin] >= 2)
            {
                if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 1341 && PlayerInfo[playerid][pAdmin] != 1342)
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
                    return 1;
                }
                new length = strlen(cmdtext);
                while ((idx < length) && (cmdtext[idx] <= ' '))
                {
                    idx++;
                }
                new offset = idx;
                new result[64];
                while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
                {
                    result[idx - offset] = cmdtext[idx];
                    idx++;
                }
                result[idx - offset] = EOS;
                if(!strlen(result))
                {
                    SendClientMessage(playerid, COLOR_GRAD2, "[BGL] /agendarcadeia [id] [Tempo(Minutos)] [motivo]");
                    return 1;
                }
                new arquivo[64];
                format(arquivo, sizeof(arquivo), "Players/%s.ini",playa);
                GetPlayerName(playerid, sendername, sizeof(sendername));
                if(!dini_Exists(arquivo))
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "[BGL] Conta Inexistente!");
                    return true;
                }
                format(arquivo, sizeof(arquivo), "Agendados/Agendado-%s.ini",playa);
                if(dini_Exists(arquivo))
                {
                    dini_Set(arquivo,"Admin",sendername); // Admin
                    dini_Set(arquivo,"Motivo",result); // Motivo
                    dini_IntSet(arquivo,"Tempo",money); // Tempo
                    format(gstring,sizeof(gstring), "[BGL]: {EE8262}%s{EE8262} agendou {EE8262}%s{EE8262}.Tempo: {EE8262}%d{EE8262} Minutos. Motivo: {EE8262}%s{EE8262}.", sendername,playa,money,result);
                    SendClientMessageToAll(COLOR_LIGHTRED, gstring);
                }
                else
                {
                    dini_Create(arquivo);
                    dini_Set(arquivo,"Admin",sendername); // Admin
                    dini_Set(arquivo,"Motivo",result); // Motivo
                    dini_IntSet(arquivo,"Tempo",money); // Tempo
                    format(gstring,sizeof(gstring), "[BGL]: {EE8262}%s{EE8262} agendou {EE8262}%s{EE8262}.Tempo: {EE8262}%d{EE8262} Minutos. Motivo: {EE8262}%s{EE8262}.", sendername,playa,money,result);
                    SendClientMessageToAll(COLOR_LIGHTRED, gstring);
                }
                return 1;
            }
            else
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo tem permissao para usar esse comando!");
            }
        }
        return 1;
    }
pawn Код:
Public Agendou
public VerificarAgendado(agendado, playerid)
{
    new arquivo[64], AgendadoTempo, AgendadoMotivo[64], AgendadoNome[64]; // new's do Agendamento
    if(agendado == 1) // Funзгo de Verificar o Player
    {
        format(arquivo, sizeof(arquivo), "Agendados/Agendado-%s.ini",PlayerName(playerid));
        if(dini_Exists(arquivo)) //Verifica se o Player estб agendado
        {
            strmid(AgendadoNome, dini_Get(arquivo,"Admin"), 0, strlen(dini_Get(arquivo,"Admin")), 255); //Admin
            strmid(AgendadoMotivo, dini_Get(arquivo,"Motivo"), 0, strlen(dini_Get(arquivo,"Motivo")), 255); //Motivo
            AgendadoTempo = dini_Int(arquivo,"Tempo"); // Tempo
            format(gstring, sizeof(gstring), "*Admin {80E3FF}%s {E84F33}Agendou Sua Prisгo, Motivo: {80E3FF}%s{E84F33}.", AgendadoNome,AgendadoMotivo);
            SendClientMessage(playerid, COLOR_LIGHTRED, gstring);
            format(gstring, sizeof(gstring), "Vocк foi preso por {80E3FF}%d{E84F33} Minutos Automaticamente, Agendado pelo Admin.", AgendadoTempo);
            SendClientMessage(playerid, COLOR_LIGHTRED, gstring);
            GameTextForPlayer(playerid, "~g~Bem Vindo ~b~a ~n~~r~Cadeia ~y~Agendada", 5000, 3);
            PlayerInfo[playerid][pJailed] = 10; // Jailed 10, Cadeia Agendada
            PlayerInfo[playerid][pJailTime] = AgendadoTempo * 60; // Multiplicar por 60 devido a ser minutos
            SetPlayerPos(playerid, 346.5848, 306.1026, 999.1484);
            WantedPoints[playerid] = 0;
            ResetPlayerWeapons(playerid); // Tira as Armas do Player
            SetPlayerWantedLevel(playerid, 0);
            SetPlayerInterior(playerid,6);
            format(gstring, sizeof(gstring), "[Agendado]: {80E3FF}%s {E84F33}estб agendado e foi preso por {80E3FF}%d Minutos{E84F33}.Motivo: {80E3FF}%s{E84F33}.",PlayerName(playerid),AgendadoTempo,AgendadoMotivo);
            SendClientMessageToAll(COLOR_LIGHTRED, gstring);
            fremove(arquivo);
        }
        return 1;
    }
    return 1;
}
Obs : Ele sу agenda quando loga
Reply
#2

Eta preguiзa de pensar
pawn Код:
if(strcmp(cmd, "/agendarcadeia", true) == 0 || strcmp(cmd, "/agendarcarandiru", true) == 0 || strcmp(cmd, "/punirnick", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            new playa[64];
            new money;
            playa = strtok(cmdtext, idx);
            tmp = strtok(cmdtext, idx);
            if(!strlen(playa))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "[BGL] /agendarcadeia [Nome] [Tempo(Minutos)] [Motivo]");
                return 1;
            }
            money = strval(tmp);
            if (PlayerInfo[playerid][pAdmin] >= 2)
            {
                if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 1341 && PlayerInfo[playerid][pAdmin] != 1342)
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
                    return 1;
                }
                new length = strlen(cmdtext);
                while ((idx < length) && (cmdtext[idx] <= ' '))
                {
                    idx++;
                }
                new offset = idx;
                new result[64];
                while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
                {
                    result[idx - offset] = cmdtext[idx];
                    idx++;
                }
                result[idx - offset] = EOS;
                if(!strlen(result))
                {
                    SendClientMessage(playerid, COLOR_GRAD2, "[BGL] /agendarcadeia [id] [Tempo(Minutos)] [motivo]");
                    return 1;
                }
                new arquivo[64];
                format(arquivo, sizeof(arquivo), "Players/%s.ini",playa);
                GetPlayerName(playerid, sendername, sizeof(sendername));
                if(!dini_Exists(arquivo))
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "[BGL] Conta Inexistente!");
                    return true;
                }
                format(arquivo, sizeof(arquivo), "Agendados/Agendado-%s.ini",playa);
                if(dini_Exists(arquivo))
                {
                    dini_Set(arquivo,"Admin",sendername); // Admin
                    dini_Set(arquivo,"Motivo",result); // Motivo
                    dini_IntSet(arquivo,"Tempo",money); // Tempo
                    format(gstring,sizeof(gstring), "[BGL]: {EE8262}%s{EE8262} agendou {EE8262}%s{EE8262}.Tempo: {EE8262}%d{EE8262} Minutos. Motivo: {EE8262}%s{EE8262}.", sendername,playa,money,result);
                    SendClientMessageToAll(COLOR_LIGHTRED, gstring);
                    VerificarAgendado(1, playa);
                }
                else
                {
                    dini_Create(arquivo);
                    dini_Set(arquivo,"Admin",sendername); // Admin
                    dini_Set(arquivo,"Motivo",result); // Motivo
                    dini_IntSet(arquivo,"Tempo",money); // Tempo
                    format(gstring,sizeof(gstring), "[BGL]: {EE8262}%s{EE8262} agendou {EE8262}%s{EE8262}.Tempo: {EE8262}%d{EE8262} Minutos. Motivo: {EE8262}%s{EE8262}.", sendername,playa,money,result);
                    SendClientMessageToAll(COLOR_LIGHTRED, gstring);
                    VerificarAgendado(1, playa);
                }
                return 1;
            }
            else
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo tem permissao para usar esse comando!");
            }
        }
        return 1;
    }
Reply
#3

Rep +
Falta de Pensamento

vlw
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)