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

Lua items remove magic level tfs 1.3

LoOoZa

Member
Joined
Sep 18, 2017
Messages
68
Reaction score
5
Hi guys can anyone help me, im loss magic level in wear items

items.xml
LUA:
        <attribute key="magiclevelpoints" value="+7" />
        <attribute key="description" value="+50 health/mana every second and +5% magic damage +7 magic level."/>
        <attribute key="weight" value="4200"/>
        <attribute key="armor" value="500"/>
        <attribute key="slotType" value="necklace"/>
        <attribute key="healthGain" value="50"></attribute>
        <attribute key="HealthTicks" value="1000"></attribute>
        <attribute key="manaGain" value="50"></attribute>
        <attribute key="manaTicks" value="1000"></attribute>
        <attribute key="magicpointspercent" value="5"/>

magic level1.PNGmagic level2.PNGmagic level3.PNG
 
Solution
XML:
        <attribute key="magiclevelpoints" value="7" />
        <attribute key="description" value="+50 health/mana every second and +5% magic damage +7 magic level."/>
        <attribute key="weight" value="4200"/>
        <attribute key="armor" value="500"/>
        <attribute key="slotType" value="necklace"/>
        <attribute key="healthGain" value="50"></attribute>
        <attribute key="HealthTicks" value="1000"></attribute>
        <attribute key="manaGain" value="50"></attribute>
        <attribute key="manaTicks" value="1000"></attribute>
XML:
        <attribute key="magiclevelpoints" value="7" />
        <attribute key="description" value="+50 health/mana every second and +5% magic damage +7 magic level."/>
        <attribute key="weight" value="4200"/>
        <attribute key="armor" value="500"/>
        <attribute key="slotType" value="necklace"/>
        <attribute key="healthGain" value="50"></attribute>
        <attribute key="HealthTicks" value="1000"></attribute>
        <attribute key="manaGain" value="50"></attribute>
        <attribute key="manaTicks" value="1000"></attribute>
 
Solution
Back
Top