[Ajuda] Ant-Divulgue
#4

Victor, se eu quizesse adaptar ele para colocar tambйm ao player executar um comando?
Ex o player digita /anuncio2 e coloca o ip do servidor dele.

pawn Код:
if(strcmp(cmd, "/anuncio2", true) == 0 || strcmp(cmd, "/an2", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(gPlayerLogged[playerid] == 0)
            {
                SendClientMessage(playerid, COLOR_GREY, "   Vocк Nгo Estб Logado !");
                return 1;
            }
            GetPlayerName(playerid, sendername, sizeof(sendername));
            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, "USO: (/an)uncio [TeXtO]");
                return 1;
            }
            if(PlayerInfo[playerid][pLevel] < 3)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "Vocк precisa ser nнvel 3 ou mais para anunciar");
                return 1;
            }
            if((!adds) && (PlayerInfo[playerid][pAdmin] < 1))
            {
                format(string, sizeof(string), "   Por Favor, Tente Apуs %d Segundo Para o Proximo Anъncio !",  (addtimer/1000));
                SendClientMessage(playerid, COLOR_GRAD2, string);
                return 1;

            }
            new payout = idx * 2;
            if(GetPlayerGP(playerid) < payout)
            {
                format(string, sizeof(string), "Vocк Usou %d characteres e custou $%d, Vocк nгo tem Esse Dinheiro.", offset, payout);
                SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
                return 1;
            }
            GivePlayerGP(playerid, - payout);
            SBizzInfo[7][sbTill] += payout;
            ExtortionSBiz(7, payout);
            format(string, sizeof(string), "Anъncio: %s, Contato: %s Tel: %d",  result, sendername,PlayerInfo[playerid][pPnumber]);
            OOCNews(TEAM_GROVE_COLOR,string);
            format(string, sizeof(string), "~r~Pagou $%d~n~~w~Mensagem Contem: %d Characteres", payout, idx);
            GameTextForPlayer(playerid, string, 5000, 5);
            SetTimer("AddsOn", addtimer, 0);adds = 0;
        }
        return 1;
    }
@edit
deu um erro porque faltou colocar no new
IPTent1

eu deixei assim ta correto?:
pawn Код:
public AntiDivulguer(texto[])
{
    new IPTent[4][128],IPTent1[5][128],IPTentPort[1][128],ipcompleto[256];
    split(texto,IPTent,'.');
    split(texto,IPTent1,' ');
    split(texto,IPTentPort,':');
    format(ipcompleto,sizeof(ipcompleto),"%d.%d.%d.%d:%d",strval(IPTent[0]),strval(IPTent[1]),strval(IPTent[2]),strval(IPTent[3]),strval(IPTentPort[0]),strval(IPTent1[0]));
    if(strval(IPTent[1])>0&&strval(IPTent[2])>0&&strval(IPTent[3])>0&&strcmp(SV,texto,true)==-1&&strcmp(TS,texto,true)==-1)
    {
        return 1;
    }
    return 0;
}
Reply


Messages In This Thread
[Ajuda] Ant-Divulgue - by Ichigo_Kurosaki - 08.05.2012, 13:39
Re: [Ajuda] Ant-Divulgue - by steki. - 08.05.2012, 14:16
Re: [Ajuda] Ant-Divulgue - by ViictorDaay- - 08.05.2012, 14:28
Respuesta: [Ajuda] Ant-Divulgue - by Ichigo_Kurosaki - 08.05.2012, 14:38
Re: [Ajuda] Ant-Divulgue - by ViictorDaay- - 08.05.2012, 14:49
Respuesta: [Ajuda] Ant-Divulgue - by Ichigo_Kurosaki - 08.05.2012, 21:08
Re: [Ajuda] Ant-Divulgue - by Caio_Freeze - 09.05.2012, 03:52
Respuesta: [Ajuda] Ant-Divulgue - by Ichigo_Kurosaki - 09.05.2012, 10:11

Forum Jump:


Users browsing this thread: 1 Guest(s)