Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Olá Pessoal, gostaria de um script da seguinte forma.

 

ao realizar um comando exemplo /check ip de número xxx.xxx.xxx.xx, irá abrir uma janelinha e mostrar todos os players que estão com o mesmo IP, se ninguém estiver como o mesmo IP não mostrar nada.

 

Já procurei em outros tópicos porém não achei desta forma.

 

Ficarei agradecido se alguém poder ajudar!

 

 

Editei o tópico para melhor entendimento.

Editado por Ronaldo Pains Pires (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

Já existe o comando /mc ?

92396059.png

                                                                                                                                                                                  

Link para o post
Compartilhar em outros sites

Sim.. O comando /mc

Fala assim: Player 1 (o IP dele)

Player 2 (o IP que apareceu no Player 1)

 

E purai vai :)

Te Ajudei ? +REP

 

Vendo VPS:

VPS-hosting.jpg

 

 

·         Processador: DUAL XEON

·         Memória Ram: Até 10GB

·         UPLINK: 1GBPS FULL DUPLEX

·         Tráfego: Ilimitado

·         Proteção DDoS Básica

·         01 IP FIXO

·         Plataforma: KVM/XEN ou OPENVZ

·         Painel SolusVM Integrado

·         SO: Windows ou Linux

 
·         Preço: a parti de 30,00

 

 

Vendo servidores de Tibia:

PBOT Full 8.60 e 9.8 (Sem bugs algum, totalmente igual ao original, Suprem Vocation, Vem com site etc)

Global Full 9.60 (Sem bugs, mapa totalmente igual ao original, Montaria.. )

Link para o post
Compartilhar em outros sites

Eu axo que não existe.. Só dando look no char dele !

Da +REP kk !

Te Ajudei ? +REP

 

Vendo VPS:

VPS-hosting.jpg

 

 

·         Processador: DUAL XEON

·         Memória Ram: Até 10GB

·         UPLINK: 1GBPS FULL DUPLEX

·         Tráfego: Ilimitado

·         Proteção DDoS Básica

·         01 IP FIXO

·         Plataforma: KVM/XEN ou OPENVZ

·         Painel SolusVM Integrado

·         SO: Windows ou Linux

 
·         Preço: a parti de 30,00

 

 

Vendo servidores de Tibia:

PBOT Full 8.60 e 9.8 (Sem bugs algum, totalmente igual ao original, Suprem Vocation, Vem com site etc)

Global Full 9.60 (Sem bugs, mapa totalmente igual ao original, Montaria.. )

Link para o post
Compartilhar em outros sites

Acho que ficaria assim mais ou menos:

function onSay(cid, words, param, channel)
    local _ip = nil
    if(param ~= '') then
        _ip = tonumber(param)
        if(not _ip or _ip == 0) then
            local revertIp = doRevertIp(param)
            if(not revertIp) then
                local tid = getPlayerByNameWildcard(param)
                if(not tid) then
                    _ip = nil
                else
                    _ip = getPlayerIp(tid)
                    if(_ip == 0) then
                        _ip = nil
                    end
                end
            else
                _ip = doConvertIpToInteger(revertIp)
            end
        end
    end

    local list, ips, players = {}, {}, getPlayersOnline()
    for i, pid in ipairs(players) do
        local ip = getPlayerIp(pid)
        if(ip ~= 0) then
            local tmp = table.find(ips, ip)
            if(tmp ~= nil and) then
                if(table.countElements(list, ip) == 0) then
                    list[players[tmp]] = ip
                end

                list[pid] = ip
            end

            table.insert(ips, ip)
        end
    end

    local total = table.maxn(list)
    if(total > 0) then
        doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Currently online players with same IP address(es):")
        for pid, ip in pairs(list) do
            doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, getCreatureName(pid) .. " (" .. doConvertIntegerToIp(ip) .. ")")
        end
        doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Total: " .. total .. " clients with more than one connection.")
    else
        doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Currently there aren't any players with same IP address(es).")
    end

    return true
end

 

Testa ai, to com sono e só tirei a função de ip = ip...

Bruno de Carvalho Câmara / Administrador TibiaKing

[email protected]


 

btn_donateCC_LG.gif

 

Em 26/12/2016 em 03:47, Spraypaint disse:

A força da alienação vem dessa fragilidade dos indivíduos, quando apenas conseguem identificar o que os separa e não o que os une.

-miltinho

 

wMwSJFE.png?1

 

Link para o post
Compartilhar em outros sites

Acho que ficaria assim mais ou menos:

 

function onSay(cid, words, param, channel)
    local _ip = nil
    if(param ~= '') then
        _ip = tonumber(param)
        if(not _ip or _ip == 0) then
            local revertIp = doRevertIp(param)
            if(not revertIp) then
                local tid = getPlayerByNameWildcard(param)
                if(not tid) then
                    _ip = nil
                else
                    _ip = getPlayerIp(tid)
                    if(_ip == 0) then
                        _ip = nil
                    end
                end
            else
                _ip = doConvertIpToInteger(revertIp)
            end
        end
    end

    local list, ips, players = {}, {}, getPlayersOnline()
    for i, pid in ipairs(players) do
        local ip = getPlayerIp(pid)
        if(ip ~= 0) then
            local tmp = table.find(ips, ip)
            if(tmp ~= nil and) then
                if(table.countElements(list, ip) == 0) then
                    list[players[tmp]] = ip
                end

                list[pid] = ip
            end

            table.insert(ips, ip)
        end
    end

    local total = table.maxn(list)
    if(total > 0) then
        doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Currently online players with same IP address(es):")
        for pid, ip in pairs(list) do
            doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, getCreatureName(pid) .. " (" .. doConvertIntegerToIp(ip) .. ")")
        end
        doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Total: " .. total .. " clients with more than one connection.")
    else
        doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Currently there aren't any players with same IP address(es).")
    end

    return true
end

 

Testa ai, to com sono e só tirei a função de ip = ip...

Ok, mais como ficaria no talkactions?

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo