• 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!

Damage Absorb/Reducing condition. Is there one?

Kaboo

New Member
Joined
Feb 14, 2009
Messages
142
Reaction score
0
Hello, i have an 8.5 server(crying damson), and i'm looking for a condition param, or something like this, that reduces the damage taken/absorb the damage taken.
EX.: i can use it in a spell that absorbs all damage taken in 10%.

I don't know any param that i can use for this, and i didn't manage to find one. So if you know one please post it! .
Thanks friends!
 
If you are a smart boy you was going to take idea from some rings ;)
Hi, I've actually tried to take from Stone Skin Amulet, but i'm looking for a condition parameter(or something like a condition param), here's one of the lines of stone skin amulet in items.xml:
Code:
<attribute key="absorbPercentPhysical" value="80"/>
Is it possible to use it as a condition parameter?

Thanks.
 
LUA:
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DROWNDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_LOSEENERGY)
setCombatFormula(combat, COMBAT_FORMULA_UNDEFINED, 0, 0, 0, 0)
 
LUA:
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DROWNDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_LOSEENERGY)
setCombatFormula(combat, COMBAT_FORMULA_UNDEFINED, 0, 0, 0, 0)

I don't see anything in here that has to do with absorbing damage.
 
Back
Top