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

New Rings. Doesn't add, just remove skills.

DukeeH

Active Member
Joined
Dec 6, 2010
Messages
550
Solutions
3
Reaction score
39
Items.
Code:
	<item id="102" article="a" name="Skillin' Ring">
		<attribute key="weight" value="80" />
		<attribute key="slotType" value="ring" />
		<attribute key="transformEquipTo" value="105" />
	</item>
Code:
	<item id="105" article="a" name="Skillin' Ring">
		<attribute key="weight" value="80" />
		<attribute key="slotType" value="ring" />
		<attribute key="skillSword" value="15" />
		<attribute key="skillAxe" value="15" />
		<attribute key="skillClub" value="15" />
		<attribute key="skillDist" value="15" />
		<attribute key="transformDeEquipTo" value="102" />
	</item>

Movements.
Code:
	<movevent type="Equip" itemid="102" slot="ring" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="105" slot="ring" event="function" value="onDeEquipItem"/>


--
Ingame. it doesn't add the skills when i equip it, but when i unequip it remove 15 skills.
:o

Help me;
 
you need 1 more equip movement...

<movevent type="Equip" itemid="2207" slot="ring" event="function" value="onEquipItem"/>
<movevent type="Equip" itemid="2210" slot="ring" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="2210" slot="ring" event="function" value="onDeEquipItem"/>

like that.
 
Back
Top