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

increasemagicdamagepercent

Xandoko

Active Member
Joined
Jul 11, 2014
Messages
134
Reaction score
2
Is There is Any attributes Key For items to Add % Magic dmg? on TFS 3884?
 
@Xandoko Example: (Magic Xandoko Amor) Description: Increase your magic....

Items.XML

<item id="XXXX" article="a" name="XXXX">
<attribute key="description" value="Xandoko Armor increase your magic."/>
<attribute key="weight" value="850"/>
<attribute key="armor" value="1"/>
<attribute key="slotType" value="head"/>
<attribute key="increaseMagicPercent" value="10"/>
</item>

If it doenst work try with:
Code:
<attribute key="MAGICPOINTSPERCENT" value="115"/>

Movements.xml

<movevent event="Equip" itemid="XXXX" slot="body" function="onEquipItem" />
<movevent event="DeEquip" itemid="XXXX" slot="body" function="onDeEquipItem" />
 
Back
Top