• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Exhaust in Runes

Dogrinha

New Member
Joined
Oct 6, 2019
Messages
206
Solutions
1
Reaction score
2
Hey guys, i need some help in how to put exhaust in Icicle
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true)
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_ICEDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_ICEAREA)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ICE)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1, -10, -1, -15, 5, 5, 2.7, 3, -20, -40)

function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
TFS 0.4
 
Read this to learn how to post a code on your next thread.

and what Lua script has to do with exhaust? it should be in spells.xml find the rune and change exhaustion="1000" to whatever you want.
 
The exhaustion is right, but sometimes the characters have a double attack. The rune is used 2 times in sequence
 
apparently all non-area shot runes, he shoots for example 1,2,3,4,5-5, 1,2,3,4,5,6,7,8-8, is something like a very fast repetition with each sequence
 
Back
Top