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

request Increase Magic Damage

aioriusox

New Member
Joined
Apr 8, 2009
Messages
70
Reaction score
0
I want a script to put into a helmet, which increases magic damage, it is possible?
I tried that attribute key = "increaseMagicPercet", but my server is 0.3.4 (Cryng Dansom) and he ignores this attribute.
 
after you add the attribute, you need to go to

data/movements/movements.xml

and edit it and add this

PHP:
<movevent type="Equip" itemid="XXXX" slot="helmet" level="XXX" event="function" value="onEquipItem">
		<vocation id="1"/> --- your vocations
		<vocation id="2"/> 
		<vocation id="5"/>
		<vocation id="6"/>
	</movevent>
<movevent type="DeEquip" itemid="XXXX" slot="helmet" event="function" value="onDeEquipItem"/>

and for any other items you want to add attributes to, you can just change the slot, vocation and ID... dont forget to add the attribute in items.xml...

hope i helped :D
 
Back
Top