Ir para conteúdo
US
Blazera 8.60
blazera.net
SOBRE O BLAZERA
Um fresh start em um servidor 8.6 clássico, com real map, focado na experiência raiz do Tibia. | Classic Real Map • Fresh Start • Client 8.6 • Old School Gameplay • Active Community
Inicia em: --
Participar

Absolute

Héroi
  • Registro em

  • Última visita

Tudo que Absolute postou

  1. Poste foto como está sua pasta world, caso contrário tente colocar um backup do mapa.
  2. Tente: mapName = "Baiak Yurots.otbm" mapAuthor = "Eek" randomizeTiles = true useHouseDataStorage = false storeTrash = true cleanProtectedZones = true mailboxDisabledTowns = "-1"
  3. Absolute postou uma resposta no tópico em Suporte Tibia OTServer
    Qual sua dúvida?
  4. No painel de denúncias você denunciou o post do membro ViitinG com o comentário: "remoção indevida!" Queria deixar claro que nenhum post foi removido e sim transferido para área correta. Você postou o mesmo em uma área de download de servidores 8.6 (ou seja área onde membros postam servidores prontos para download). No tópico você diz estar procurando alguém para ajuda-lo, pois então a área certa é a de "Formação de Equipes" Peço que caso haja alguma dúvida nos pergunte. Não esqueça de ler as Regras antes de fazer uma denúncia.
  5. Isto é que as libs do linux são incompatíveis com o tfs, remova-as, porém recomendo formatar a máquina e instalar libs compatíveis com as sources.
  6. Independe de qual seja, é necessário scan em qualquer tópico que tenha download. Leia as Regas . @Obrigado pelo Scan.
  7. Uai, só divulgar o IP pra quem você quer que entre não é mais fácil? E quanto a questão da lan house é porque as portas do modem são bloqueadas entrando apenas os que usam a mesma rede do host (lan house)
  8. Absolute postou uma resposta no tópico em Suporte Tibia OTServer
    Com certeza o instalador cria a pasta, ou seja o instalador é PRA ISSO! ele cria a pasta onde você instala.
  9. Esqueci de atualizar rs, A Weblara e Lnetworks ja me notificar afirmando ter entregue o prêmio aos ganhadores. Até o próximo concurso õ/
  10. Brother, que eu saiba a 0.3.6 e a 0.4 tem as mesmas funções...
  11. Vou trocar.
  12. Gente calma deixo acordar são 04:35 kkk Enfim, podemos ver que o script busca uma query que é a db.executeQuery("DELETE FROM `z_ots_comunication` WHERE `id` = " .. id .. ";") db.executeQuery("UPDATE `z_shop_history_item` SET `trans_state`='realized', `trans_real`=" .. os.time() .. " WHERE id = " .. id .. ";") e obviamente na distro está com erro de attempt, ou seja erro na hora da função query do script Veja se na sua database tem a tabela z_shop_history_item com as colunas trans_state e trans_real e me avise.
  13. O Erro do SQL na distro continua o mesmo?
  14. Tente: @Edit O membro acima refere-se a esta tabela tente adicionar:
  15. kkk, preciso testar em um site, vou testar em um meu e já atualizo.
  16. 2.4 - Mensagens inúteis: Não poste mensagens sem conteúdo, que não contribuem em nada ou que não estejam relacionadas ao assunto do tópico. Mensagens assim são chamadas de Floods. Postar coisas como "haha", "lol", "me add no msn aí", entre outras, é o que considera-se completamente inútil. Postar várias mensagens iguais, mesmo que em tópicos diferentes, também pode ser considerado Flood. Alertado, leia as Regras .
  17. É Linux ou Windows? PS: poste o layout.php
  18. Absolute postou uma resposta no tópico em Suporte Tibia OTServer
    Então coloque a position dele ai no sqlite e no config.lua tem: accountManager = false deixe: accountManager = true
  19. Olá galerinha do TK, trago hoje um script muito legal, o mesmo tem ligação com a database do servidor. Script: Este script irá mostrando no LOOK do char os FRAGS que ele tem. Exemplo: You see Absolute (Level 603). She is an elite knight. [Frags: 8] Entenderam? ao dar look no player irá aparecer os frags do mesmo. Bom vamos ao que interessa: Em data/creaturescripts/scripts crie um arquivo com o nome de fraglook.lua e dentro adicione: function getPlayerFrags(cid) local time = os.time() local times = {today = (time - 86400), week = (time - (7 * 86400))} local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") if(result:getID() ~= -1) then repeat local content = {date = result:getDataInt("date")} if(content.date > times.today) then table.insert(contents.day, content) elseif(content.date > times.week) then table.insert(contents.week, content) else table.insert(contents.month, content) end until not result:next() result:free() end local size = { day = table.maxn(contents.day), week = table.maxn(contents.week), month = table.maxn(contents.month) } return size.day + size.week + size.month end function onLogin(cid) registerCreatureEvent(cid, "fraglook") return true end function onLook(cid, thing, position, lookDistance) if isPlayer(thing.uid) and thing.uid ~= cid then doPlayerSetSpecialDescription(thing.uid,' [Frags: '..getPlayerFrags(thing.uid)..']') return true elseif thing.uid == cid then doPlayerSetSpecialDescription(cid,' [Frags: '..getPlayerFrags(cid)..']') local string = 'You see yourself.' if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then string = string..' You are '.. getPlayerGroupName(cid) ..'.' elseif getPlayerVocation(cid) ~= 0 then string = string..' You are '.. getPlayerVocationName(cid) ..'.' else string = string..' You have no vocation.' end string = string..getPlayerSpecialDescription(cid)..'' if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' end if getPlayerGuildId(cid) > 0 then string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then string = string..'\nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' string = string..'\nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then string = string..'\nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) return false end return true end Em data/creaturescripts/creaturescripts.xml adicione a seguinte linha: <!-- Frags Look By Absolute --> <event type="look" name="fraglook" event="script" value="fraglook.lua"/> PS: Evitando perguntas, este script NÃO é necessário adicionar no login.lua É isso ai galera, vamos colocar e testar, vale a pena! Qualquer dúvida não deixe de perguntar! Créditos: Absolute Theax Nós vemos no próximo sisteminha =p Absolute.
  20. Absolute postou uma resposta no tópico em Suporte Tibia OTServer
    Abra a database e em players veja se tem o Account Manager (creio que sim).
  21. Absolute postou uma resposta no tópico em Suporte Tibia OTServer
    Você usa MYSQL ou SQLITE?

Informação Importante

Confirmação de Termo