antiblock
https://i.imgur.com/aJ17bf7.gif

SINOLOGY

Membro
  • Content Count

    428
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by SINOLOGY


  1. Ja procurei e nao encontro nenhum ficheiro syserr , como abro a consola na pasta ? 

    Prime a tecla Windows > Procura pela Linha de Comandos e executa com Administrador clicando com o lado direito do rato.

    Na linha de comandos escreves o seguinte:

     

    cd C:\Caminho do Cliente\ElusionMt2\

    (ENTER)

    start metin2client.bin

     

    *Caminho do Cliente* - Deve ser alterado pela localização exata do cliente no seu computador. (Exemplo: C:\Program Files\ElusionMt2\)

    WpmOf.png

     


  2. Tenho este sistema a funcionar por ID do mob da tabela mob_proto.
    Seria possível alterar para pegar no locale_name da tabela mob_proto em vez do ID?

     

    dofile("/usr/home/game/share/locale/germany/droplist.lua")
     
    function drop(self)
    if dropList[self].typ == "limit" then
    if dropList[self].min_level == nil or dropList[self].max_level == nil then return end
    if dropList[self].min_level > pc.level or dropList[self].max_level < pc.level then return end
    local chance,count
    table.foreach(dropList[self].dropps, function(i)
    if dropList[self].dropps[3] ~= nil then
    chance = dropList[self].dropps[3]
    else
    chance = 100
    end
    if dropList[self].dropps[2] ~= nil then
    count = dropList[self].dropps[2]
    else
    count = 1
    end
    if math.random(1, 100) < chance then
    game.drop_item_with_ownership(dropList[self].dropps[1], count)
    end
    end)
    elseif dropList[self].typ == "drop" then
    local chance,count
    table.foreach(dropList[self].dropps, function(i)
    if dropList[self].dropps[3] ~= nil then
    chance = dropList[self].dropps[3]
    else
    chance = 100
    end
    if dropList[self].dropps[2] ~= nil then
    count = dropList[self].dropps[2]
    else
    count = 1
    end
    if math.random(1, 100) < chance then
    game.drop_item_with_ownership(dropList[self].dropps[1], count)
    end
    end)
    else
    return
    end
    end

  3. Tenho este sistema a funcionar por ID do mob da tabela mob_proto.
    Seria possível alterar para pegar no locale_name da tabela mob_proto em vez do ID?

     

    dofile("/usr/home/game/share/locale/germany/droplist.lua")
    
    
    function drop(self)
    if dropList[self].typ == "limit" then
    if dropList[self].min_level == nil or dropList[self].max_level == nil then return end
    if dropList[self].min_level > pc.level or dropList[self].max_level < pc.level then return end
    local chance,count
    table.foreach(dropList[self].dropps, function(i)
    if dropList[self].dropps[i][3] ~= nil then
    chance = dropList[self].dropps[i][3]
    else
    chance = 100
    end
    if dropList[self].dropps[i][2] ~= nil then
    count = dropList[self].dropps[i][2]
    else
    count = 1
    end
    if math.random(1, 100) < chance then
    game.drop_item_with_ownership(dropList[self].dropps[i][1], count)
    end
    end)
    elseif dropList[self].typ == "drop" then
    local chance,count
    table.foreach(dropList[self].dropps, function(i)
    if dropList[self].dropps[i][3] ~= nil then
    chance = dropList[self].dropps[i][3]
    else
    chance = 100
    end
    if dropList[self].dropps[i][2] ~= nil then
    count = dropList[self].dropps[i][2]
    else
    count = 1
    end
    if math.random(1, 100) < chance then
    game.drop_item_with_ownership(dropList[self].dropps[i][1], count)
    end
    end)
    else
    return
    end
    end

     


  4. Tenho este sistema a funcionar por ID do mob da tabela mob_proto.
    Seria possível alterar para pegar no locale_name da tabela mob_proto em vez do ID?

    dofile("/usr/home/game/share/locale/germany/droplist.lua")
    
    
    function drop(self)
    if dropList[self].typ == "limit" then
    if dropList[self].min_level == nil or dropList[self].max_level == nil then return end
    if dropList[self].min_level > pc.level or dropList[self].max_level < pc.level then return end
    local chance,count
    table.foreach(dropList[self].dropps, function(i)
    if dropList[self].dropps[i][3] ~= nil then
    chance = dropList[self].dropps[i][3]
    else
    chance = 100
    end
    if dropList[self].dropps[i][2] ~= nil then
    count = dropList[self].dropps[i][2]
    else
    count = 1
    end
    if math.random(1, 100) < chance then
    game.drop_item_with_ownership(dropList[self].dropps[i][1], count)
    end
    end)
    elseif dropList[self].typ == "drop" then
    local chance,count
    table.foreach(dropList[self].dropps, function(i)
    if dropList[self].dropps[i][3] ~= nil then
    chance = dropList[self].dropps[i][3]
    else
    chance = 100
    end
    if dropList[self].dropps[i][2] ~= nil then
    count = dropList[self].dropps[i][2]
    else
    count = 1
    end
    if math.random(1, 100) < chance then
    game.drop_item_with_ownership(dropList[self].dropps[i][1], count)
    end
    end)
    else
    return
    end
    end

  5. Boas pessoal!

    Eu tenho este sistema a funcionar no meu servidor, mas esta a apanhar o ID do mob.
    É possível fazer isto funcionar com o Locale_Name da tabela mob_proto?
     

    dofile("/usr/home/game/share/locale/germany/droplist.lua")
    function drop(self)
        if dropList[self].typ == "limit" then
            if dropList[self].min_level == nil or dropList[self].max_level == nil then return end
            if dropList[self].min_level > pc.level or dropList[self].max_level < pc.level then return end
            local chance,count
            table.foreach(dropList[self].dropps, function(i)
                if dropList[self].dropps[3] ~= nil then
                    chance = dropList[self].dropps[3]
                else
                    chance = 100
                end
                if dropList[self].dropps[2] ~= nil then
                    count = dropList[self].dropps[2]
                else
                    count = 1
                end
                if math.random(1, 100) < chance then
                    game.drop_item_with_ownership(dropList[self].dropps[1], count)
                end
            end)
        elseif dropList[self].typ == "drop" then
            local chance,count
            table.foreach(dropList[self].dropps, function(i)
                if dropList[self].dropps[3] ~= nil then
                    chance = dropList[self].dropps[3]
                else
                    chance = 100
                end
                if dropList[self].dropps[2] ~= nil then
                    count = dropList[self].dropps[2]
                else
                    count = 1
                end
                if math.random(1, 100) < chance then
                    game.drop_item_with_ownership(dropList[self].dropps[1], count)
                end
            end)
        else
            return
        end
    end

  6. Polícia em primeiro, entrega de IMEI na vodafone como perdido.

    Bloquear através do Gestor como telemóvel perdido. (Se bem que um nerdzito arranja esse passo)

    Estando o GPS + IMEI + VODAFONE + POLICIA em alerta isso aparece um dia.


  7. Podes usar uma quest,

    quest use_items begin
    	state remove begin
    		when #.use begin
    			pc.remove_item(#, 1) -- (ID, QUANTIDADE)
    		end
    	end
    end
    Substitui o # pelo ID do item.

     

     

    Já tentei por quest, já tentei alterar no item_proto.txt serverside e nada... :/

    Nas capas isso funciona.


  8. Não sei se tens paciência ou não mas isto é um jogo, responde com o que te vier à cabeça sobre o nick da pessoa que foi a última a comentar abaixo.

    Quem é o primeiro a falar do meu?

    A pergunta é sempre "o que o meu nick faz-te lembrar/pensar?"


  9. Já tive uma coisa assim parecida com o meu ecrã de um antigo notebook.

     

    Abri aquilo tudo e era apenas um cabo dele que estava a soltar-se.

     

     

     

    Verifica se pode ser disso.

    Se não apenas posso pensar que é algo da tela em sim '-'

     

    Acho que é mesmo da tela em si... :/


  10. Sistema operativo danificado?

    Falta de sistema operativo?

    Tem disco? LOL...

    Se tiver disco, está a funcionar direito?

     

    Nunca me aconteceu nem nunca vi nada parecido, só estou a mandar bitaites mas já verificaste isso? ^^

     

    Tem disco, tem SO, mas notei agora uma cena com a RAM, parece que só tem um slot a funcionar o SO é o 7 ulti, bué pesado...

    Mas o mais estranho no meio de tudo, é que nem consigo aceder à BIOS (F2)

     

    Bah...


  11. Boas pessoas, tenho aqui um portátil que acende, aparece a BIOS por 2 segundos (com as opções para entrar na BIOS (F2) e para boot F12) no entando nenhum funciona, entrando para o sistema e ficando com o ecrã preto.

     

    Achei estranho, ontem estava com ele ligado, embora sempre com o mesmo problema :(

    Opiniões?

    Já o abri todo e lhe limpei...

     

    Continua...

     

    2 segundos bios aparece, n entra e n dá para fazer nada...


  12. Boas Cyber.

     

    Crio mapas para servidores, como dungeons, cidades, vilas ou crio mesmo a tua ideia.

    Crio quest's

     

    Imagens de login, select e loading e também para outros tipos como (websites)

    Edição de cor de monstros para a tonalidade correta.

    Edição de cor de edifícios para a tonalidade correta.

    Alteração de texturas no chão do cliente.

    Edição e Correção de Quest's.

     

    Proteções em serverside.

    E muito mais...

    Contato skype: martinsgogo96
     


  13. KORKEN vai comentar, KORKEN vai, vai KORKEN, e comentou...

    É AMOR AO CLUBE, COISA QUE NENHUM DOS CLUBES PARECE QUE TEM, É BENFICA, É BENFICA!

    É O GLORIOSO!!!!

     

    Há momentos e momentos, dou os meus parabéns aos Leões, não há nada a acrescentar sobre o jogo, acho que são os 2 assuntos mais falados por agora em Portugal... A arbitragem e a maneira de como o Benfica jogou... O treinador Rui Vitória entrou com o 11 inicial que usou no jogo com Galatasaray no qual o benfica perdeu por 2-1 no dia 21.

     

    Infelizmente não sei o que lhe deu na cabeça, mas ele lá sabe o que faz e nem vou estar a comentar o trabalho dele.  :facepalm:

    Em relação ao nosso querido amigo Jorge Jesus, vi o que ele disse na conferência e parece que ainda é o treinador do Benfica... só fala no Benfica.
    Parece que entrou em depressão por ter sido o treinador mais falado de Portugal e arredores em todo o mundo, fazia tanto barulho nas conferências agora parece um "pato" que nem fala. Aliás... Fala no Benfica. E como sempre lança a sua piada (sem graça nenhuma).

    Cumprimentos;
    KORKEN.