
Tudo que Wakon postou
-
[ACTIONS] Estatua que Heala
Tópico aprovado, obrigado por compartilhar.
- Ajuda na Source
- Tile por horário
- Dar ou retirar item do player
-
[Link Quebrado]Tibia IP Changer 10.98
Tópico aprovado, obrigado por compartilhar.
- (Resolvido)Addon Doll não funciona
-
Talkaction para ver status.
Em "Data/talkactions/scripts", crie um arquivo.lua e cole: function onSay(cid, words) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, 'Life: '.. getCreatureHealth(cid) ..'/'.. getCreatureMaxHealth(cid) ..' - Mana: '.. getCreatureMana(cid) ..'/'.. getCreatureMaxMana(cid) ..'.') return true end Em "Data/talkactions", abra o arquivo talkactions.xml e adicione: <talkaction log="yes" words="!life;!mana;!stats" event="script" value="arquivo.lua" />
-
(Resolvido)Addon Doll não funciona
@lucaspds, você deve ter removido algo a mais, testei aqui e está normal: local addonDoll = 2112 function onSay(cid, words, param) local femaleOutfits = { ["citizen"]={136}, ["hunter"]={137}, ["mage"]={138}, ["knight"]={139}, ["nobleman"]={140}, ["summoner"]={141}, ["warrior"]={142}, ["barbarian"]={147}, ["druid"]={148}, ["wizard"]={149}, ["oriental"]={150}, ["pirate"]={155}, ["assassin"]={156}, ["beggar"]={157}, ["shaman"]={158}, ["norsewoman"]={252}, ["nightmare"]={269}, ["jester"]={270}, ["brotherhood"]={279}, ["demonhunter"]={288}, ["yalaharian"]={324} } local maleOutfits = { ["citizen"]={128}, ["hunter"]={129}, ["mage"]={130}, ["knight"]={131}, ["nobleman"]={132},["summoner"]={133}, ["warrior"]={134}, ["barbarian"]={143}, ["druid"]={144}, ["wizard"]={145}, ["oriental"]={146}, ["pirate"]={151}, ["assassin"]={152}, ["beggar"]={153}, ["shaman"]={154}, ["norsewoman"]={251}, ["nightmare"]={268}, ["jester"]={273}, ["brotherhood"]={278}, ["demonhunter"]={289}, ["yalaharian"]={325} } local msg = {"Digite o nome correto!", "Voce não possui Addon Doll!", "Bad param!", "Você recebeu seu addons!"} local param = string.lower(param) if(getPlayerItemCount(cid, addonDoll) > 0) then if(param ~= "" and maleOutfits[param] and femaleOutfits[param]) then doPlayerRemoveItem(cid, addonDoll, 1) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[4]) doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS) if(getPlayerSex(cid) == 0)then doPlayerAddOutfit(cid, femaleOutfits[param][1], 3) else doPlayerAddOutfit(cid, maleOutfits[param][1], 3) end else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[1]) end else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[2]) end end
- (Resolvido)Addon Doll não funciona
-
[DÚVIDA] Script error
Tente:
-
Script PREMIUM
Esta é uma mensagem automática, este tópico foi movido para a área correta. Regras do fórum: http://www.tibiaking.com/forum/topic/1281-regras-gerais/#comment-7680 Este tópico foi movido: De: Scripting OTServ > OTServ > Actions e TalkActions Para: Suporte OTServ > OTServ > Suporte de Scripts Script: http://www.tibiaking.com/forum/topic/2623-creaturescript-ganhar-3-dias-de-premium-ao-logar-pela-primeira-vez/
-
[PEDIDO] PIC 8.6
Esta é uma mensagem automática, este tópico foi movido para a área correta. Regras do fórum: http://www.tibiaking.com/forum/topic/1281-regras-gerais/#comment-7680 Este tópico foi movido: De: Clients OTServ > OTServ > Tutoriais de Clients Para: Suporte OTServ > OTServ > Suporte de Clients
-
[DUVIDA] Como aumentar a carga do AOL.
Esta é uma mensagem automática, este tópico foi movido para a área correta. Regras do fórum: http://www.tibiaking.com/forum/topic/1281-regras-gerais/#comment-7680 Este tópico foi movido: De: Scripting OTServ > OTServ > Outros Tipos Para: Suporte OTServ > OTServ > Suporte de OTServ Geral
- [LAYOUT Gesior] Dbo Global
-
[DÚVIDA] Script error
Esta é uma mensagem automática, este tópico foi movido para a área correta. Regras do fórum: http://www.tibiaking.com/forum/topic/1281-regras-gerais/#comment-7680 Este tópico foi movido: De: Scripting OTServ > OTServ > Actions e TalkActions Para: Suporte OTServ > OTServ > Suporte de Scripts
-
Geisior
Esta é uma mensagem automática, este tópico foi movido para a área correta. Regras do fórum: http://www.tibiaking.com/forum/topic/1281-regras-gerais/#comment-7680 Este tópico foi movido: De: WebSites OTServ > OTServ > Downloads de Websites Para: Suporte OTServ > OTServ > Suporte de WebSites
- Erro Remeres
- [URGENTE] Vender vip gesior
- (Resolvido)Bug Mount + Addons +GuildShop.
-
(Resolvido)Oracle
Esta é uma mensagem automática, este tópico foi movido para a área correta. Regras do fórum: http://www.tibiaking.com/forum/topic/1281-regras-gerais/#comment-7680 Este tópico foi movido: De: OTServ > Notícias e OTServ Geral Para: Suporte OTServ > OTServ > Suporte de OTServ Geral
-
Eloth.net MC - Multiclient [v150]
@Dakuz, try the new download, change eloth.exe and eloth.dll.
-
LevelUP Time - "You advanced to level 35 in 3 minutes and 10 seconds".
Achei esse script muito interessante na OTLand e resolvi trazer pra vocês. Versão: TFS 1.X Função: Mostra quanto tempo levou para upar deis de o ultimo level. Instalação: Em "Data/creaturescripts/scripts", copie e cole um arquivo.LUA, renomeie para timeLevel.lua, apague tudo e cole: function timeString(timeDiff) local dateFormat = { {"day", timeDiff / 60 / 60 / 24}, {"hour", timeDiff / 60 / 60 % 24}, {"minute", timeDiff / 60 % 60}, {"second", timeDiff % 60} } local out = {} for k, t in ipairs(dateFormat) do local v = math.floor(t[2]) if(v > 0) then table.insert(out, (k < #dateFormat and (#out > 0 and ', ' or '') or ' and ') .. v .. ' ' .. t[1] .. (v ~= 1 and 's' or '')) end end local ret = table.concat(out) if ret:len() < 16 and ret:find("second") then local a, b = ret:find(" and ") ret = ret:sub(b+1) end return ret end function onAdvance(player, skill, oldlevel, newlevel) if skill ~= SKILL_LEVEL then return true end oldtime = player:getStorageValue(3499) timenow = os.time() if oldtime == -1 then player:setStorageValue(3499, timenow) else player:sendTextMessage(MESSAGE_INFO_DESCR, "It took you " .. timeString(timenow - oldtime) .. " to advance in level from your last advance.") player:setStorageValue(3499, timenow) end return true end Novamente em "Data/creaturescripts/scripts", abra o arquivo login.lua e registre: player:registerEvent("timelevel") Agora em "Data/creaturescripts", abra o arquivo creaturescripts.xml e adicione: <event type="advance" name="timelevel" script="timelevel.lua"/> Créditos: Ahilphino
-
[PEDIDO] Ao Pisar no tile a parede Muda ( Não some )
Esta é uma mensagem automática, este tópico foi movido para a área correta. Regras do fórum: http://www.tibiaking.com/forum/topic/1281-regras-gerais/#comment-7680 Este tópico foi movido: De: Scripting OTServ > OTServ > CreatureScripts, GlobalEvents e MoveMents Para: Suporte OTServ > OTServ > Suporte de Scripts
-
Teleport por level
@Morphred, pra usar em uma porta é necessário uma action. Em "Data/actions/scripts", copie e cole um arquivo.lua, renomeie para nomedoscript.lua, apague tudo e cole: local level = 300 function onUse(cid, item, position) if getPlayerLevel(cid) >= level then doTeleportThing(cid, position) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_TELEPORT) else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, 'Apenas jogadores level '.. level ..' ou mais podem passar.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) end return true end Agora em "Data/actions", abra o arquivo actions.xml e adicione: <action actionid="XXXX" event="script" value="nomedoscript.lua"/> Ai é só colocar a action em XXXX e configurar na porta.
-
[ACTION] Removendo empty potion flask
Esta é uma mensagem automática, este tópico foi movido para a área correta. Regras do fórum: http://www.tibiaking.com/forum/topic/1281-regras-gerais/#comment-7680 Este tópico foi movido: De: Scripting OTServ > OTServ > Actions e TalkActions Para: Suporte OTServ > OTServ > Suporte de Scripts