ServUO Version
Publish 58
Ultima Expansion
Time Of Legends
How can I make the keys to the house and to the ship be blessed by default when they appear in the player's backpack?
 
Need to add to the constructor next property:
LootType = LootType.Blessed;
Example:
C#:
        [Constructable]
        public GargishBracelet()
            : base(0x4211)
        {
            LootType = LootType.Blessed;
        }
 
Back