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

How to make AOL work

Abbeh

New Member
Joined
Nov 22, 2012
Messages
98
Reaction score
1
Location
Sweden, Gothenburg
Good afternoon,


I just noticed when searching for bugs on my server that the Amulet of Loss didn't work as it should.

Code:
	<item id="2173" article="an" name="amulet of loss">
		<attribute key="weight" value="420" />
		<attribute key="slotType" value="necklace" />
		<attribute key="charges" value="1" />
		<attribute key="preventDrop" value="1" />
	</item>

I don't see where the issue lies, do I need a script that syncronizes with the items.xml?
 
Have you got this in movements.xml?

XML:
<movevent type="Equip" itemid="2173" slot="necklace" event="function" value="onEquipItem"/>    
<movevent type="DeEquip" itemid="2173" slot="necklace" event="function" value="onDeEquipItem"/>
 
Code:
	<movevent type="Equip" itemid="2173" slot="necklace" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="2173" slot="necklace" event="function" value="onDeEquipItem"/>

I have that in there from the beginning, maybe there are something that's not right in there..
 
Back
Top