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

Movments

imback1

Unknown member
Joined
Jul 11, 2013
Messages
785
Solutions
1
Reaction score
46
Hello

01/12/2014 00:29:44] [Warning - MoveEvent::configureMoveEvent] Unknown slot type "sword"
[01/12/2014 00:29:44] [Warning - MoveEvent::configureMoveEvent] Unknown slot type "sword"
[01/12/2014 00:29:44] [Warning - MoveEvent::configureMoveEvent] Unknown slot type "club"
[01/12/2014 00:29:44] [Warning - MoveEvent::configureMoveEvent] Unknown slot type "club"
[01/12/2014 00:29:44] [Warning - MoveEvent::configureMoveEvent] Unknown slot type "axe"
[01/12/2014 00:29:44] [Warning - MoveEvent::configureMoveEvent] Unknown slot type "axe"

what is solt of weapons on movements? i need to make it on movements to give me skills

verison 0.3.6
 
yea btw i need to add level for it so how?
i mean like i need sword for knight and need to make level of it :D
 
Check your last editing in Items.xml, you gonna found that you add that :

<attribute key="slotType" value="sword/axe/club"/> ->>> worng

<attribute key="weaponType" value="sword/axe/club" /> ->>> right
 
Check your last editing in Items.xml, you gonna found that you add that :

<attribute key="slotType" value="sword/axe/club"/> ->>> worng

<attribute key="weaponType" value="sword/axe/club" /> ->>> right
broo im not talking about adding skills now,i'm talking about make a level for them on movements and i wants to know what is slottype for it cuz there isnt sword/axe/club slot on it like ring/head/etc
 
in movements.xml
for example :-


Code:
    <movevent type="Equip" itemid="11349" slot="legs" level="100" event="function" value="onEquipItem">
        <vocation id="1"/>
        <vocation id="2"/>
        <vocation id="5"/>
        <vocation id="6"/>
    </movevent>
    <movevent type="DeEquip" itemid="11349" slot="legs" event="function" value="onDeEquipItem"/>
 
Back
Top