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

Attributes items Doesn't work

Acordion

Member
Joined
Mar 26, 2010
Messages
150
Reaction score
6
Location
Mèxico
How says the thread :x

Code:
        <attribute key="skillShield" value="x" />
        <attribute key="skillSword" value="x" />
        <attribute key="skillDist" value="x" />
        <attribute key="skillClub" value="x" />
Etc...

I do not have errors in console but doesn't work :S
Rep++
 
Code:
        <attribute key="skillShield" value="x"/>
        <attribute key="skillSword" value="x"/>
        <attribute key="skillDist" value="x"/>
        <attribute key="skillClub" value="x"/>


Should Work Now, you just erase the extra spaces at the end of the script.
 
just a line that express this item
Code:
	<movevent type="Equip" itemid="xxxx" slot="xxxx" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="xxxx" slot="xxx" event="function" value="onDeEquipItem"/>
in item id in both line right the item id and in the slot right its slot like if armor --> right "armor" ring --> "ring"
 
Back
Top