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

Solved Why the weapon doesn't attack with the damage defined?

Joined
Jul 18, 2014
Messages
193
Solutions
2
Reaction score
15
Hi!, i modified a weapon (rod) with more damage but when i reload the weapons and test it, the attack damage is lower than the defined in weapons.xml
This is the code:
Code:
<wand id="13872" level="600" mana="150" min="800" max="960" type="ice" function="default">
        <vocation name="Druid"/>
    </wand>

Please help!. Thanks:)
 
<wand id="13872" level="600" mana="150" min="800" max="960" type="ice" event="function" value="default">
<vocation id="2"/>
<vocation id="6"/>

Try this

6 for elder druid too. 2 just druid.

did you also edit items.xml?
to something like this:

<item id="13872" article="a" name=" xxxx ">
<attribute key="weight" value="2300" />
<attribute key="weaponType" value="wand" />
<attribute key="shootType" value="smallice" />
<attribute key="range" value="6" />
<attribute key="attackSpeed" value="700" />
</item>
 
<wand id="13872" level="600" mana="150" min="800" max="960" type="ice" event="function" value="default">
<vocation id="2"/>
<vocation id="6"/>

Try this

6 for elder druid too. 2 just druid.

did you also edit items.xml?
to something like this:

<item id="13872" article="a" name=" xxxx ">
<attribute key="weight" value="2300" />
<attribute key="weaponType" value="wand" />
<attribute key="shootType" value="smallice" />
<attribute key="range" value="6" />
<attribute key="attackSpeed" value="700" />
</item>

I already fixed it. The problem was in weapons.xml, there had the same line for weapon but the first one had the atk low and the second had the atk high. I just deleted the first one and now works. But thanks for respond^^
 
Back
Top