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

Items HELP!!

Nofus

New Member
Joined
Jul 16, 2009
Messages
415
Reaction score
1
Hey guys i'm Nofus, I've looked around a bit and i didnt rly find anything on google or on otland. How do i create items like Dwarven Armor and when you wear it , it should add 5 mag lvls, Or a ring when you wear it and it should add 15 Sword, or 10 Axe. Can someone explain me detailed how to do this and where?

An example would be verry helpfull if you could post one.
 
items.xml
If you're smart enough, you'll figure out the rest yourself.

Tip: You need to add them in movements.xml, too.
 
Here are all skill attributes, choose those you want and add them to the item you like in items.xml
Code:
<attribute key="skillFist" value="[B]?[/B]"/>
<attribute key="skillSword" value="[B]?[/B]"/>
<attribute key="skillAxe" value="[B]?[/B]"/>
<attribute key="skillClub" value="[B]?[/B]"/>
<attribute key="skillDist" value="[B]?[/B]"/>
<attribute key="skillShield" value="[B]?[/B]"/>
<attribute key="magiclevelpoints" value="[B]?[/B]"/>

Example:
Item: Batwing Hat
Attributes: Magiclevel +20, Shield +20

Items.xml
Code:
	<item id="10016" article="a" name="batwing hat">
		<attribute key="weight" value="600"/>
		<attribute key="armor" value="11"/>
		<attribute key="slotType" value="head"/>
		<attribute key="magiclevelpoints" value="20"/>
		<attribute key="skillShield" value="20"/>
	</item>

P.S
Like Cykotian said, if the items aren't added into movements.xml they will not work!
 
Back
Top