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

Spellbook of enlightenment Bugged.

Jerry

I've Been Permanently Ban
Joined
Aug 17, 2008
Messages
1,697
Reaction score
1
Location
Panama
Spellbook of enlightenment Says

You see a spellbook of enlightenment (Def:18, magic level +1).
It can only be wielded properly by sorcerers and druids of level 30 or higher.
It weighs 45.00 oz.
It shows your spells and can also shield against attack when worn.

The Magic Boost doesn't work.
 
You have to write this in the movements.xml

<movevent event="Equip" itemid="8900" slot="left-hand" level="30" 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="8900" slot="right-hand" function="onDeEquipItem"/>
<movevent event="Equip" itemid="8900" slot="right-hand" level="30" function="onEquipItem">
<vocation name="Sorcerer"/>
<vocation name="Master Sorcerer" showInDescription="0"/>
<vocation name="Druid"/>
<vocation name="Elder Druid" showInDescription="0"/>
</movevent>
 
Sry, i wrote wrong.

<movevent event="DeEquip" itemid="8900" slot="left-hand" function="onDeEquipItem"/>
<movevent event="Equip" itemid="8900" slot="left-hand" level="30" 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="8900" slot="right-hand" function="onDeEquipItem"/>
<movevent event="Equip" itemid="8900" slot="right-hand" level="30" function="onEquipItem">
<vocation name="Sorcerer"/>
<vocation name="Master Sorcerer" showInDescription="0"/>
<vocation name="Druid"/>
<vocation name="Elder Druid" showInDescription="0"/>
</movevent>
 
Back
Top