I think it's something to do with the code you just posted, to equip the Katanas, because if i have a blade in my right hand.. and a katana in my left, i can move around and it works perfectly...
but i cannot move when the katana is in my right hand, and i cannot equip two katanas at once...
EDIT:
WOW! I just stumbled across something really cool!
I was playing with the code that alex just posted up here...
(I added in the red text)
Code:
else if (ItemParts[0] == "601339")
{
if (ItemsInInventory < 40)
{
if (Equips[5] == null)
{
[COLOR="Red"]AddItem(Item, 5, (uint)ItemUID);
World.UpdateSpawn(this);[/COLOR]
if (Equips[4] == null)
{
AddItem(Item, 4, (uint)ItemUID);
World.UpdateSpawn(this);
RemoveItem(ItemUID);
}
else
{
RemoveItem(ItemUID);
if (Equips[4] != null)
UnEquip(4);
AddItem(Item, 4, (uint)ItemUID);
World.UpdateSpawn(this);
}
}
else
{
RemoveItem(ItemUID);
if (Equips[5] != null)
UnEquip(5);
AddItem(Item, 5, (uint)ItemUID);
World.UpdateSpawn(this);
}
}
Now if I equip one katana, it will equip two :P
Like so:
[Only registered and activated users can see links. Click Here To Register...]