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

make new items

shawntio

Member
Joined
Apr 14, 2008
Messages
737
Reaction score
5
Location
sweden
haha this is a noobie question :P how do i make new items like donation boots etc?
i know i need otitem editor or something :P is there any guide for it? Thanks!
 
In This Instance, I Will Be Using "Demon Armor"

Code:
    <item id="2494" article="a" name="demon armor">
        <attribute key="weight" value="8000"/>
        <attribute key="armor" value="16"/>
        <attribute key="slotType" value="body"/>
    </item>

First, let's see what these attributes mean,


This is the key for Weight, in this, the weight will be 80.00oz.
Code:
        <attribute key="weight" value="8000"/>

The key for Armor, right now, the armor is 16.
Code:
        <attribute key="armor" value="16"/>

The key for the slotType, as in, legs, helmet, weapon, body, boots..
Code:
        <attribute key="slotType" value="body"/>

ID of the Item = 2494 // Name = "a demon armor"
Code:
<item id="2494" article="a" name="demon armor">

Now, we will be begging to edit the item,

Code:
    <item id="2494" article="the" name="darkwing's crest">
        <attribute key="weight" value="5000"/>
        <attribute key="armor" value="25"/>
        <attribute key="slotType" value="body"/>
    </item>

Now, the item is - "the Darkwing's Crest" "Armor 25" Weight "50.00oz"

There is also a few other attribute keys, lets take a look at those,

Code:
        <attribute key="description" value="This is a heirloom of the Darkwing Family."/>
        <attribute key="absorbPercentPhysical" value="3"/>
        <attribute key="defense" value="16"/>
        <attribute key="weaponType" value="shield"/>
        <attribute key="attack" value="8"/>
        <attribute key="rotateTo" value="2585"/>
        <attribute key="containerSize" value="30"/>
        <attribute key="type" value="depot"/>
        <attribute key="writeable" value="1"/>
        <attribute key="maxTextLen" value="512"/>
        <attribute key="duration" value="14400"/>
        <attribute key="healthGain" value="5"/>
        <attribute key="healthTicks" value="2000"/>
        <attribute key="manaGain" value="10"/>
        <attribute key="manaTicks" value="1000"/>
        <attribute key="showduration" value="1"/>

Edit the item to your liking :)
 
When did I say that? I just said look at it o.o To have that much rep and that many posts, you clearly have too much time on your hands o.o
 
Yea, it's the ID in client/clientid. To get the correct cid, go to the sid (serverid) of the item you want to copy.
 
Back
Top