
Tudo que Celulose postou
- Fist Fighting/Attackspeed
- [OTX 2.x / 8.60] - OTSERVER
- [OTX 2.x / 8.60] - OTSERVER
- [OTX 2.x / 8.60] - OTSERVER
- OTClient Personal
-
[MY-AAC-GATEWAY + GESIOR BY CLYFE] MercadoPago Pix 100% Automático e Livre de SQL Injection (GRATIS!)
único problema é se o cara pagar e atualizar a pagina sem querer ou entender que não precisa clicar para verificar. tem alguma outra forma para ser literalmente 100%?
-
[TFS 0.4] SafeZone Event - Adaptação de compatibilidade
retira o limit 1 que deve funcionar.
-
Launcher Old Client 8.6
Olá Para old conheço apenas com dll, desconheço sem dll e geralmente não é free..
-
Error mysql na Distro! (Help)
código -> 1062 = Duplicate Storage está salvando duplicada .
-
Efeito Buff em Vocações
Chama aura -:> isso é em dll para old ! Isso é vendido. 2da36333d2292a5f4f7d49e0304b57df.mp4
-
Soul points limite maximo
Aumenta pela source... porém você vai ter que alterar no client, uint16 na real.
- Layout Dragon Ball (A Procura)
-
Baiak Deletebra [ 8.60 ]
tem a db?
-
Porque o TK morreu?
Sdds de quase todos, (exceto absolute).
-
Perder life por segundo ao usar buff
local tempo = 30 local effect = {41} local effect1 = {41} local outfit = {lookType = 3} local vida = getCreatureHealth(cid)*0.1 local points = 20 local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0) local condition = createConditionObject(CONDITION_ATTRIBUTES) setConditionParam(condition, CONDITION_PARAM_TICKS, tempo*1000) setConditionParam(condition, CONDITION_PARAM_STAT_MAGICLEVEL, points) setConditionParam(condition, CONDITION_PARAM_SKILL_FIST, points) setConditionParam(condition, CONDITION_PARAM_SKILL_SWORD, points) setConditionParam(condition, CONDITION_PARAM_SKILL_AXE, points) setConditionParam(condition, CONDITION_PARAM_SKILL_CLUB, points) setConditionParam(condition, CONDITION_PARAM_SKILL_DISTANCE, points) setConditionParam(condition, CONDITION_PARAM_SKILL_SHIELD, points) setConditionParam(condition, CONDITION_PARAM_BUFF, TRUE) setCombatCondition(combat, condition) local function Magica(tempo2,tempo3,cid) if isCreature(cid) then for i=1, #effect do local position = {x=getCreaturePosition(cid).x, y=getCreaturePosition(cid).y, z=getCreaturePosition(cid).z} local position1 = {x=getCreaturePosition(cid).x, y=getCreaturePosition(cid).y, z=getCreaturePosition(cid).z} doSendMagicEffect(position, effect[i]) doSendMagicEffect(position1, effect1[i]) end end end local function Outfitzinha(cid) doRemoveCondition(cid, CONDITION_OUTFIT) end function onCastSpell(cid, var) if exhaustion.check(cid, 102053) == FALSE then doCombat(cid, combat, var) tempo2 = 0 while (tempo2 ~= (tempo*1000)) do addEvent(Magica, tempo2, tempo2, tempo*1000, cid) addEvent(Outfitzinha, tempo*1000, cid) tempo2 = tempo2 + 1000 end local position = {x=getCreaturePosition(cid).x, y=getCreaturePosition(cid).y, z=getCreaturePosition(cid).z} exhaustion.set(cid, 102053, tempo) doCreatureSay(cid, "KAIOKEEEEEEEN", TALKTYPE_MONSTER) doSendMagicEffect(position, 41) doSetCreatureOutfit(cid, outfit) doCreatureAddHealth(cid, -vida) else doPlayerSendCancel(cid, "Desculpe, voce ja esta Transformado.") end end Primeiro verificar se está retirando os 10% depois só adicionar o tempo
-
POTION HEALTH/MANA 70K+
local ITEM = IDDOITEM local storagepotion = 8000 local wait = 1 local REG_HEALTH = 70000 local REG_MANA = 70000 function onUse(cid, item, fromPosition, itemEx, toPosition) if exhaustion.get(cid, storagepotion) then doPlayerSendCancel(cid, "You are exhausted.") return true end if fromPosition.x ~= CONTAINER_POSITION then doPlayerAddMana(cid, REG_MANA) doCreatureAddHealth(cid, REG_HEALTH) exhaustion.set(cid, storagepotion, wait) elseif item.itemid == ITEM then doPlayerAddMana(cid, REG_MANA) doCreatureAddHealth(cid, REG_HEALTH) exhaustion.set(cid, storagepotion, wait) end return true end
-
[MyAAC] Sistema de Troca de Vocação
@Endless Precisa corrigir 2coisinha account.management.html.twig <form action="{{ getLink('mudavoc') }}" method="post"> esqueceu do r <form action="{{ getLink('mudarvoc') }}" method="post"> nomeiavoc() Call to undefined function nomeiavoc()
- Simple (DLL) WSAD
- Simple (DLL) WSAD
-
Armas com efeitos
local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, 1) setCombatParam(combat, COMBAT_PARAM_BLOCKSHIELD, 1) setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatFormula(combat, COMBAT_FORMULA_SKILL, 1.0, 0, 1.0, 0) function onUseWeapon(cid, var) local chance = 10 -- chance em porcentagem de acontecer o script de double attack if chance <= math.random(1,100) then doCombat(cid, combat, var) else doCombat(cid, combat, var) addEvent(doCombat, 500, cid, combat, var) end return true end <melee id="7430" event="script" value="script.lua"/> https://tibiaking.com/forums/topic/86748-double-hit-na-arma/
-
Erro GlobalEvent Interface flodando minha distro
@Old tibians Em lib. Cria um novo arquivo killlua.lua e adicione. function hourToNumber(str) -- By Killua local hour = (tonumber(str:sub(1,2))*3600) + (tonumber(str:sub(4,5)) * 60) if #str > 5 then hour = hour + tonumber(str:sub(7,8)) end return hour end function timeString(timeDiff,english) local dateFormat = {} if english then dateFormat = { {"day", timeDiff / 60 / 60 / 24}, {"hour", timeDiff / 60 / 60 % 24}, {"minute", timeDiff / 60 % 60}, {"second", timeDiff % 60} } else dateFormat = { {"dia", timeDiff / 60 / 60 / 24}, {"hora", timeDiff / 60 / 60 % 24}, {"minuto", timeDiff / 60 % 60}, {"segundo", timeDiff % 60} } end 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 ' e ') .. v .. ' ' .. t[1] .. (v ~= 1 and 's' or '')) end end return table.concat(out) end
-
Como mensurar/escolher um servidor dedicado?
depende da source pra ser sincero no meu caso já peguei 425 players usando 40% de cpu, em vps de 100$ porém ela é otimizado. mais fique tranquilo em questão de estar 7% se for uma otx 2 ou 3 deve aguentar tranquilo 400 players em derivado, agora em tibia deve aguentar bastante
- Trade Offline V2.0
-
Senzu sem Exhaust!
@nizin da pra fazer alterando a sources caso queira..
- [Old Client] Como Hookar Dll