///////////////////////////////////////////////// // // Automatically generated by the // AddonGenerator script by Arya // ///////////////////////////////////////////////// using System; using Server; using Server.Items; namespace Server.Items { public class BigScreenTVFSAddon : BaseAddon { public override BaseAddonDeed Deed { get { return new BigScreenTVFSAddonDeed(); } } [ Constructable ] public BigScreenTVFSAddon() { AddonComponent ac; ac = new AddonComponent( 3878 ); ac.Hue = 2301; AddComponent( ac, -1, 1, 17 ); ac = new AddonComponent( 3878 ); ac.Hue = 2301; AddComponent( ac, -1, 1, 13 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, -1, 0, 15 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, -1, 0, 10 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, -1, 0, 5 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 0, 0, 10 ); ac = new AddonComponent( 3878 ); ac.Hue = 2301; AddComponent( ac, -1, 1, 15 ); ac = new AddonComponent( 1 ); ac.Hue = 2301; AddComponent( ac, 0, 1, 0 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 1, 0, 10 ); ac = new AddonComponent( 3859 ); ac.Hue = 2301; AddComponent( ac, 0, 1, 9 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 2, 0, 15 ); ac = new AddonComponent( 3744 ); ac.Hue = 2301; AddComponent( ac, 1, 1, 0 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, -1, 0, 0 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 0, 0, 15 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 0, 0, 5 ); ac = new AddonComponent( 3878 ); ac.Hue = 2301; AddComponent( ac, 0, 1, 24 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 2, 0, 5 ); ac = new AddonComponent( 3878 ); ac.Hue = 2301; AddComponent( ac, -1, 1, 11 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 1, 0, 0 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 0, 0, 0 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 2, 0, 0 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 1, 0, 15 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 2, 0, 10 ); ac = new AddonComponent( 1801 ); ac.Hue = 2134; AddComponent( ac, 1, 0, 5 ); } public BigScreenTVFSAddon( Serial serial ) : base( serial ) { } public override void Serialize( GenericWriter writer ) { base.Serialize( writer ); writer.Write( 0 ); // Version } public override void Deserialize( GenericReader reader ) { base.Deserialize( reader ); int version = reader.ReadInt(); } } public class BigScreenTVFSAddonDeed : BaseAddonDeed { public override BaseAddon Addon { get { return new BigScreenTVFSAddon(); } } [Constructable] public BigScreenTVFSAddonDeed() { Name = "BigScreenTVFS"; } public BigScreenTVFSAddonDeed( Serial serial ) : base( serial ) { } public override void Serialize( GenericWriter writer ) { base.Serialize( writer ); writer.Write( 0 ); // Version } public override void Deserialize( GenericReader reader ) { base.Deserialize( reader ); int version = reader.ReadInt(); } } }