• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Armor protects from any spells!

Printer

if Printer then print("LUA") end
Senator
Premium User
Joined
Dec 27, 2009
Messages
5,780
Solutions
31
Reaction score
2,299
Location
Sweden?
Armor protects from any spells! Ex. You see crown armor (Arm: 20) + 15magic protection. It means that the spells will dmg 15% less with their spells.

Rep!
 
I think you can do "absorbpercentmagic".

example:
LUA:
<item id="2161" article="a" name="strange talisman">
		<attribute key="weight" value="290"/>
		<attribute key="slotType" value="necklace"/>
		<attribute key="charges" value="200"/>
		<attribute key="showcharges" value="1"/>
		<attribute key="absorbPercentMagic" value="10"/>
		<attribute key="showattributes" value="1"/>
	</item>

This would reduce magic damage of all magic types:

LUA:
COMBAT_ENERGYDAMAGE
COMBAT_FIREDAMAGE
COMBAT_EARTHDAMAGE
COMBAT_ICEDAMAGE
COMBAT_HOLYDAMAGE
COMBAT_DEATHDAMAGE
 
Back
Top