Ir para conteúdo
Banner com Efeitos

fironfox

Membro
  • Registro em

  • Última visita

Tudo que fironfox postou

  1. fironfox postou uma resposta no tópico em Suporte Tibia OTServer
    Bom galerina, atualmente sou dono de um servidor global 10.76 rodando em um vps linux ubunto, a versão do meu tfs que rodo o servidor é 1.0 mass, ela contem alguns bugs como do browse field e etc.... Queria saber se eu substituir o tfs 1.0 pelo tfs 1.1 apenas trocando o executavel iria apresentar algum problema no OT ou algo do tipo... queria saber se é possivel fazer isso... desde ja agradeço..
  2. fironfox postou uma resposta no tópico em Suporte Tibia OTServer
    Tfs 1.0 amigo, não to querendo criar script novo, é um script existente ja aqui na datapack que baixei
  3. fironfox postou uma resposta no tópico em Suporte Tibia OTServer
    To sendo meio que chato mas eu queria a solução pra esse erro e se possivel tambem uma explicação do por que do erro, pq assim vou aprendendo e paro de flooda o forum com topicos Lua Script Error: [CreatureScript Interface] data/creaturescripts/scripts/spike task/drillworm.lua:onKill data/creaturescripts/scripts/spike task/drillworm.lua:12: attempt to index field 'spikeTask' (a nil value) stack traceback: [C]: in function '__index' data/creaturescripts/scripts/spike task/drillworm.lua:12: in function Script: function onKill(cid, target) local targetMonster = Monster(target) if not targetMonster then return true end if targetMonster:getName():lower() ~= 'drillworm' then return true end local player = Player(cid) if player:getStorageValue(Storage.spikeTask.Killing) > 0 and player:getStorageValue(Storage.spikeTask.Killing) < 8 then player:setStorageValue(Storage.spikeTask.Killing, player:getStorageValue(Storage.spikeTask.Killing) + 1) end return true end
  4. Amigos, agora estou com seguinte problema, não da nenhum erro mass os players matam mais de 1000 servant e nada do mad mage =s alguem saberia como eu modifico isso?
  5. Valeu, funcionou aquii!! Obrigado tambem, esse tambem funcionou! Podem fechar o topico, problema resolvido!
  6. Na distro da o seguinte erro: Lua Script Error: [Action Interface] data/actions/scripts/tools/rope.lua:onUse data/actions/scripts/tools/rope.lua:10: attempt to index local 'tile' (a nil value) stack traceback: [C]: in function '__index' data/actions/scripts/tools/rope.lua:10: in function O script da Rope é esse aqui: local holeId = { 294, 369, 370, 383, 392, 408, 409, 410, 427, 428, 430, 462, 469, 470, 482, 484, 485, 489, 924, 3135, 3136, 7933, 7938, 8170, 8286, 8285, 8284, 8281, 8280, 8279, 8277, 8276, 8323, 8567, 8585, 8596, 8595, 8249, 8250, 8251, 8252, 8253, 8254, 8255, 8256, 8972, 9606, 9625, 13190, 14461, 19519, 21536 } function onUse(cid, item, fromPosition, itemEx, toPosition) local tile = toPosition:getTile() local ground = tile:getGround() if ground and isInArray(ropeSpots, ground:getId()) or tile:getItemById(14435) then Player(cid):teleportTo({x = toPosition.x, y = toPosition.y + 1, z = toPosition.z - 1}, false) return true elseif isInArray(holeId, itemEx.itemid) then toPosition.z = toPosition.z + 1 tile = toPosition:getTile() if tile then local thing = tile:getTopVisibleThing() if thing:isItem() and thing:getType():isMovable() then return thing:moveTo({x = toPosition.x, y = toPosition.y + 1, z = toPosition.z - 1}) elseif thing:isCreature() and thing:isPlayer() then return thing:teleportTo({x = toPosition.x, y = toPosition.y + 1, z = toPosition.z - 1}) end end Player(cid):sendCancelMessage(RETURNVALUE_NOTPOSSIBLE) return true end return false end
  7. Alguem poderia me informar qual é o nome do npc Addoner existente nesse mapa ?--> http://www.tibiaking.com/forum/topic/36403-global-full-10761077-tfs-10-lions-rock-cast-system-atualiza%C3%A7%C3%A3o-v11/
  8. Mas a onde eu teria que declarar ela?? em Lua não manjo mt :c
  9. Ele está informando este erro no log do servidor : Lua Script Error: [CreatureScript Interface] data/creaturescripts/scripts/their master's voice quest/ServantsKill.lua:onKill ...ipts/scripts/their master's voice quest/ServantsKill.lua:77: attempt to perform arithmetic on global 'storage' (a nil value) stack traceback: [C]: in function '__add' ...ipts/scripts/their master's voice quest/ServantsKill.lua:77: in function <...ipts/scripts/their master's voice quest/ServantsKill.lua:64> Ja tentei de algumas formas ver o que era mas não consegui identificar, aqui está o script dele: local magePositions = { Position(33328, 31859, 9), Position(33367, 31873, 9), Position(33349, 31899, 9) } local positions = { Position(33313, 31852, 9), Position(33313, 31865, 9), Position(33313, 31881, 9), Position(33328, 31860, 9), Position(33328, 31873, 9), Position(33328, 31885, 9), Position(33308, 31873, 9), Position(33320, 31873, 9), Position(33335, 31873, 9), Position(33360, 31873, 9), Position(33336, 31914, 9), Position(33343, 31914, 9), Position(33353, 31914, 9), Position(33361, 31914, 9), Position(33345, 31900, 9), Position(33352, 31900, 9), Position(33355, 31854, 9), Position(33355, 31861, 9), Position(33355, 31885, 9), Position(33345, 31864, 9), Position(33345, 31881, 9), Position(33309, 31867, 9), Position(33317, 31879, 9), Position(33311, 31854, 9), Position(33334, 31889, 9), Position(33340, 31890, 9), Position(33347, 31889, 9) } local servants = { 'iron servant', 'golden servant', 'diamond servant' } local function fillFungus(fromPosition, toPosition) for x = fromPosition.x, toPosition.x do for y = fromPosition.y, toPosition.y do local position = Position(x, y, 9) local tile = Tile(position) if tile then local item = tile:getItemById(13590) if item then item:transform(math.random(13585, 13589)) position:sendMagicEffect(CONST_ME_YELLOW_RINGS) end end end end end local function summonServant(position) Game.createMonster(servants[math.random(#servants)], position) position:sendMagicEffect(CONST_ME_TELEPORT) end function onKill(cid, target) local targetMonster = Monster(target) if not targetMonster then return true end if not isInArray(servants, getCreatureName(target):lower()) then return true end local storage984, storage985 = getGlobalStorageValue(984), getGlobalStorageValue(985) if storage985 == #positions and storage984 < 25 then setGlobalStorageValue(985, 0) setGlobalStorageValue(984, storage + 1) for i = 1, #positions do addEvent(summonServant, 5 * 1000, positions[i]) end elseif storage985 < #positions and storage984 < 25 then setGlobalStorageValue(985, storage985 + 1) elseif storage985 == #positions and storage984 == 25 then Game.createMonster('mad mage', magePositions[math.random(#magePositions)]) targetMonster:say('The Mad Mage has been spawned!', TALKTYPE_MONSTER_SAY) fillFungus({x = 33306, y = 31847}, {x = 33369, y = 31919}) end return true end
  10. fironfox postou uma resposta no tópico em Suporte Tibia OTServer
    Demoniacs, não conseguisse liberar nenhuma quest?
  11. fironfox postou uma resposta no tópico em Suporte Tibia OTServer
    Bom gente, estou tendo um probleminha em meu servidor no qual as pessoas precisam de certas missoes pra fazer quests tais como inquisition, yalahar, wote e tambem para usar os portões de yalahar.... Queria saber se teria como eu encurtar essas quests para nao precisar de tais missões e tambem queria saber como eu poderia fazer isso, desde ja agradeço!
  12. Aqui esta amigo! local boss = { ["fire overlord"] = {g_storage = 40064, p_storage = 60027}, ["energy overlord"] = {g_storage = 40065, p_storage = 60028}, ["ice overlord"] = {g_storage = 40066, p_storage = 60029}, ["earth overlord"] = {g_storage = 40067, p_storage = 60030}, } function onDeath(cid, corpse, lasthitkiller, mostdamagekiller, lasthitunjustified, mostdamageunjustified) local pid = Player(mostdamagekiller) local t = boss[Creature(cid):getName():lower()] Player(pid):setStorageValue(t.p_storage, 1) setGlobalStorageValue(t.g_storage, -1) return true end function onKill(cid, target) if Creature(target):getName():lower() == "lord of the elements" then Player(cid):setStorageValue(60031, 1) end return true end function onLogin(cid) Player(cid):registerEvent("ElementalSpheresKill") return true end
  13. Ele aparece direto isso no log, alguem tem alguma idéia de como arruma-lo? Meu servidor esta na versão 10.76 Lua Script Error: [CreatureScript Interface] data/creaturescripts/scripts/elemental spheres quest/the_elemental_spheres.lua:onDeath ...cripts/elemental spheres quest/the_elemental_spheres.lua:14: attempt to index a nil value stack traceback: [C]: in function '__index' ...cripts/elemental spheres quest/the_elemental_spheres.lua:14: in function <...cripts/elemental spheres quest/the_elemental_spheres.lua:9>
  14. Bom gente, meu servidor esta com um bug, que se a pessoa quando cadastra a conta escolhe uma account name muito grande, na hora de logar no site o gesior come parte da senha e nao reconhece a conta. Isso so acontece com senhas grandes.
  15. Preciso de uma ajuda urgente, a pagina do meu servidor ta retornando erro e ela nao abre! Query: SELECT SQLSTATE: 42000 Driver code: 1064 Error message: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 Query: SELECT `date` FROM `z_news_tickers` WHERE `hide_ticker` = '0' SQLSTATE: 00000 Driver code: Error message: Query: SELECT * FROM z_featured_article ORDER BY id DESC LIMIT 1 SQLSTATE: 42S02 Driver code: 1146 Error message: Table 'dbnova.z_featured_article' doesn't exist

Informação Importante

Confirmação de Termo