• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

items.xml

lazarus321

Member
Joined
May 8, 2017
Messages
222
Reaction score
23
Hi,
I would like to know how to put more than one description for the item. It would be information itself. I do not know if you can break the line in this "description" key or add another in the source

<item id="26397" article="a" name="sword">
<attribute key="weight" value="30" />
<attribute key="attack" value="4" />
<attribute key="defense" value="5" />
<attribute key="weaponType" value="sword" />
<attribute key="range" value="1" />
<attribute key="skillSword" value="1" />
<attribute key="elementdeath" value="2" />
<attribute key="description" value="description 1." />
<attribute key="description" value="description 2." />
<attribute key="description" value="description 3." />
<attribute key="description" value="description 4." />

<attribute key="showattributes" value="1" />
</item>
 
use \n (newline character)

XML:
value="description 1.\ndescription 2.\ndescription 3.\ndescription 4."
 

Similar threads

Back
Top