• 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 Hat of the mad, and spellbook of vigilance bug

Status
Not open for further replies.

arkoth

New Member
Joined
Jul 18, 2008
Messages
24
Reaction score
0
im having problems with this items, when i put on the hat of the mad, it gives me 1+ ML but when i take it off it stays the same, and my spellbook of vigilance doesnt even add the points help :S

Code:
	<item id="18401" article="a" name="spellbook of vigilance">
		<attribute key="weight" value="2700"/>
		<attribute key="description" value="It shows your spells and can also shield against attacks when worn."/>
		<attribute key="defense" value="20"/>
		<attribute key="weaponType" value="shield"/>
		<attribute key="absorbPercentEarth" value="3"/>
		<attribute key="absorbPercentFire" value="-3"/>
		<attribute key="magicpoints" value="3"/>
		<attribute key="showattributes" value="1"/>
Code:
	<item id="2323" article="a" name="hat of the mad">
		<attribute key="description" value="You have a vague feeling that it looks somewhat silly."/>
		<attribute key="weight" value="700"/>
		<attribute key="armor" value="3"/>
		<attribute key="magicpoints" value="1"/>
		<attribute key="slotType" value="head"/>
 
Is the spellbook registered in movements.xml?

XML:
<movevent event="Equip" itemid="18401" slot="shield" level="130" function="onEquipItem">
        <vocation name="Sorcerer"/>
        <vocation name="Master Sorcerer" showInDescription="0"/>
        <vocation name="Druid"/>
        <vocation name="Elder Druid" showInDescription="0"/>
</movevent>
<movevent event="DeEquip" itemid="18401" slot="shield" function="onDeEquipItem"/>

Which TFS version are you using by the way?
 
Status
Not open for further replies.
Back
Top