Ir para conteúdo

Messe

Membro
  • Registro em

  • Última visita

Tudo que Messe postou

  1. Messe postou uma resposta no tópico em Suporte Websites
    Boa tarde Não consigo criar site compatível com essa versão de servidor, alguém pode me dar uma direção ou um tutorial de como fazer um site para a versão tfs 0.3.6???
  2. Meu servidor está totalmente pronto só não consigo colocar o site nele, ele é tfs 0.3.6.
  3. É um Servidor s3db Bom eu sou muito leigo na questão de website, então gostaria que alguem me indicasse qual é o tutorial a ser seguido para esse tipo de servidor, pois aquele do adm fixado parece estar desatualizado.
  4. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    up
  5. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Alguem consegue mudar o script dessa spell pra tfs 0.3.6? local function levitate(creature, parameter) local fromPosition = creature:getPosition() if parameter == "up" and fromPosition.z ~= 8 or parameter == "down" and fromPosition.z ~= 7 then local toPosition = creature:getPosition() toPosition:getNextPosition(creature:getDirection()) local tile = Tile(parameter == "up" and Position(fromPosition.x, fromPosition.y, fromPosition.z - 1) or toPosition) if not tile or not tile:getGround() and not tile:hasFlag(parameter == "up" and TILESTATE_IMMOVABLEBLOCKSOLID or TILESTATE_BLOCKSOLID) then tile = Tile(toPosition.x, toPosition.y, toPosition.z + (parameter == "up" and -1 or 1)) if tile and tile:getGround() and not tile:hasFlag(bit.bor(TILESTATE_IMMOVABLEBLOCKSOLID, TILESTATE_FLOORCHANGE)) then return creature:move(tile, bit.bor(FLAG_IGNOREBLOCKITEM, FLAG_IGNOREBLOCKCREATURE)) end end end return RETURNVALUE_NOTPOSSIBLE end function onCastSpell(creature, variant) local returnValue = levitate(creature, variant:getString()) if returnValue ~= RETURNVALUE_NOERROR then creature:sendCancelMessage(returnValue) creature:getPosition():sendMagicEffect(CONST_ME_POFF) return false end creature:getPosition():sendMagicEffect(CONST_ME_TELEPORT) return true end
  6. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Só fala a magia mais não funciona
  7. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Alguém pode me ajudar a fazer alguma magia que substitua o exani hur"up / exani hur"down ?
  8. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    xml ? me passa a parte que vai no spells.xml Se tiver alguma magia que faz a mesma função me avise!
  9. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Werner - Deu certo porem preciso usar um script que remova a magic wall depois de tantos segundos ... Pelo itens.xml não da .
  10. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Alguem me passa o script do exani hur up/down?
  11. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Eu queria determinar o tempo que a magic wall iria ficar... O 2° script funciona desse jeito: Ao invés de lançar a magic wall na minha frente, fazeria um ring 2x2 em volta do meu personagem...
  12. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Queria colocar tempo para sumir a magic wall, e tambem queria outro script de fazer um ring de magic wall : Se alguem puder me ajudar: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY) setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1497) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) function onCastSpell(cid, var) local position = variantToPosition(var) if getTilePzInfo(position) then return true end return doCombat(cid, combat, var) end
  13. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    eu tenho a source
  14. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    sqlite
  15. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Como eu limpo esse tile store ?
  16. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    (se eu volto a database antiga da certo) Após trocar a database como sempre fiz aconteceu isso: alguem saberia me dizer oque é?
  17. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Error : Warning - Monster ::Monster] Unknown event name - hellgorak1 Deu certo Obrigado!
  18. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Como eu faço um monstro igual o hellgorak que depois que eu mato ele, aparece um tp!
  19. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Deu certo irmão vlw ;33
  20. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Teria como fazer um tutorial ai pra mim? UId coloco no action ou no Unique id ?
  21. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Eu clico no bau não aparece nada...
  22. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    E no unique ID ? oque eu coloco ?
  23. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    Bom a duvida é o seguinte, como eu coloco no chest do mapa editor pra funfar esse script do chest da demon oak: --- Made by Mazen --- function onUse(cid, item, fromPosition, itemEx, toPosition) if item.uid == 12901 then queststatus = getPlayerStorageValue(cid,50090) if queststatus == -1 then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR,"You have found a Demon Legs.") doPlayerAddItem(cid,2495,1) setPlayerStorageValue(cid,50090,1) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR,"It is empty.") end elseif item.uid == 12902 then queststatus = getPlayerStorageValue(cid,50090) if queststatus == -1 then doPlayerSendTextMessage(cid,22,"You have found a Rainbow Shield.") doPlayerAddItem(cid,8905,1) setPlayerStorageValue(cid,50090,1) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR,"It is empty.") end elseif item.uid == 12903 then queststatus = getPlayerStorageValue(cid,50090) if queststatus == -1 then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR,"You have found a Spellbook of Dark Mysteries.") doPlayerAddItem(cid,8918,1) setPlayerStorageValue(cid,50090,1) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR,"It is empty.") end elseif item.uid == 12904 then queststatus = getPlayerStorageValue(cid,50090) if queststatus == -1 then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR,"You have found a Royal Crossbow.") doPlayerAddItem(cid,8851,1) setPlayerStorageValue(cid,50090,1) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR,"It is empty.") end end return 1 end
  24. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    E como edito?
  25. Messe postou uma resposta no tópico em Suporte Tibia OTServer
    a minha não tem como editar o effect.

Informação Importante

Confirmação de Termo