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

Solved Weapon Question

Big Gunz

Active Member
Joined
Nov 17, 2011
Messages
1,064
Reaction score
32
Location
United States
where do I change the weapons Level?

for example

Code:
You see a magic sword (Atk:49, Def:35 +3). It can only be wielded properly by players of level 80 or higher.


the magic sword if for level 80 I wanna change it to level 50 I know that to change armos,legs etc.. levels is in movements.xml

thanks
 
You need to add it to weapons.xml

XML:
	<melee id="2392" level="30" unproperly="1" function="default"/>
	<melee id="2407" level="30" unproperly="1" function="default"/>
	<melee id="2438" level="30" unproperly="1" function="default"/>
	<melee id="7407" level="30" unproperly="1" function="default">
		<vocation name="Elite Knight"/>
	</melee>

Just add another line with the sword id.
 
Back
Top