ATruGod submitted a new resource:

Horse Barding - Armor for Your Horse

I didn't make this and am actually unsure who did.

Armor for Your Horse. Craftable just as Dragon Barding. Also after a double check of the script the added Horse.cs also includes the Pooping Horse feature...written by somebody different (again unknown).

Updated for Publish 54. If You have no other edits You can just replace the files, otherwise winmerge or the like.

Read more about this resource...
 
Got this error

Code:
 + Misc/AOS.cs:
    CS1061: Line 1071: 'Server.Items.BaseArmor' does not contain a definition fo
r 'OnSelfRepairChanged' and no extension method 'OnSelfRepairChanged' accepting
a first argument of type 'Server.Items.BaseArmor' could be found (are you missin
g a using directive or an assembly reference?)
    CS1061: Line 1073: 'Server.Items.BaseClothing' does not contain a definition
for 'OnSelfRepairChanged' and no extension method 'OnSelfRepairChanged' accepti
ng a first argument of type 'Server.Items.BaseClothing' could be found (are you
missing a using directive or an assembly reference?)
 
Remove all this code
Code:
[CommandProperty(AccessLevel.GameMaster)]
        public int SelfRepair
        {
            get
            {
                return this[AosWeaponAttribute.SelfRepair];
            }
            set
            {
                if (value != this[AosWeaponAttribute.SelfRepair])
                {
                    this[AosWeaponAttribute.SelfRepair] = value;

                    if (Owner is BaseArmor)
                        ((BaseArmor)Owner).OnSelfRepairChanged();
                    else if (Owner is BaseClothing)
                        ((BaseClothing)Owner).OnSelfRepairChanged();
                }
            }
        }

Uncomment this code
Code:
[CommandProperty(AccessLevel.GameMaster)]
        public int SelfRepair
        {
            get
            {
                return this[AosWeaponAttribute.SelfRepair];
            }
            set
            {
                this[AosWeaponAttribute.SelfRepair] = value;
            }
        }
 
I see this horse poops but could not tell when or what makes him do so.
Looks like its when he is attacked or something?
 
Back