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

[8.6] How to set level for item?

reegedit

New Member
Joined
Aug 10, 2012
Messages
4
Reaction score
0
Hi!

How to set level for item? In items.xml is not line for this. (Sorry about my english, but I'm from Poland)
 
Hi,
you can do this in data -> movements -> movements.xml
Then you search for the item ID you want, eg: Firewalker Boots has ID 9932
Then search it up in movements and it should be like this
Code:
	<movevent type="Equip" itemid="9932" slot="feet" [COLOR="#00FFFF"]level="130"[/COLOR] event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="9932" slot="feet" event="function" value="onDeEquipItem"/>
	</movevent>

Then you just change the level to whatever you want!
 
Example
Code:
	<movevent type="Equip" itemid="9932" slot="feet" level="130" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="9932" slot="feet" event="function" value="onDeEquipItem"/>
FireWalker level 130, you need weapons? or armor?
Is for Weapon, sword, axe, etc? data/weapons - weapons.xml
search or add ID your item and changed level ="" ;)
 
Last edited:
no lol, things such as weapons & armor is located in the items.xml itself.
Code:
    <item id="9932" article="a" name="firewalker boots">
        <attribute key="description" value="Wearing these boots reduces the damage gotten from fiery ground." />
        <attribute key="weight" value="950" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="feet" />
        <attribute key="absorbPercentFire" value="40" />
        <attribute key="decayTo" value="10022" />
        <attribute key="transformDeEquipTo" value="9933" />
        <attribute key="duration" value="3600" />
        <attribute key="showduration" value="1" />

The only thing movements possess for such items is level req and taking them on / off so it works properly :)
or maybe something else if it's a specific script.
 
@up
He say EXAMPLE not need edit FireWalker..
For edit firewalker only in movements level ="" , easy for changed other is in weapons.xml
 
Back
Top