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

Problem dot. item/movements

Zonkill

Banned User
Joined
Oct 10, 2010
Messages
102
Reaction score
1
Cześć.
Edytuję item, i chcę żeby był on dostępny tylko dla Paladynów, jednak spotykam błąd na swojej drodze.. ;/
Jest ktoś w stanie pomóc?

Code:
data/movements/movements.xml:435: parser error : Opening and ending tag mismatch: movements line 2 and movevent
               </movevent>
                          ^
data/movements/movements.xml:436: parser error : Extra content at the end of the document
       <movevent type="Equip" itemid="2502" slot="head" event="function" value="onEqui
       ^
[17:26:43.961] [Warning - BaseEvents::loadFromXml] Cannot open movements.xml file.
[17:26:43.961] Line: 436, Info: Extra content at the end of the document


[17:26:43.961] > ERROR: Unable to load MoveEvents!

a to te linijki (edytuję item 2499)
Code:
	<movevent type="Equip" itemid="2499" slot="head" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="2499" slot="head" event="function" value="onDeEquipItem"/>
		<vocation id="3"/>
		<vocation id="7" showInDescription="0"/>
		</movevent>
	<movevent type="Equip" itemid="2502" slot="head" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="2502" slot="head" event="function" value="onDeEquipItem"/>
 
LUA:
<movevent type="Equip" itemid="2499" slot="head" event="function" value="onEquipItem">
		<vocation id="3"/>
		<vocation id="7" showInDescription="0"/>
		</movevent>
	<movevent type="DeEquip" itemid="2499" slot="head" event="function" value="onDeEquipItem"/>

Spróbuj tak
 
Last edited:
LUA:
	<movevent type="Equip" itemid="2499" slot="head" event="function" value="onEquipItem">
	<movevent type="DeEquip" itemid="2499" slot="head" event="function" value="onDeEquipItem"/>
		<vocation id="3"/>
		<vocation id="7" showInDescription="0"/>
		</movevent>
	<movevent type="Equip" itemid="2502" slot="head" event="function" value="onEquipItem">
	<movevent type="DeEquip" itemid="2502" slot="head" event="function" value="onDeEquipItem"/>
 
Back
Top