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

Look Runes

xLosT

Member
Joined
Jan 11, 2010
Messages
1,021
Reaction score
13
Location
Brasil, Rio Grande do Sul
09:53 You see a sudden death rune.
It weighs 1.20 oz.

i need add description
exemple
09:54 You see a sudden death rune("adori gran mort").
It can only be used with level 10 and magic level 8 or higher.
It weighs 0.70 oz.
 
\data\items

<item id="2268" article="a" name="sudden death rune">
<attribute key="runeSpellName" value="adori gran mort" />
<attribute key="type" value="rune" />
<attribute key="weight" value="70" />
</item>
 
You can add descriptions for items by adding this to their item declarations in items.xml:
Code:
<attribute key="description" value="[COLOR="#FF0000"]Your text here[/COLOR]."/>

But I'm sure runes should do that automatically, if they don't, here:

Code:
<item id="2268" article="a" name="sudden death rune">
<attribute key="runeSpellName" value="adori gran mort" />
<attribute key="type" value="rune" />
<attribute key="description" value="It can only be used with level 10 and magic level 8 or higher."/>
<attribute key="weight" value="70" />
</item>
 
Back
Top