-
Total de itens
91 -
Registro em
-
Última visita
-
Dias Ganhos
2
Tipo de Conteúdo
Perfis
Fóruns
Calendário
Publique
Tudo que Aragllov postou
-
Suporte [AJUDA] Script NPC Blue Djinn
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
Tenta assim: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) local npcHandlerfocus = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid NpcSystem.parseParameters(npcHandler) npcHandler:setMessage(MESSAGE_GREET, "Hey! A human! What are you doing in my kitchen, |PLAYERNAME|?") npcHandler:setMessage(MESSAGE_PLACEDINQUEUE, "Whoa. Do I look as if I had two heads? Only one at a time, |PLAYERNAME|!") npcHandler:setMessage(MESSAGE_WALKAWAY, "Now, where was I?") npcHandler:setMessage(MESSAGE_FAREWELL, "Goodbye. I am sure you will co -
Suporte [AJUDA] Script NPC Blue Djinn
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) local npcHandlerfocus = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid NpcSystem.parseParameters(npcHandler) npcHandler:setMessage(MESSAGE_GREET, "Hey! A human! What are you doing in my kitchen, |PLAYERNAME|?") npcHandler:setMessage(MESSAGE_PLACEDINQUEUE, "Whoa. Do I look as if I had two heads? Only one at a time, |PLAYERNAME|!") npcHandler:setMessage(MESSAGE_WALKAWAY, "Now, where was I?") npcHandler:setMessage(MESSAGE_FAREWELL, "Goodbye. I am sure you will come back for more. They a -
Suporte [AJUDA] Script NPC Blue Djinn
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
Eu uso este no meu servidor -
Suporte [AJUDA] Script NPC Blue Djinn
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink() npcHandler:onThink() end local voices = { {text = 'Now, where was I...'} } npcHandler:addModule(VoiceModule:new(voices)) local function creatureSayCallback(cid, type, msg) if not npcHandler:isFocused(cid) the -
Suporte [AJUDA] Script NPC Blue Djinn
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) local npcHandlerfocus = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid NpcSystem.parseParameters(npcHandler) npcHandler:setMessage(MESSAGE_GREET, "Hey! A human! What are you doing in my kitchen, |PLAYERNAME|?") npcHandler:setMessage(MESSAGE_PLACEDINQUEUE, "Whoa. Do I look as if I had two heads? Only one at a time, |PLAYERNAME|!") npcHandler:setMessage(MESSAGE_WALKAWAY, "Now, where was I?") npcHandler:setMessage(MESSAGE_FAREWELL, "Goodbye. I am sure you will come back for more. They a -
Suporte [AJUDA] Script NPC Blue Djinn
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) local npcHandlerfocus = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid NpcSystem.parseParameters(npcHandler) npcHandler:setMessage(MESSAGE_GREET, "Hey! A human! What are you doing in my kitchen, |PLAYERNAME|?") npcHandler:setMessage(MESSAGE_PLACEDINQUEUE, "Whoa. Do I look as if I had two heads? Only one at a time, |PLAYERNAME|!") npcHandler:setMessage(MESSAGE_WALKAWAY, "Now, where was I?") npcHandler:setMessage(MESSAGE_FAREWELL, "Goodbye. I am sure you will come back for more. They a -
Suporte [AJUDA] Script NPC Blue Djinn
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) local npcHandlerfocus = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid NpcSystem.parseParameters(npcHandler) npcHandler:setMessage(MESSAGE_GREET, "Hey! A human! What are you doing in my kitchen, |PLAYERNAME|?") npcHandler:setMessage(MESSAGE_PLACEDINQUEUE, "Whoa. Do I look as if I had two heads? Only one at a time, |PLAYERNAME|!") npcHandler:setMessage(MESSAGE_WALKAWAY, "Now, where was I?") npcHandler:setMessage(MESSAGE_FAREWELL, "Goodbye. I am sure you will come back for more. They a -
Suporte [AJUDA] Script NPC Blue Djinn
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
Qual ID do livro? -
(Resolvido)Movements script
Aragllov respondeu ao tópico de Felippe Reine014 em Suporte Tibia OTServer (Resolvidos)
Usa esse script como exemplo: local messages = { {'Gnomedix: So let the examination begin! Now don\'t move. Don\'t be afraid. The good doctor gnome won\'t hurt you - hopefully!', CONST_ME_LOSEENERGY}, {'Gnomedix: Now! Now! Don\'t panic! It\'s all over soon!'}, {'Gnomedix: Let me try a bigger chisel!', CONST_ME_POFF}, {'Gnomedix: We\'re almost don... holy gnome! What\'s THIS???'}, {'Gnomedix: I need a drill! Gnomenursey, quick!'}, {'Gnomedix: Hold still now! This might tickle a little..', CONST_ME_STUN}, {'Gnomedix: Take this, you evil ... whatever you are!'}, {'Gnomedix: I got it! -
Suporte [AJUDA] Script NPC Blue Djinn
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
Tenta substituindo assim: if not player:getItemById(2347, 1) then Por: if player:getItemById(2347, 1) then -
Suporte [AJUDA] Script NPC Blue Djinn
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
tenta assim: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink() npcHandler:onThink() end local voices = { {text = 'Now, where was I...'} } npcHandler:addModule(VoiceModule:new(voices)) local function creat -
Scripting Como registrar a Roleta Cassino de itens
Aragllov respondeu ao tópico de naval288 em Suporte Tibia OTServer
Onde vc baixou esse server? -
Suporte ajuda em colocar block spawn player
Aragllov respondeu ao tópico de myllenasz em Suporte Tibia OTServer
Acrescenta isso em cada monstro: <flag ignorespawnblock="1" /> -
Tem que ter um roteador além do modem da sua operadora
-
Suporte Ajuda para cria otserv em ubuntu
Aragllov respondeu ao tópico de RatPoke150 em Suporte Tibia OTServer
Qualquer uma -
Scripting [AJUDA] ADICIONAR MAGIC EFFECT EM SCRIPT
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
-- EditeD by: Yuri -- Passagem Secreta BOSS: Sunfyre the Golden local positions = { [1] = {pos = {x = 33295, y = 32779, z = 7}, id = 419, toid = 411} } local tempo = 15 function onUse(cid, item, frompos, item2, topos) if getTileItemById(positions[1].pos, positions[1].id).uid < 100 then doPlayerSendTextMessage(cid,19,"Is already open.") return true end doPlayerSendTextMessage(cid,19,"The passage will close in ".. tempo .." seconds.") function criar_paredes(buff) for i = 1, #positions do if i <= (#positions/2) then -
Scripting [AJUDA] ADICIONAR MAGIC EFFECT EM SCRIPT
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
Tenta adicionando outro efeito pra ver se funciona doSendMagicEffect(frompos, 10) -
Scripting [AJUDA] ADICIONAR MAGIC EFFECT EM SCRIPT
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
O script está funcionando mas sem o efeito? -
Suporte [RESOLVIDO] CONFIGURAR O ITEM BLACK SKULL PRA ILUMINAR
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
E no items.otb efetuou o reload no item? -
Scripting [AJUDA] ADICIONAR MAGIC EFFECT EM SCRIPT
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
Faz assim, onde vc colocou doSendMagicEffect(topos, CONST_ME_POFF) coloque print("retornando 1") Pra ver se ta lendo essa parte do script. Vou colocar aqui: -- EditeD by: Yuri -- Passagem Secreta BOSS: Sunfyre the Golden local positions = { [1] = {pos = {x = 33295, y = 32779, z = 7}, id = 419, toid = 411} } local tempo = 15 function onUse(cid, item, frompos, item2, topos) if getTileItemById(positions[1].pos, positions[1].id).uid < 100 then doPlayerSendTextMessage(cid,19,"Is already open.") print("retornando 1") return tr -
Suporte [AJUDA] MOVER ITENS DENTRO DE BP'S NAS HOUSES
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
Posta seu actions.cpp -
Suporte [RESOLVIDO] CONFIGURAR O ITEM BLACK SKULL PRA ILUMINAR
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
Edita o item no Object Builder -
Scripting [AJUDA] ADICIONAR MAGIC EFFECT EM SCRIPT
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
-- EditeD by: Yuri -- Passagem Secreta BOSS: Sunfyre the Golden local positions = { [1] = {pos = {x = 33295, y = 32779, z = 7}, id = 419, toid = 411} } local tempo = 15 function onUse(cid, item, frompos, item2, topos) if getTileItemById(positions[1].pos, positions[1].id).uid < 100 then doPlayerSendTextMessage(cid,19,"Is already open.") doSendMagicEffect(topos, CONST_ME_POFF) return true end doPlayerSendTextMessage(cid,19,"The passage will close in ".. tempo .." seconds.") function criar_paredes(buff) for i = 1, #positions do -
Scripting [AJUDA] ADICIONAR MAGIC EFFECT EM SCRIPT
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
-- EditeD by: Yuri -- Passagem Secreta BOSS: Sunfyre the Golden local positions = { [1] = {pos = {x = 33295, y = 32779, z = 7}, id = 419, toid = 411} } local tempo = 15 function onUse(cid, item, frompos, item2, topos) pos = {x = 33295, y = 32779, z = 7} if getTileItemById(positions[1].pos, positions[1].id).uid < 100 then doPlayerSendTextMessage(cid,19,"Is already open.") doSendMagicEffect(pos, CONST_ME_POFF) return true end doPlayerSendTextMessage(cid,19,"The passage will close in ".. tempo .." seconds.") function criar_paredes(buff) -
Scripting [AJUDA] ADICIONAR MAGIC EFFECT EM SCRIPT
Aragllov respondeu ao tópico de yuriowns em Suporte Tibia OTServer
-- EditeD by: Yuri -- Passagem Secreta BOSS: Sunfyre the Golden local positions = { [1] = {pos = {x = 33295, y = 32779, z = 7}, id = 419, toid = 411} } local tempo = 15 function onUse(cid, item, frompos, item2, topos) if getTileItemById(positions[1].pos, positions[1].id).uid < 100 then doPlayerSendTextMessage(cid,19,"Is already open.") return true end pos = {x = 33295, y = 32779, z = 7} doPlayerSendTextMessage(cid,19,"The passage will close in ".. tempo .." seconds.") function criar_paredes(buff) for i = 1, #positions do if i <=
TibiaKing
Open Tibia Server
Quer aprender a criar seu próprio servidor de Tibia? Então está no lugar certo, aqui você encontrará milhares de tutorias, scripts, códigos, mapas e utilitários para que você possa fazer o seu próprio servidor de Tibia começando do zero.
Anuncie no TibiaKing
Precisa de mais visibilidade em seus projetos? Quer fazer um plano publicitário para o seu servidor? Anuncie no OTKing e faça sua divulgação, possuímos centenas de acessos simultâneos e milhares diários, com certeza será a sua solução!