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

Lua Furious Frock

Powtreeman

Member
Joined
Sep 26, 2011
Messages
400
Reaction score
6
Location
USA
How can I get this item in the pack? A player of mine was requesting it and I realized i didn't have it and it wasn't in any of the distros
 
Code:
    <item id="21725" article="a" name="furious frock">
        <attribute key="weight" value="3400" />
        <attribute key="armor" value="12" />
        <attribute key="slotType" value="body" />
        <attribute key="magiclevelpoints" value="2" />
        <attribute key="absorbPercentFire" value="5" />
    </item>

Code:
    <movevent event="Equip" itemid="21725" slot="armor" 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="21725" slot="armor" function="onDeEquipItem"/>
 
Back
Top