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

Item Attributes Problem Anyone?

feslir

New Member
Joined
Sep 2, 2007
Messages
241
Reaction score
2
Location
Kosovo
So, i was creating new items with new attributes. but ingame they aint working.
lets say im adding Skilldistance, but ingame the item doensnt give anything :/
and i also added them inside movement.

<item id="12604" article="a" name="Spartacus Legs">
<attribute key="weight" value="6500"/>
<attribute key="armor" value="20"/>
<attribute key="slotType" value="legs"/>
<attribute key="absorbPercentAll" value="5"/>
<attribute key="skillDist" value="12"/>
<attribute key="showattributes" value="1"/>
</item

how come?
 
This is how ours is set-up.
Maybe just check everything is normal?
Code:
  <movevent type="Equip" itemid="2171" slot="necklace" event="function" value="onEquipItem"/>
   <movevent type="DeEquip" itemid="2171" slot="necklace" event="function" value="onDeEquipItem"/>
Code:
<item id="2171" article="a" name="Major Amulet Of Attack">
     <attribute key="weight" value="600"/>
     <attribute key="armor" value="10"/>
     <attribute key="slotType" value="necklace"/>
     <attribute key="description" value="(+30 Sword) (+30 Axe) (+30 Club) (+30 Fist) (+30 Distance)"/>
     <attribute key="skillSword" value="30"/>
    <attribute key="SkillAxe" value="30"/>
    <attribute key="skillClub" value="30"/>
    <attribute key="skillFist" value="30"/>
    <attribute key="skillDist" value="30"/>
   </item>
 
Code:
<movevent type="Equip" itemid="12604" slot="legs" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="12604" slot="legs" event="function" value="onDeEquipItem"/>

Add that and you should be good
 
Back
Top Bottom