Ir para conteúdo
  • Cadastre-se
  1. lauasss

    lauasss

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.


  • Conteúdo Similar

    • Por Cat
      Pack disponibilizado por:

      Clique Aqui para entrar!
       
      Object Builder (Editor de dat e Sprites) para 10x.
      ObjectBuilder.rar
       
       
      Object Builder para 8.X (0.4.8) com Adobe AIR (13 MB).
      https://www.mediafire.com/file/dq994i3fia7fckk/ObjectBuilder_0_4_8.rar/file
      scan
       
       
      Tibia 12 SPR funciona com Object Builder 10.X (0.3.3)
      https://www.mediafire.com/file/fvuf28xh0zej859/Tibia_12_SPR.rar/file
       
       
      Assets Editor (12+ para pasta assets)
      https://github.com/Arch-Mina/Assets-Editor
       
      Como usar:
       
       
      Remere's Map Editor 3.7 + fixed brushes:
      https://github.com/hampusborgos/rme/releases
      RME_3.7_fixed_brushes.rar
       
      10.98 com sprites 12.70, OTB:
      https://github.com/EPuncker/1098extended
      10.98_12.70_sprites_OTB.rar
       
      10.98 com sprites 12.70 TIBIA KING OTBR
      10.98_12.70_sprites_OTBR.rar
       
      12.70 mounts and outfits
      12.70_mounts_and_outfits.rar
       
      Paleta com itens mágicos (v 12) 
      Disponibilizado por: Zbizu (Zbizu#7420)
      trickery_zbizu.xml
          
       
      Este pack utiliza recursos do projeto oficial TFS (The Forgotten Server), projetos paralelos como OtservBR, Object Builder, outros, e demais colaboradores.    
       
       
       
       
       
    • Por zLockey9
      Estou com alguns erros em umas SPR que adicionei recentemente , como o titulo já diz ...
      elas estão saindo do lado do char em vez de em cima. (Obs:Não é spell e sim só o effect do comando /z)
       
      Se alguém puder ajudar dou REP+
       
      ALGUMAS PRINT'S
       
       
    • Por andreswmsoto
      Preciso de ajuda com esse erro, me falaram que os numeros que apareçem é onde estam os erros(numero de linhas) entao eu peguei exatamente a linha onde eu marquei o erro com >>>>>>>>>>>>>.
       
      OBS:Erro da quando eu tento atacar um digimon ou quando o digimon passa de lvl.
       
       
      ERRO:
       
      [20/01/2015 20:15:20] [Error - CreatureScript Interface]  [20/01/2015 20:15:20] data/creaturescripts/scripts/exp.lua:onStatsChange [20/01/2015 20:15:20] Description:  [20/01/2015 20:15:20] data/lib/some functions.lua:255: attempt to compare nil with number [20/01/2015 20:15:20] stack traceback: [20/01/2015 20:15:20] data/lib/some functions.lua:255: in function 'getHappinessRate' [20/01/2015 20:15:20] data/creaturescripts/scripts/exp.lua:440: in function <data/creaturescripts/scripts/exp.lua:129>     exp.lua(440):   local function resetMiss(cid)
      if not isCreature(cid) then return true end
      setPlayerStorageValue(cid, 88726, -1)
      end
       
      if getPlayerStorageValue(cid, 88726) ~= 1 and miss > 0 and math.random(1, 100) <= miss and damageCombat ~= COMBAT_PHYSICALDAMAGE and not isInArray(ignoremiss, combat) and not isSleeping(cid) and not getCreatureCondition(cid, CONDITION_PARALYZE) then
      doSendMagicEffect(getThingPos(cid), 211)
      doSendAnimatedText(getThingPos(cid), "MISS", 215)
      doTeleportThing(cid, getClosestFreeTile(cid, getThingPos(cid)), false)
      doSendMagicEffect(getThingPos(cid), 211)
      doFaceCreature(cid, getThingPos(attacker))
      setPlayerStorageValue(cid, 88726, 1)
       
      >>>>>>>>>>ERRO AQUI EU ACHO addEvent(resetMiss, 2200, cid)
       
      return false
      end
       
       
       
      some functions.lua(255):
       
      function doCorrectPokemonName(poke)
      return doCorrectString(poke)
      end
       
      function doCorrectString(poke)
      local name = ""
      local n = string.explode(poke, " ")
      local str = string.sub(n[1], 1, 1)
       
      >>>>>>>>>>>>>ERRO AQUI EU ACHO local sta = string.sub(n[1], 2, string.len(n[1]))
       
      name = ""..string.upper(str)..""..string.lower(sta)..""
      if n[2] then
      str = string.sub(n[2], 1, 1)
      sta = string.sub(n[2], 2, string.len(n[2]))
      name = name.." "..string.upper(str)..""..string.lower(sta)..""
      end
      return name
      end
      -------------------------------HAPPINESSRATE È CITADO NO ERRO
      function getHappinessRate(cid)
      if not isCreature(cid) then return 1 end
      local a = getPlayerStorageValue(cid, 1008)
      if a == -1 then return 1 end
      if a >= getConfigValue('PokemonStageVeryHappy') then
      return happinessRate[5].rate
      elseif a >= getConfigValue('PokemonStageHappy') then
      return happinessRate[4].rate
      elseif a >= getConfigValue('PokemonStageOK') then
      return happinessRate[3].rate
      elseif a >= getConfigValue('PokemonStageSad') then
      return happinessRate[2].rate
      else
      return happinessRate[1].rate
      end
      return 1
      end
       
       
      exp.lua(129):
       
       
       
      local damages = {MORTALGASDAMAGE, GROUNDDAMAGE, ELECTRICDAMAGE, ROCKDAMAGE, FLYDAMAGE, BUGDAMAGE, FIGHTINGDAMAGE, DRAGONDAMAGE, POISONDAMAGE, DARKDAMAGE, STEELDAMAGE, NIGHTMAREDAMAGE, GUILLOTINEDAMAGE, SEISMICTOSSDAMAGE}
       
      >>>>>>>>>>>>ERRO AQUI EU ACHO local fixdmgs = {PSYCHICDAMAGE, COMBAT_PHYSICALDAMAGE, GRASSDAMAGE,
       
      FIREDAMAGE, WATERDAMAGE, ICEDAMAGE,NORMALDAMAGE, GHOSTDAMAGE}
       
      local ignored = {NIGHTMAREDAMAGE, GUILLOTINEDAMAGE, MORTALGASDAMAGE, SEISMICTOSSDAMAGE, PSYCHOSHIFTDAMAGE, POISONEDDAMAGE, BURNEDDAMAGE}
      local ignoremiss = {NIGHTMAREDAMAGE, MORTALGASDAMAGE, BURNEDDAMAGE, POISONEDDAMAGE}
      local ignorecritical = {MORTALGASDAMAGE, BURNEDDAMAGE, POISONEDDAMAGE, NIGHTMAREDAMAGE}
      local cannotkill = {MORTALGASDAMAGE, BURNEDDAMAGE, POISONEDDAMAGE, NIGHTMAREDAMAGE}
       
      function onStatsChange(cid, attacker, type, combat, value)
       
      if combat == FLYSYSTEMDAMAGE then return false end
      if isPlayer(cid) and getCreatureOutfit(cid).lookType == 814 then return false end -- TV
       
      local damageCombat = combat
      if damageCombat == THUNDERWAVEDAMAGE then
      damageCombat = ELECTRICDAMAGE
      elseif damageCombat == PSYCHOSHIFTDAMAGE then
      damageCombat = PSYCHICDAMAGE
      end
       
      if getPlayerStorageValue(cid, 33) >= 1 then -- funcionamento do self destruction
      if isCreature(attacker) then
      return false
      end
      return true
      end
       
      if not isCreature(attacker) or cid == attacker then
      if not isInArray(fixdamages, combat) and combats[combat] then
      doSendAnimatedText(getThingPos(cid), value, combats[combat].cor)
      end
      return true
      end
       
      --------------------------------------------------
      if combat == SLEEP_POWDERDAMAGE then
      if not isSummon(cid) and not isSummon(attacker) and not isPlayer(attacker) then
      return false
      end
      if isPlayer(cid) then
      return false
      end
      if isNpcSummon(cid) and getCreatureTarget(cid) ~= attacker then
      return false
      end
      if isSummon(cid) and isSummon(attacker) then
      if not isInParty(getCreatureMaster(cid)) or not isInParty(getCreatureMaster(attacker)) then
      return false
      end
      if not getPlayerParty(getCreatureMaster(cid)) == getPlayerParty(getCreatureMaster(attacker)) then
      return false
      end
      end
      doSleep(cid, value, true)
      return false
      end
       
       
       
       
    • Por yurirzu
      Olá tenho uma duvida, eu peguei um base de pokemon e estou desenvolvendo um servidor de digimon, entao peguei um pokemon para criar um digimon, ja fiz alteraçoes e esta tudo ok, porem quando eu dou catch no digimon ele volta a ser pokemon exemplo:
       
      Criançao na base de um Caterpie e agora é Botamon
      Capiturei um Botamon porem dps quando invoco ele vira um Caterpie dnv
    • Por Zauster
      Fala Galera,
       
      Hoje Vim Pedir um Mapa 8.6 e Dat Spr 8.6 de Preferencia Que Nao estejam Extendidos, Pois meu RME nao Abre Dat e Spr 8.6 Nao Detectavel
       
      Quem Puder Dar os Links ou Download Direto Agradeço!
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo