Ir para conteúdo

Ser Luck

Membro
  • Registro em

  • Última visita

Tudo que Ser Luck postou

  1. Se alguém puder mandar o link do discord, o mesmo se encontra invalido, gostaria de conhecer melhor o projeto.
  2. Todas as bases são feitas nessas versões. '-'
  3. Ser Luck respondeu ao post em um tópico de cleo em Formação de Equipe
    E ai blz? A forma mais fácil é entrar no caterpie.xml da pasta de monstros e editar a experiencia ganha dela por la e de cada pokemon individualmente.
  4. Fiz algumas pesquisa e criei um account manager para o meu. Porem ainda não consegui arrumar esse erro da bag tambem. Pelo que eu vi, apenas criando acc por site é possivel arrumar esse bug... Caso você tenha achado alguma solução me de um toque...
  5. Não seria então no próprio script q esta sem local de armazenamento? Por q seria meio impossível o pc dele n suportar o scritp. Acho q esta faltando apertura de banco de dados para guardar informações do jogo.
  6. Tenta postar um print do erro no PDA. Assim fica mais facil tanto para eu ver qual line esta com o erro quanto o q de fato é o erro.
  7. Posta o script do droploot.lua
  8. Ser Luck respondeu ao post em um tópico de Loouis em Suporte Tibia OTServer
    Subistiu por isso function onEquip (cid, item, slot) if not cid then return true end if item.uid <= 0 then return true end if not getItemAttribute(item.uid, "poke") then return true end for i, x in pairs(fotos) do if string.lower(getItemAttribute(item.uid, "poke")) == string.lower(i) then doTransformItem(getPlayerSlotItem(cid, 7).uid, fotos) return true end end end function onDeEquip(cid, item, slot) if not cid then return true end if item.uid <= 0 then return true end if not getItemAttribute(item.uid, "poke") then return true end doTransformItem(getPlayerSlotItem(cid, CONST_SLOT_LEGS).uid, 2395) end
  9. Então cara pra vc mudar isso é apenas no configuration.lua Seu servidor esta rodando sem ele? Ou ainda n tentou jogar nele?
  10. Vc ja olhou para ver se o bug não é em um poke especifico? As vezes é um poke em particular ou uma bom que esta causando isso. Posta um pronto no erro no PDA aqui.
  11. Sei o Basico dos Dois. se quiser fazer um teste comigo me manda uma mensagem em PV q te passo meu numero de contato...
  12. Ser Luck respondeu ao post em um tópico de olicio em Suporte Tibia OTServer
    Tenta mudar isso para isso >>> -- Connection config worldId = 0 ip = "179.157.102.181" bindOnlyConfiguredIpAddress = false oginPort = 7171 gamePort = 7172 adminPort = 7171 statusPort = 7171 oginTries = 10 retryTimeout = 5 * 1000 loginTimeout = 60 * 1000 maxPlayers = 1000 motd = "Welcome to the Global Server!" displayOnOrOffAtCharlist = false onePlayerOnlinePerAccount = true allowClones = false serverName = "World" loginMessage = "Welcome to the Global Server!" statusTimeout = 5 * 60 * 1000 replaceKickOnLogin = true forceSlowConnectionsToDisconnect = false loginOnlyWithLoginServer = false premiumPlayerSkipWaitList = false
  13. Vc tem um arquivo chamado onDeath? Se n tiver posta o seu creaturescripts.XML que o erro esta nele.
  14. Talvez o seu .s3db esteja errado ou o server n esteja configurado para aceitar account manager no Config.lua
  15. Ja tentou tirar esse + 1 ou deixar ele em 0 ?
  16. Já encontrou um ADM? Se ainda estiver em aberto tenho interesse.
  17. E ai pessoal. blz? Estou com um grave problema em meu server. Os pokemons selvagens estão atacando o jogador ao invés de atacarem o pokemon. Assim. Eu vou em uma área onde tem pokes agressivos e eles começam a me atacar e ignoram o meu pokemon. Alguém ai saberia como consertar esse erro? R++ garantido
  18. Ser Luck respondeu ao post em um tópico de L3K0T em Scripts tfs 0.4 (OLD)
    kkkkkkk Seria bom ele por. Isso ajudaria bem mais quem não entende muito de Script e apenas usa o que é colocado aqui como base para seu servidor.
  19. Ser Luck respondeu ao post em um tópico de L3K0T em Scripts tfs 0.4 (OLD)
    Ótimo tópico, mas faltou a explicação de onde colocar esse Script e em qual pastas... RP+ Já garantido
  20. Muito boa as Splites, vc tem o corpo deles morto ou o icone? Valeu e RP+ Por compartilhar ela
  21. Ainda mantem o Erro. To com o mesmo erro no meu server...
  22. function onThingMove(creature, thing, oldpos, oldstackpos) end function onCreatureAppear(creature) end function onCreatureDisappear(cid, pos) if focus == cid then selfSay('Ate mais treinador!') focus = 0 talk_start = 0 end end function onCreatureTurn(creature) end function msgcontains(txt, str) return (string.find(txt, str) and not string.find(txt, '(%w+)' .. str) and not string.find(txt, str .. '(%w+)')) end function onCreatureSay(cid, type, msg) local msg = string.lower(msg) local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid for a, b in pairs(gobackmsgs) do local gm = string.gsub(b.go, "doka!", "") local bm = string.gsub(b.back, "doka!", "") if string.find(string.lower(msg), string.lower(gm)) or string.find(string.lower(msg), string.lower(bm)) then return true end end if((msgcontains(msg, 'hi') or msgcontains(msg, 'heal') or msgcontains(msg, 'help')) and (getDistanceToCreature(cid) <= 3)) then if exhaustion.get(cid, 9211) then selfSay('Please wait a few moment before asking me to heal your pokemons again!') return true end if not getTileInfo(getThingPos(cid)).protection and nurseHealsOnlyInPZ then selfSay("Please, get inside the pokémon center to heal your pokemons!") return true end if getPlayerStorageValue(cid, 52480) >= 1 then selfSay("You can't do that while in a Duel!") --alterado v1.6.1 return true end for e, f in pairs(posis) do local pos = getThingPos(getNpcCid()) if isPosEqual(pos, f) then if getPlayerStorageValue(cid, e) <= -1 then --alterado v1.7 setPlayerStorageValue(cid, e, 1) end end end exhaustion.set(cid, 9211, 5) doCreatureAddHealth(cid, getCreatureMaxHealth(cid)-getCreatureHealth(cid)) doCureStatus(cid, "all", true) doSendMagicEffect(getThingPos(cid), 14) local mypb = getPlayerSlotItem(cid, 8) if #getCreatureSummons(cid) >= 1 then if not nurseHealsPokemonOut then selfSay("Please, return your pokemon to his ball!") return true end local s = getCreatureSummons(cid)[1] doCreatureAddHealth(s, getCreatureMaxHealth(s)) doSendMagicEffect(getThingPos(s), 14) doCureStatus(s, "all", false) if getPlayerStorageValue(s, 1008) < baseNurseryHappiness then setPlayerStorageValue(s, 1008, baseNurseryHappiness) end if getPlayerStorageValue(s, 1009) > baseNurseryHunger then setPlayerStorageValue(s, 1009, baseNurseryHunger) end else if mypb.itemid ~= 0 and isPokeball(mypb.itemid) then --alterado v1.3 doItemSetAttribute(mypb.uid, "hp", 1) if getItemAttribute(mypb.uid, "hunger") and getItemAttribute(mypb.uid, "hunger") > baseNurseryHunger then doItemSetAttribute(mypb.uid, "hunger", baseNurseryHunger) end for c = 1, 15 do local str = "move"..c setCD(mypb.uid, str, 0) end if getItemAttribute(mypb.uid, "happy") and getItemAttribute(mypb.uid, "happy") < baseNurseryHappiness then doItemSetAttribute(mypb.uid, "happy", baseNurseryHappiness) end if getPlayerStorageValue(cid, 17000) <= 0 and getPlayerStorageValue(cid, 17001) <= 0 and getPlayerStorageValue(cid, 63215) <= 0 then for a, b in pairs (pokeballs) do if isInArray(b.all, mypb.itemid) then doTransformItem(mypb.uid, b.on) end end end end end local bp = getPlayerSlotItem(cid, CONST_SLOT_BACKPACK) local balls = getPokeballsInContainer(bp.uid) if #balls >= 1 then for _, uid in ipairs(balls) do doItemSetAttribute(uid, "hp", 1) for c = 1, 15 do local str = "move"..c setCD(uid, str, 0) end if getItemAttribute(uid, "hunger") and getItemAttribute(uid, "hunger") > baseNurseryHunger then doItemSetAttribute(uid, "hunger", baseNurseryHunger) end if getItemAttribute(uid, "happy") and getItemAttribute(uid, "happy") < baseNurseryHappiness then doItemSetAttribute(uid, "happy", baseNurseryHappiness) end local this = getThing(uid) for a, b in pairs (pokeballs) do if isInArray(b.all, this.itemid) then doTransformItem(uid, b.on) end end end end selfSay('There you go! You and your pokemons are healthy again.') end end (to com o mesmo erro '--' )
  23. E ai amigão blz? Eu to iniciando uns trabalhos de programador de poketibias... Não entendi muito se o que vc deseja fazer é um Tibia mesmo ou um Poketibia... Mais caso seu interesse seja em pokemon e quiser entrar em contato só me add no skype: ser-luck ou face:https://www.facebook.com/Lucas.Nascimento.11
  24. Qual é o comando para executar essa ação?

Informação Importante

Confirmação de Termo