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

How do I change level requirements of set items?

Imereth Popis

dopera.sytes.net
Joined
Jan 30, 2017
Messages
111
Solutions
1
Reaction score
12
Location
Spain
I found how to change the weapons level requirements, on weapons.xml, but I am not finding the set items like royal scale robe, gil legs, etc...

Thanks you in advance
 
Solution
I found how to change the weapons level requirements, on weapons.xml, but I am not finding the set items like royal scale robe, gil legs, etc...

Thanks you in advance
movements search item for ID
example: ID 18400 = Gill Legs

Code:
    <movevent event="Equip" itemid="18400" slot="legs" level="150" function="onEquipItem">
        <vocation name="Sorcerer" />
        <vocation name="Master Sorcerer" showInDescription="0" />
        <vocation name="Druid" />
        <vocation name="Elder Druid" showInDescription="0" />
    </movevent>
I found how to change the weapons level requirements, on weapons.xml, but I am not finding the set items like royal scale robe, gil legs, etc...

Thanks you in advance
movements search item for ID
example: ID 18400 = Gill Legs

Code:
    <movevent event="Equip" itemid="18400" slot="legs" level="150" function="onEquipItem">
        <vocation name="Sorcerer" />
        <vocation name="Master Sorcerer" showInDescription="0" />
        <vocation name="Druid" />
        <vocation name="Elder Druid" showInDescription="0" />
    </movevent>
 
Solution
movements search item for ID
example: ID 18400 = Gill Legs

Code:
    <movevent event="Equip" itemid="18400" slot="legs" level="150" function="onEquipItem">
        <vocation name="Sorcerer" />
        <vocation name="Master Sorcerer" showInDescription="0" />
        <vocation name="Druid" />
        <vocation name="Elder Druid" showInDescription="0" />
    </movevent>
Thank you
 
Back
Top