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

tengo un problema con los items

Aako

New Member
Joined
May 5, 2011
Messages
32
Reaction score
1
hola ! tengo un problema con los atributos de los items un ejemplo:

PHP:
	<item id="12630" article="a" name="cobra crown">
		<attribute key="weight" value="850"/>
		<attribute key="magiclevelpoints" value="2"/>
		<attribute key="armor" value="3"/>
		<attribute key="absorbPercentFire" value="-5"/>
		<attribute key="absorbPercentEarth" value="5"/>
		<attribute key="slotType" value="head"/>
	</item>

cuando me pongo este item en el juego, no me da nada de magic level... alguien me puede ayudar?
 
En Movements.xml

Asi Puede Usarse por Todos
Code:
<movevent type="Equip" itemid="12630" slot="head" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="12630" slot="head" event="function" value="onDeEquipItem"/>



Asi Se Puede Usar Solo Por Magos
Code:
<movevent type="Equip" itemid="12630" slot="head" level="1" event="function" value="onEquipItem">
		<vocation id="1"/>
		<vocation id="5" showInDescription="0"/>
		<vocation id="2"/>
		<vocation id="6" showInDescription="0"/>
	</movevent>
	<movevent type="DeEquip" itemid="12630" slot="head" event="function" value="onDeEquipItem"/>

Sencillito Entiendes?
 
si, pero a la gente que tiene el mismo problema le puede server (en lo personal he encontrado soluciones de esta manera)
 
Thanks4.jpg

Justo lo que necesitaba GRACIAS!
 
Back
Top