Ir para conteúdo

Absolute

Héroi
  • Registro em

  • Última visita

Tudo que Absolute postou

  1. 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)
  2. 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.
  3. Esqueci de atualizar rs, A Weblara e Lnetworks ja me notificar afirmando ter entregue o prêmio aos ganhadores. Até o próximo concurso õ/
  4. Brother, que eu saiba a 0.3.6 e a 0.4 tem as mesmas funções...
  5. Vou trocar.
  6. 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.
  7. O Erro do SQL na distro continua o mesmo?
  8. Tente: @Edit O membro acima refere-se a esta tabela tente adicionar:
  9. kkk, preciso testar em um site, vou testar em um meu e já atualizo.
  10. 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 .
  11. É Linux ou Windows? PS: poste o layout.php
  12. 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
  13. 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.
  14. 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).
  15. Absolute postou uma resposta no tópico em Suporte Tibia OTServer
    Você usa MYSQL ou SQLITE?
  16. Absolute postou uma resposta no tópico em Suporte Tibia OTServer
    Você tem ele na db?
  17. Absolute postou uma resposta no tópico em Suporte Tibia OTServer
    Cara isso é um evento brother. Faça um pedido na seção de scripts ou procure algo relacionado.
  18. Procure erros no console, tente fazer os players reportarem dando recompensa sei lá. Se o servidor que é seu você não sabe o bug imagine eu :3
  19. Nunca vi isso o0. Tente trocar as sources e veja se resolve.
  20. Absolute postou uma resposta no tópico em Suporte Tibia OTServer
    Cara isso é um script, um sistema.
  21. Tem que investigar o bug que está causando a quedo, Anti nucker é usado em caso de ataques DoS ou DDoS (ataques de conexões na banda da máquina) nada relacionado ao servidor. Portanto você está sofrendo por bugs e não precisa de anti aglo.

Informação Importante

Confirmação de Termo