Ir para conteúdo

Tricoder

Héroi
  • Registro em

  • Última visita

Tudo que Tricoder postou

  1. Tricoder postou uma resposta no tópico em Suporte Tibia OTServer
    Tente colocando o IP Fixo do config.lua
  2. Baixe um outro servidor que não dê erro da mesma versão e transfira as pastas data/lib e data/npc/lib para o do seu servidor. (terá que substitutir)
  3. Tricoder postou uma resposta no tópico em Suporte Tibia OTServer
    Memória RAM.
  4. Tricoder postou uma resposta no tópico em Suporte Tibia OTServer
    Memória do seu computador é baixa. E precisa atualizar seu Windows, pra versão mais recente, 64 Bits.
  5. Mude o título de seu tópico para "Como montar servidor narutibia nto?" Sobre seu pedido, basta usar a ferramenta Pesquisar. http://www.tibiaking.com/forum/topic/23195-854-naruto-seven-client-descompilado-download/ http://www.tibiaking.com/forum/topic/13457-854-naruto-atarashi-online-v1-beta/ http://www.tibiaking.com/forum/topic/22825-854-naruto-online-shinobi/ http://www.tibiaking.com/forum/topic/15730-854-naruto-legend/ http://www.tibiaking.com/forum/topic/29464-server-nto/
  6. Tente trocar por essa database: https://www.mediafire.com/?pnh9ew7vxr6m7eb
  7. Afinal, que script foi usado no texto.lua?
  8. Não tenho muito conhecimento nessa parte mas vou tentar te ajudar. creaturescripts <event type="kill" name="PlayerKill" event="script" value="arenakill.lua"/> arenakill.lua function onKill(cid, target) local room = getArenaMonsterIdByName(getCreatureName(target)) if room > 0 then setPlayerStorageValue(cid, room, 1) doPlayerSendTextMessage(cid,MESSAGE_EVENT_DEFAULT,'Voce pode entrar na proxima sala !') end return TRUE end login.lua (depois do último registercreature) if (InitArenaScript ~= 0) then InitArenaScript = 1 for i = 42300, 42309 do setGlobalStorageValue(i, 0) setGlobalStorageValue(i+100, 0) end end if getPlayerStorageValue(cid, 42309) < 1 then for i = 42300, 42309 do setPlayerStorageValue(cid, i, 0) end end if getPlayerStorageValue(cid, 42319) < 1 then for i = 42310, 42319 do setPlayerStorageValue(cid, i, 0) end end if getPlayerStorageValue(cid, 42329) < 1 then for i = 42320, 42329 do setPlayerStorageValue(cid, i, 0) end end if getPlayerStorageValue(cid, 42355) == -1 then setPlayerStorageValue(cid, 42355, 0) end setPlayerStorageValue(cid, 42350, 0) setPlayerStorageValue(cid, 42352, 0) return true end
  9. Tricoder postou uma resposta no tópico em Mapas de Tibia
    Tamanho: 64 KB. Categoria: Mapa. Versão: 10.10 Créditos: hellpsy Download: Trojan TibiaKing.com.rar Scan: VirusTotal Screenshot;
  10. Tricoder postou uma resposta no tópico em Mapas de Tibia
    Tamanho: 72 KB. Categoria: Mapa. Versão: 10.31 Créditos: Slec Download: Elves TibiaKing.com.rar Scan: VirusTotal Screenshot;
  11. Tricoder postou uma resposta no tópico em Mapas de Tibia
    Tamanho: 14 KB. Categoria: Mapa. Versão: 10.10 Créditos: hellpsy Download: poop TibiaKing.com.rar Scan: VirusTotal Screenshot;
  12. Tricoder postou uma resposta no tópico em Mapas de Tibia
    Tamanho: 290 KB. Categoria: Mapa. Versão: 10.10 Créditos: Neon Download: Jungle Ruins TibiaKing.com.rar Scan: VirusTotal Screenshot;
  13. Tricoder postou uma resposta no tópico em Mapas de Tibia
    Tamanho: 27 KB. Categoria: Mapa. Versão: 10.31 Créditos: Slec Download: banshee TibiaKing.com.rar Scan: VirusTotal Screenshot;
  14. Tricoder postou uma resposta no tópico em Mapas de Tibia
    Categoria: Mapa. Versão: 10.x Créditos: Oldschool'er Download: bank TibiaKing.com.rar Scan: VirusTotal
  15. Tricoder postou uma resposta no tópico em Mapas de Tibia
    Categoria: Mapa. Versão: 10.x Créditos: Oldschool'er Download: boat TibiaKing.com.rar Scan: VirusTotal Screenshot;
  16. Categoria: Mapa. Versão: 10.10 Créditos: zkum Download: rook TibiaKing.com.rar Scan: VirusTotal Screenshot;
  17. Categoria: Mapa. Versão: 10.10 Créditos: zkum Download: abtracks TibiaKing.com.rar Scan: VirusTotal Screenshot;
  18. Magina! Tente alterando pra isso:
  19. Tricoder postou uma resposta no tópico em Suporte Tibia OTServer
    Baixe o arquivo: lib.rar ou esse, caso não funcione: lib.rar Vá em data/npc Apague a pasta "lib" e extraia o arquivo baixado para o mesmo diretório (data/npc) Se seu problema foi resolvido, marque esse post como melhor resposta. Se não foi, avise que tentarei ajudá-lo.
  20. Recomendo trocar o sqlite por mysql.
  21. Verifique o config.lua: deathListEnabled = true Depois verifique se na sua database (phpmyadmin), há a coluna player_deaths. Se seu servidor for 8.6, verifique se em data/creaturescripts há o arquivo player_deaths.lua(algo assim) e esta esse código: local config = { deathListEnabled = getBooleanFromString(getConfigInfo('deathListEnabled')), sqlType = getConfigInfo('sqlType'), maxDeathRecords = getConfigInfo('maxDeathRecords') } config.sqlType = config.sqlType == "sqlite" and DATABASE_ENGINE_SQLITE or DATABASE_ENGINE_MYSQL function onDeath(cid, corpse, lastHitKiller, mostDamageKiller) if(config.deathListEnabled ~= TRUE) then return end local hitKillerName = "field item" local damageKillerName = "" if(lastHitKiller ~= FALSE) then if(isPlayer(lastHitKiller) == TRUE) then hitKillerName = getPlayerGUID(lastHitKiller) else hitKillerName = getCreatureName(lastHitKiller) end if(mostDamageKiller ~= FALSE and mostDamageKiller ~= lastHitKiller and getCreatureName(mostDamageKiller) ~= getCreatureName(lastHitKiller)) then if(isPlayer(mostDamageKiller) == TRUE) then damageKillerName = getPlayerGUID(mostDamageKiller) else damageKillerName = getCreatureName(mostDamageKiller) end end end db.executeQuery("INSERT INTO `player_deaths` (`player_id`, `time`, `level`, `killed_by`, `altkilled_by`) VALUES (" .. getPlayerGUID(cid) .. ", " .. os.time() .. ", " .. getPlayerLevel(cid) .. ", " .. db.escapeString(hitKillerName) .. ", " .. db.escapeString(damageKillerName) .. ");") local rows = db.getResult("SELECT `player_id` FROM `player_deaths` WHERE `player_id` = " .. getPlayerGUID(cid) .. ";") if(rows:getID() ~= -1) then local amount = rows:getRows(true) - config.maxDeathRecords if(amount > 0) then if(config.sqlType == DATABASE_ENGINE_SQLITE) then for i = 1, amount do db.executeQuery("DELETE FROM `player_deaths` WHERE `rowid` = (SELECT `rowid` FROM `player_deaths` WHERE `player_id` = " .. getPlayerGUID(cid) .. " ORDER BY `time` LIMIT 1);") end else db.executeQuery("DELETE FROM `player_deaths` WHERE `player_id` = " .. getPlayerGUID(cid) .. " ORDER BY `time` LIMIT " .. amount .. ";") end end end end
  22. O site não é compatível com a versão do DB
  23. Ou as vezes o problema também pode ser no tamanho do nick do player, com admins da o problema de players com nome grande, não recebem o item.
  24. Na versão 8.60, prefiro usar OTX.

Informação Importante

Confirmação de Termo