Ir para conteúdo
US
Blazera 8.60
blazera.net
SOBRE O BLAZERA
Um fresh start em um servidor 8.6 clássico, com real map, focado na experiência raiz do Tibia. | Classic Real Map • Fresh Start • Client 8.6 • Old School Gameplay • Active Community
Inicia em: --
Participar

luanluciano93

Héroi
  • Registro em

  • Última visita

Tudo que luanluciano93 postou

  1. Poste o script dos potions ...
  2. luanluciano93 postou uma resposta no tópico em Ferramentas OpenTibia
    Tópico aprovado, obrigado por compartilhar. Este tópico foi movido: Para: "OTServ → Downloads → Utilitários para OTServs"
  3. ops, aqui elseif isMonster(target) faltou o then no final ... elseif isMonster(target) then
  4. luanluciano93 postou uma resposta no tópico em Suporte Tibia OTServer
    -- <movevent type="StepIn" actionid="30000" event="script" value="tp_city.lua"/> function onStepIn(cid, item, position, fromPosition) local townId = 2 if isPlayer(cid) then doTeleportThing(cid, getTownTemplePosition(townId)) doPlayerSetTown(cid, townId) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You are the newest resident of " .. getTownName(townId) .. ".") end return true end
  5. -- <event type="kill" name="DeathChannel" script="death_channel.lua"/> -- <event type="login" name="DeathChannelLogin" script="death_channel.lua"/> function onLogin(cid) registerCreatureEvent(cid, "DeathChannel") return true end function onKill(cid, target) local channel_id = 12 if isPlayer(target) then doPlayerSendChannelMessage(cid, "[DEATH]", "O player ".. getCreatureName(target) .." [".. getPlayerLevel(target) .."] acaba de ser morto por ".. getCreatureName(cid) .." [".. getPlayerLevel(cid) .."]!", TALKTYPE_CHANNEL_O, channel_id) elseif isMonster(target) doPlayerSendChannelMessage(cid, "[DEATH]", "O player ".. getCreatureName(target) .." [".. getPlayerLevel(target) .."] acaba de ser morto por um ".. getCreatureName(cid) .."!", TALKTYPE_CHANNEL_O, channel_id) end return true end
  6. Tópico aprovado, obrigado por compartilhar. Este tópico foi movido: Para: "OTServ → Scripting → Sistemas e MODs" Esta horrivel esse código, se possível indentar o código e usar o "code" do bbcode.
  7. @marcio1234 e @kualkerun, é só arrumar essa linha: <form target="pagseguro" method="post" action="https://pagseguro.uol.com.br/checkout/checkout.jhtml">
  8. Tópico aprovado, obrigado por compartilhar. Este tópico foi movido: Para: "OTServ → Scripting → Actions e TalkActions"
  9. Tópico aprovado, obrigado por comaprtilhar. Este tópico foi movido: Para: "OTServ → Scripting → Actions e TalkActions"
  10. Botão direito na imagem -> copiar URL da imagem -> verificar o caminho pela URL, se existe ..
  11. @marcio1234, não mostra.
  12. editei lá!
  13. luanluciano93 postou uma resposta no tópico em Suporte Tibia OTServer
    Coloque o evento no monstro: <script> <event name="Azerus" /> </script>
  14. @adrianinho, qual versão é seu ot?
  15. O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Scripting → Geral" Para: "OTServ → Suporte OTServ → Suporte de Scripts"
  16. luanluciano93 postou uma resposta no tópico em Suporte Tibia OTServer
    local config = { message = "Azerus ran into teleporter! It will disappear in 2 minutes. Enter It!", teleportId = 1387, bossName = "Azerus", pos = {x=581, y=577, z=9}, {x=581, y=575, z=10}, } function onDeath(cid, corpse, killer) if getCreatureName(cid) == bossName then doCreateTeleport(config.teleportId, config.pos[1], config.pos[2]) doCreatureSay(cid, config.message, TALKTYPE_ORANGE_1) end return true end
  17. local config = { [13670] = { -- item_exemplo chances = { {from = 1, to = 1, itemId = 2238}, {from = 2, to = 50, itemId = 2237}, {from = 51, to = 100, itemId = 2115}, }, effect = CONST_ME_POFF }, } function onUse(cid, item, fromPosition, itemEx, toPosition, isHotkey) local player = Player(cid) local useId = config[item.itemid] if not useId then return false end local chance = math.random(100) for i = 1, #useId.chances do local randomItem = useId.chances[i] if chance >= randomItem.from and chance <= randomItem.to then if randomItem.itemId then local itemId, count = randomItem.itemId, randomItem.count or 1 player:addItem(itemId, count) else player:say('You found nothing useful.', TALKTYPE_MONSTER_SAY) end item:getPosition():sendMagicEffect(useId.effect) item:remove(1) break end end return true end
  18. local looktypes = { -- aqui coloca o looktypes do outfit } local storage = 4545 function onLogin(cid) local player = Player(cid) if player:getStorageValue(storage) < 1 then -- addons liberados for i = 1, #looktypes do player:addOutfitAddon(looktypes[i], 3) end -- montarias liberadas if player:isPremium() then for i = 1, 47 domontarias liberadas doPlayerAddMount(cid, i) end end player:setStorageValue(storage, 1) end return true end
  19. @BeluciGamer e @Jair Kevick alertados por flood.
  20. O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Mapping → Tutoriais de Mapping → Escola de Mapping" Para: "OTServ → Suporte OTServ → Suporte de Mapping "
  21. O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Notícias e OTServ Geral" Para: "OTServ → Suporte OTServ → Suporte de OTServ Geral"
  22. Tópico aprovado, obrigado por compartilhar. Este tópico foi movido: Para: "OTServ → Programação Open Tibia → Códigos Prontos"
  23. Repositório no github do Gesior: https://github.com/gesior/Gesior2012/tree/TFS-1.0

Informação Importante

Confirmação de Termo