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

tfs 1.1 items wont add sword skill

7804364

Member
Joined
Mar 6, 2010
Messages
457
Reaction score
10
Ok so these legs wont add sword or axe or magic and i dont know why, WHEN i try another item that gives sword it will, but just not this leg item

Code:
23:17 You see a daedric leggings (Arm:25, sword fighting +8, axe fighting +8, shielding +8, magic level +8, protection physical +10%, ice +20%).
It weighs 71.00 oz.
ItemID: [2507].

Code:
<item id="2507" name="daedric leggings">
  <attribute key="weight" value="7100" />
  <attribute key="armor" value="25" />
  <attribute key="slotType" value="legs" />
  <attribute key="skillSword" value="8" />
  <attribute key="skillAxe" value="8" />
  <attribute key="skillDistance" value="8" />
  <attribute key="magiclevelpoints" value="8" />
  <attribute key="skillShield" value="8" />
  <attribute key="absorbPercentPhysical" value="10" />
  <attribute key="absorbPercentIce" value="20" />
</item>
 
Code:
<movevent event="DeEquip" itemid="2507" slot="legs" function="onDeEquipItem"/>
<movevent event="Equip" itemid="2507" slot="legs" function="onEquipItem"/>

items that gives you attributes must also be registered in movements.xml
 
Back
Top