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

TFS 1.X+ [item]correct way to use "two-handed"

kaincer

Member
Joined
Jun 28, 2010
Messages
44
Reaction score
5
Server: 1.5 nekiro

what is the correct way to use dual wield?
IF
Code:
classicEquipmentSlots = false
classicAttackSpeed = false
Result:
you cannot dress this object there

If
Code:
classicEquipmentSlots = true
classicAttackSpeed = true
result:
both hands need to be free


Item.xml
XML:
    <item id="2377" article="a" name="two handed sword">
        <attribute key="weight" value="7000" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="30" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
weapon.xml
XML:
    <melee id="2377" level="20" unproperly="1" >
        <vocation name="Knight" />
    </melee>
 
Server: 1.5 nekiro

what is the correct way to use dual wield?
IF
Code:
classicEquipmentSlots = false
classicAttackSpeed = false
Result:


If
Code:
classicEquipmentSlots = true
classicAttackSpeed = true
result:



Item.xml
XML:
    <item id="2377" article="a" name="two handed sword">
        <attribute key="weight" value="7000" />
        <attribute key="defense" value="25" />
        <attribute key="attack" value="30" />
        <attribute key="weaponType" value="sword" />
        <attribute key="slotType" value="two-handed" />
    </item>
weapon.xml
XML:
    <melee id="2377" level="20" unproperly="1" >
        <vocation name="Knight" />
    </melee>
In the old days, you could use the weapon on either side of your hand, unlike today that there is a defined place for the weapon and another for the shield, that's what classic means.

when you activate classic, you can put the weapon in whichever hand it accepts, the difference for two-handed items is that you need to have both slots empty or put the weapon where you already have another weapon or shield, otherwise it returns this error that both hands need to be free.

if you don't want to use the classic system, you should always throw the weapon in the hand that corresponds to the weapon's grip, which if I'm not mistaken is left.

classic speed I don't think it changes this question of classic equipment at all
 
Back
Top