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

Wands / Rods Giving Stats Bonuses.

Tachi

New Member
Joined
Aug 4, 2007
Messages
376
Reaction score
2
Location
USA, Missouri
Iv been Trying to get the wands to give extra stats, like magic level or shielding.. But cannot seem to get it to work.. heres what i have tryed
Code:
			<item id="18411" article="a" name="muck rod">
				<attribute key="description" value="A true staff of old, spitting slimy orbs." />
				<attribute key="weight" value="3700" />
				<attribute key="weaponType" value="rod" />
				<attribute key="shootType" value="earth" />
				<attribute key="magiclevelpoints" value="1" />
                                <attribute key="skillShield" value="2" />
				<attribute key="range" value="4" />
			</item>
But it just wont work, Does that mean it wont work at all.. i mean the magiclevelpoints works on other items and so does the shield.. But not with wands / rods.. what can i try and do?

Example of working helmet
Code:
       <item id="2323" article="a" name="hat of the mad">
		<attribute key="description" value="You have a vague feeling that it looks somewhat silly." />
		<attribute key="weight" value="700" />
		<attribute key="armor" value="3" />
		<attribute key="magiclevelpoints" value="1" />
		<attribute key="slotType" value="head" />
	</item>
 
maybe something with the souces?
i mean its not normal that a wand/rod has those attributes...
maybe look how the "Sword of c~" looks like or "Shiny Blade" Maybe they got a diffrent value from this one
 
Back
Top Bottom