Would I change this...

08/30/2019 00:52 denominator#1
Would I change this so that I can equip hossu whilst using a non epic backsword?

Code:
public bool EpicTaoist()
        {
            if (EntityFlag == Game.EntityFlag.Player)
            {
                var weapons = Owner.Weapons;
                if (weapons.Item1 != null && weapons.Item2 != null)
                    if (weapons.Item1.ID / 1000 == 620 && weapons.Item2.ID / 1000 == 619)//Backsword,Hossu
                        return true;

            }
            return false;
        }
As it stands I can equip a hossu as a main weapon >.< It appears I am unable to equip a backsword and hossu at the same time it's either equip a backsword or equip a hossu
08/30/2019 03:12 Spirited#2
What's a hossu?
08/30/2019 18:19 denominator#3
It's an item exclusively for taoist, basically like a shield for warrior except it doesn't give defence

Code:
public bool EpicTaoist()
        {
            if (EntityFlag == Game.EntityFlag.Player)
            {
                var weapons = Owner.Weapons;
                if (weapons.Item1 != null && weapons.Item2 != null)
                    if (weapons.Item1.ID / 1000 == 421 || weapons.Item1.ID / 1000 == 620 && weapons.Item2.ID / 1000 == 619)//Backsword,Hossu
                        return true;

            }
            return false;
        }
I'll try this lol, nope didn't work fml