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

Bazi

Member
Joined
Oct 24, 2011
Messages
270
Reaction score
8
Location
Germany
I have items like this:

17:45 You see a HighOt Shield (Def:20000, sword fighting +5).
It weighs 5.00 oz.
ItemID: [12605].
Position: [X: 1020] [Y: 1022] [Z: 7].

But The Sword Fighting dont work i dont know about def working but i have other items whit speed and some more things how i make that the items work? please

:$




Bazi
 
i have test but it so

<movevent type="DeEquip" itemid="xxx" slot="feet" event="function" value="onDeEquipItem"/>
<movevent type="Equip" itemid="xxx" slot="feet" event="function" value="onEquipItem">
<vocation id="1"/>
<vocation id="5" showInDescription="0"/>
<vocation id="2"/>
<vocation id="6" showInDescription="0"/>

but dont work any thing of that items...
 
<movevent type="Equip" fromid="12605" toid="12605" slot="Shield" level="100" event="function" value="onEquipItem">
<vocation id="4"/>
<vocation id="8" showInDescription="0"/>

It weighs 5.00 oz.
15:25 You see a HighOt Shield (Def:20000, sword fighting +5).
It can only be wielded properly by elite knights of level 100 or higher.
It weighs 5.00 oz.

but it dont help
 
here items.xml

<item id="12605" article="a" name="HighOt Shield">
<attribute key="weight" value="500" />
<attribute key="defense" value="20000" />
<attribute key="skillSword" value="5" />
<attribute key="weaponType" value="shield" />
 
test this

Lua:
<movevent type="DeEquip" itemid="12605" slot="shield" level="100" event="function" value="onDeEquipItem"/>
<movevent type="Equip" itemid="12605" slot="Shield" level="100" event="function" value="onEquipItem">
<vocation id="4"/>
<vocation id="8" showInDescription="0"/> 
</movevent>
 
Last edited:
<item id="12605" article="a" name="HighOt Shield">
<attribute key="weight" value="500" />
<attribute key="defense" value="20000" />
<attribute key="skillSword" value="5" />
<attribute key="weaponType" value="shield" />

only this for the def ?

- - - Updated - - -

<item id="12605" article="a" name="HighOt Shield">
<attribute key="weight" value="500" />
<attribute key="defense" value="20000" />
<attribute key="skillSword" value="5" />
<attribute key="weaponType" value="shield" />

only this for the def ?
 
ok but now how i can make a armor to a legs


<item id="12604" article="a" name="HighOt Legs">
<attribute key="weight" value="500" />
<attribute key="legs" value="20000" />
<attribute key="slotType" value="body" />
<attribute key="magiclevelpoints" value="3" />
<attribute key="absorbPercentFire" value="5" />
</item>

Normaly is that the Royal draken mail
 
Back
Top