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

Weapons adding skills doesnt work

andii95

New Member
Joined
Aug 21, 2009
Messages
413
Reaction score
2
Location
Sweden
Hi guys, I need some help. For some reason my weapons doesnt give skills even though I edit weapons.xml and items.xml. The EQ works, when I edit movements.xml, but not weapons.
An example:
(Items.xml)
<item id="7748" article="a" name="Donate sword">
<attribute key="weight" value="2450" />
<attribute key="defense" value="100" />
<attribute key="attack" value="120" />
<attribute key="weaponType" value="sword" />
<attribute key="skillSword" value="6" />
<attribute key="extradef" value="2" />
</item>

(Weapons.xml)
<melee id="7748" level="100" unproperly="1" event="function" value="default">
<vocation id="4"/>
<vocation id="8" showInDescription="0"/>
<attribute key="skillsword" value="6" />
<attribute key="extradef" value="2" />
</melee>

Does anyone know why it doesnt add skills to sword? Any help is appreciated! :)
I'm using cryingdamson 0.3.6 (8.60) V8.2
 
Last edited:
Remove this from weapons.xml.
Code:
<attribute key="skillsword" value="6" />
<attribute key="extradef" value="2" />
You can add the weapons also in movements.xml, with slottype hand.
 
Back
Top