Hi folks.
I heard, that it is easy to implement. I need to switch off Bushido and other expansion stuff. I want to have UO Renaissance version. Old school. I heard, that it is only one row in code, but i can't find it. Any help welcomed. Thanks in advance!
 
Busido with Ninjutsu are work not only like spells. You also will need to disable abilities.
You can do it by override Cast() and Validate(Mobile from) methods. For example:
SamuraiSpell.cs
C#:
        public override bool Cast()
        {
            Caster.SendMessage("This spell is disabled!");
            return false;
        }
SamuraiMove.cs
C#:
        public override bool Validate(Mobile from)
        {
            from.SendMessage("This ability is disabled!");
            return false;
        }
 
Back