Tudo que ViitinG postou
-
(Resolvido){ERROR} Task System
Opa,claro que posso ! Estava faltando fechar aqui : A tabela não tava fechada porque a ultima chave estava fechando o monstro Juggernaut e não a tabela.
-
(Resolvido){ERROR} Task System
Não testei :
-
Tomorrowland TV 2014
Só eu que não vejo a hora de chegar 2015 ? Enquanto não chega,bora curtir AO VIVO !!!!! https://www.youtube.com/watch?v=-m7VVgaRFio&feature=inp-lt-tbb
-
(Resolvido)[Duvida] Mesmo IP não recebe item. (Anti-MC)
Adicione este script : "data/creaturescripts/creaturescripts.xml" : <event type="kill" name="VGAntiMC" event="script" value="victorgantimc.lua"/> "data/creaturescripts/scripts/login.lua" : registerCreatureEvent(cid, "VGAntiMC") "data/creaturescripts/scripts/victorgantimc.lua" : local exp = 10000 local item,quant = 7369,1 function onKill(cid, target, damage, flags) if isPlayer(target) then if getPlayerIp(cid) == getPlayerIp(target) then doPlayerAddExp(cid, -exp) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Foi detectado o uso de MC você perderá "..exp.." de exp") return true end doPlayerAddItem(cid, item, quant) return true end return true end
- [talkaction] Teleport System (somente para TFS 1.0)
-
(Pedido) Boost System
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 → Suporte OTServ → Suporte de Scripts" Para: "OTServ → Suporte OTServ → Suporte de Servidores Derivados"
- COMO EDITO POKEHAUSE V2 MANO PARA COLOCA IP´SERVE
-
Editar logo
@roriscrave moderação secundária é proibído no fórum amigo,caso encontre algum membro infringindo alguma das regras do fórum basta reportar e aguardar um membro da equipe ! Leia as regras do fórum : http://www.tibiaking.com/forum/topic/1281-regras-gerais/?p=7680#entry7680
-
(Resolvido)Itens ao criar boneco
Verifica na pasta creaturescripts se não tem o script firstitems.
-
[TFS 1.0] Unique Teleportation System
Amigo ja existe um tópico que traz o mesmo conteúdo,antes de postar alguma coisa tente procurar para ver se não existe um tópico com o mesmo conteúdo que será postado ! Leia as regras do fórum : http://www.tibiaking.com/forum/forum/23-regras-do-forum/ LINK para o tópico : http://www.tibiaking.com/forum/topic/37179-talkaction-teleport-system-somente-para-tfs-10/
-
(Resolvido)[Pedido] Max Ml
Amigo ja é a terceira vez que aviso você sobre dar UP em um tópico antes de 24 horas,se persistir vou ter que mandar um moderador tomar alguma providência. Leia as regras com ATENÇÃO : http://www.tibiaking.com/forum/forum/23-regras-do-forum/
-
(Resolvido)Como fazer a pick (picareta) funcionar?
Abra o RME e clique em "Terrain Palette>Cave",após clicar selecione o cave pickhole como mostra na imagem : Agora é só colocar onde desejar. 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 → Suporte OTServ → Suporte de OTServ Geral" Para: "OTServ → Suporte OTServ → Suporte de Mapping"
-
(Resolvido)[Pedido] Script de War
Não testei : function onLogin(cid) local playerVoc = getPlayerVocation(cid) local reqTries = getPlayerRequiredSkillTries local skillStor = 56364 local gotSkills = getPlayerStorageValue(cid, 56364) if playerVoc == 1 and gotSkills == -1 then doPlayerAddSpentMana(cid, (getPlayerRequiredMana(cid,85))) setPlayerStorageValue(cid, skillStor, 1) elseif playerVoc >= 1 and gotSkills == -1 then doPlayerAddSkillTry(cid, SKILL_AXE, reqTries(cid, SKILL_AXE, 70)) doPlayerAddSkillTry(cid, SKILL_SWORD, reqTries(cid, SKILL_SWORD, 72)) doPlayerAddSkillTry(cid, SKILL_SHIELD, reqTries(cid, SKILL_SHIELD, 70)) doPlayerAddSpentMana(cid, (getPlayerRequiredMana(cid,8))) setPlayerStorageValue(cid, skillStor, 1) end return TRUE end
-
(Resolvido)[Pedido] Script de War
Eu usava este : function onLogin(cid) local playerVoc = getPlayerVocation(cid) local reqTries = getPlayerRequiredSkillTries local skillStor = 56364 local gotSkills = getPlayerStorageValue(cid, 56364) if playerVoc == 1 and gotSkills == -1 then doPlayerAddSpentMana(cid, (getPlayerRequiredMana(cid,85))) setPlayerStorageValue(cid, skillStor, 1) elseif playerVoc == 2 and gotSkills == -1 then doPlayerAddSpentMana(cid, (getPlayerRequiredMana(cid,85))) setPlayerStorageValue(cid, skillStor, 1) elseif playerVoc == 3 and gotSkills == -1 then doPlayerAddSkillTry(cid, SKILL_DISTANCE, reqTries(cid, SKILL_DISTANCE, 69)) doPlayerAddSkillTry(cid, SKILL_SHIELD, reqTries(cid, SKILL_SHIELD, 60)) doPlayerAddSpentMana(cid, (getPlayerRequiredMana(cid,26))) setPlayerStorageValue(cid, skillStor, 1) elseif playerVoc == 4 and gotSkills == -1 then doPlayerAddSkillTry(cid, SKILL_AXE, reqTries(cid, SKILL_AXE, 70)) doPlayerAddSkillTry(cid, SKILL_SWORD, reqTries(cid, SKILL_SWORD, 72)) doPlayerAddSkillTry(cid, SKILL_SHIELD, reqTries(cid, SKILL_SHIELD, 70)) doPlayerAddSpentMana(cid, (getPlayerRequiredMana(cid,8))) setPlayerStorageValue(cid, skillStor, 1) end return TRUE end Xml : <event type="login" name="StartSkills" event="script" value="startskills.lua"/> Login.lua : registerCreatureEvent(cid, "StartSkills")
-
( Projeto Rpg Maker vx )
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 → Projetos / Formação de Equipes → Projetos de OTServ" Para: "OTServ → Suporte OTServ → Suporte de Programação"
-
XtremeWorlds
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 → Projetos / Formação de Equipes → Projetos de OTServ" Para: "OTServ → Suporte OTServ → Suporte de Programação"
-
Pedido talkaction que muta player no help channel
O título do tópico for alterado de : "[PEDIDO]" para "Pedido talkaction que muta player no help channel". Leia as regras do fórum : www.tibiaking.com/forum/forum/23-regras-do-forum/
-
Pedido talkaction que muta player no help channel
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 → Sistemas e MODs" Para: "OTServ → Suporte OTServ → Suporte de Scripts"
-
(Resolvido)Itens ao criar boneco
Amigo não tem necessidade de criar 2 tópicos,isso é considerado double topic e é proibído no fórum ! Leia as regras do fórum : http://www.tibiaking.com/forum/topic/1281-regras-gerais/?p=7680#entry7680
-
[Pedido Urgente] Stages ML ou Limit ML
@ScreMMo só é permitido dar UP após 24 horas,ja avisei você sobre isso amigo ! Leia as regras do fórum : http://www.tibiaking.com/forum/forum/23-regras-do-forum/
-
(Resolvido)[PEDIDO]Área em que o mob pode se mecher
Não sei se entendi bem,se for oque entendi é só fazer o seguinte : Vá em Creature Palette e Others : Selecione o monstro e clique Place Spawn depois em Place Creature : Após clicar em Place Spawn,coloque o spawn no local que deseja e depois clique em Place Creature e coloque a criatura(no meu caso Dragon) dentro do spawn :
-
(Resolvido)[Position] ModernAcc
A posição do templo pode ser alterada com o RME,aperte "Ctrl + T" e mude a town que desejar.
-
(Resolvido)NPC (Teleport por Item)
Não testei : local lugar = {x=102, y=1027, z=7} local item = 2160 local quantidade = 10 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 function santaNPC(cid, message, keywords, parameters, node) if(not npcHandler:isFocused(cid)) then return false end if (parameters.present == true) then if(doPlayerRemoveItem(cid,item,quantidade) == true) then doTeleportThing(cid, lugar) npcHandler:say('Voce foi teleportado.',cid) else npcHandler:say('Voce não tem o item para ser teleportado',cid) end npcHandler:resetNpc() return true end end npcHandler:setMessage(MESSAGE_GREET, "Ola|PLAYERNAME|. Eu posso te levar para alguns lugares,fale {lugar}.") local noNode = KeywordNode:new({'no'}, santaNPC, {present = false}) local yesNode = KeywordNode:new({'yes'}, santaNPC, {present = true}) local node = keywordHandler:addKeyword({'lugar'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Vou te levar para um lugar,digite {yes}'}) node:addChildKeywordNode(yesNode) node:addChildKeywordNode(noNode) npcHandler:addModule(FocusModule:new())
-
(Resolvido)Movement [ADDITEM]
Tem este script,não sei se ajuda (caso não encontre um por tempo) : http://www.tibiaking.com/forum/topic/33793-talkactions-adicionar-item-para-todos-players-online/
-
Aumentar life de pokémons selvagens
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 → Suporte OTServ → Suporte de Programação" Para: "OTServ → Suporte OTServ → Suporte de Servidores Derivados"