Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
133
Scripts/Scripts-master/Addons/KitchenCabinetsCAddon.cs
Normal file
133
Scripts/Scripts-master/Addons/KitchenCabinetsCAddon.cs
Normal file
@@ -0,0 +1,133 @@
|
||||
/////////////////////////////////////////////////
|
||||
//
|
||||
// Automatically generated by the
|
||||
// AddonGenerator script by Arya
|
||||
//
|
||||
/////////////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class KitchenCabinetsCAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new KitchenCabinetsCAddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public KitchenCabinetsCAddon()
|
||||
{
|
||||
AddonComponent ac;
|
||||
ac = new AddonComponent( 10331 );
|
||||
ac.Hue = 2510;
|
||||
AddComponent( ac, -2, 0, 13 );
|
||||
ac = new AddonComponent( 10331 );
|
||||
ac.Hue = 2510;
|
||||
AddComponent( ac, -1, 0, 13 );
|
||||
ac = new AddonComponent( 1801 );
|
||||
ac.Hue = 1153;
|
||||
AddComponent( ac, -1, 0, 2 );
|
||||
ac = new AddonComponent( 4001 );
|
||||
AddComponent( ac, -1, 1, 16 );
|
||||
ac = new AddonComponent( 1801 );
|
||||
ac.Hue = 1153;
|
||||
AddComponent( ac, -2, 0, 2 );
|
||||
ac = new AddonComponent( 1801 );
|
||||
ac.Hue = 1;
|
||||
AddComponent( ac, -1, 0, 9 );
|
||||
ac = new AddonComponent( 11525 );
|
||||
ac.Hue = 2510;
|
||||
AddComponent( ac, -3, 0, 0 );
|
||||
ac = new AddonComponent( 10331 );
|
||||
ac.Hue = 2510;
|
||||
AddComponent( ac, 2, 0, 13 );
|
||||
ac = new AddonComponent( 2451 );
|
||||
AddComponent( ac, 2, 0, 6 );
|
||||
ac = new AddonComponent( 11525 );
|
||||
ac.Hue = 2510;
|
||||
AddComponent( ac, 4, 0, 0 );
|
||||
ac = new AddonComponent( 1801 );
|
||||
ac.Hue = 1153;
|
||||
AddComponent( ac, 2, 0, 2 );
|
||||
ac = new AddonComponent( 6867 );
|
||||
AddComponent( ac, 0, 0, 7 );
|
||||
ac = new AddonComponent( 10331 );
|
||||
ac.Hue = 2510;
|
||||
AddComponent( ac, 3, 0, 13 );
|
||||
ac = new AddonComponent( 1801 );
|
||||
ac.Hue = 1153;
|
||||
AddComponent( ac, 1, 0, 2 );
|
||||
ac = new AddonComponent( 3871 );
|
||||
AddComponent( ac, 0, 1, 16 );
|
||||
ac = new AddonComponent( 3871 );
|
||||
AddComponent( ac, 0, 1, 18 );
|
||||
ac = new AddonComponent( 1801 );
|
||||
ac.Hue = 1153;
|
||||
AddComponent( ac, 0, 0, 2 );
|
||||
ac = new AddonComponent( 1801 );
|
||||
ac.Hue = 1153;
|
||||
AddComponent( ac, 3, 0, 2 );
|
||||
ac = new AddonComponent( 2519 );
|
||||
AddComponent( ac, 0, 0, 6 );
|
||||
ac = new AddonComponent( 11753 );
|
||||
ac.Hue = 2510;
|
||||
AddComponent( ac, 1, 0, 15 );
|
||||
|
||||
}
|
||||
|
||||
public KitchenCabinetsCAddon( 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 KitchenCabinetsCAddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new KitchenCabinetsCAddon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public KitchenCabinetsCAddonDeed()
|
||||
{
|
||||
Name = "KitchenCabinetsC";
|
||||
}
|
||||
|
||||
public KitchenCabinetsCAddonDeed( 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user