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

Help With Distance Axe Club +2 and Weapons

Tontomalo

New Member
Joined
Jun 24, 2009
Messages
21
Reaction score
1
Mi problem is i put a armor with axe,club,sword +2 but it don't works? what is the problem. and, the Distance axe club and sword weapons don't attack like that it attack like fist fighting HELP ?
 
You have to add the corresponding entries in data/movements/movements.xml:

example:
Code:
	<movevent type="Equip" itemid="9956" slot="pickupable" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="9956" slot="pickupable" event="function" value="onDeEquipItem"/>
 
I try to copy of the yalahari mask but it dont work

Yalahari mask SCRIPT (It works only in the mask)

<movevent event="Equip" itemid="9778" slot="head" level="80" function="onEquipItem">
<vocation name="Sorcerer"/>
<vocation name="Master Sorcerer" showInDescription="0"/>
<vocation name="Druid"/>
<vocation name="Elder Druid" showInDescription="0"/>
</movevent>
<movevent event="DeEquip" itemid="9778" slot="head" function="onDeEquipItem"/>
 
yes but look y put the scripts

Im doing a Vip Armor (dont work)

in items i have this:

item id="2503" name="Vip armor" article="a">
<attribute key="magicpoints" value="2" />
<attribute key="skillDist" value="3" />
<attribute key="skillAxe" value="3" />
<attribute key="skillSword" value="3" />
<attribute key="skillClub" value="3" />
<attribute key="weight" value="13000" />
<attribute key="armor" value="20" />
<attribute key="slotType" value="body" />
<attribute key="absorbPercentPhysical" value="5" />

and in movements i put this

<movevent event="Equip" itemid="2503" slot="armor" level="8" function="onEquipItem">
<movevent event="DeEquip" itemid="2503" slot="armor" function="onDeEquipItem"/>
 
Search your movements, you may already have that one before (so you'd have it twice), in which case you need to delete it.

Also, are there any errors in the console?
 
Back
Top