Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
150
Scripts/Scripts-master/Addons2/OfficeWEAddon.cs
Normal file
150
Scripts/Scripts-master/Addons2/OfficeWEAddon.cs
Normal file
@@ -0,0 +1,150 @@
|
||||
/////////////////////////////////////////////////
|
||||
//
|
||||
// Automatically generated by the
|
||||
// AddonGenerator script by Arya
|
||||
//
|
||||
/////////////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class OfficeWEAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new OfficeWEAddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public OfficeWEAddon()
|
||||
{
|
||||
AddonComponent ac;
|
||||
ac = new AddonComponent( 6418 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, -1, 3, 0 );
|
||||
ac = new AddonComponent( 6428 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, -1, 2, 0 );
|
||||
ac = new AddonComponent( 6428 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, -1, 1, 0 );
|
||||
ac = new AddonComponent( 6428 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, -1, 0, 0 );
|
||||
ac = new AddonComponent( 6430 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 0, 3, 0 );
|
||||
ac = new AddonComponent( 2475 );
|
||||
ac.Hue = 980;
|
||||
AddComponent( ac, 0, -1, 0 );
|
||||
ac = new AddonComponent( 2475 );
|
||||
ac.Hue = 980;
|
||||
AddComponent( ac, 0, -1, 10 );
|
||||
ac = new AddonComponent( 2475 );
|
||||
ac.Hue = 980;
|
||||
AddComponent( ac, 0, -1, 5 );
|
||||
ac = new AddonComponent( 2925 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 0, 2, 6 );
|
||||
ac = new AddonComponent( 2925 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 0, 1, 6 );
|
||||
ac = new AddonComponent( 2925 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 0, 0, 6 );
|
||||
ac = new AddonComponent( 4635 );
|
||||
ac.Hue = 980;
|
||||
AddComponent( ac, 1, 1, 0 );
|
||||
ac = new AddonComponent( 4553 );
|
||||
AddComponent( ac, -2, -2, 0 );
|
||||
ac = new AddonComponent( 8793 );
|
||||
AddComponent( ac, -1, 0, 8 );
|
||||
ac = new AddonComponent( 7712 );
|
||||
AddComponent( ac, -1, 3, 8 );
|
||||
ac = new AddonComponent( 7187 );
|
||||
ac.Hue = 2113;
|
||||
AddComponent( ac, 0, 2, 12 );
|
||||
ac = new AddonComponent( 5356 );
|
||||
ac.Hue = 1828;
|
||||
AddComponent( ac, 0, -1, 15 );
|
||||
ac = new AddonComponent( 8901 );
|
||||
ac.Hue = 1622;
|
||||
AddComponent( ac, 0, 3, 8 );
|
||||
ac = new AddonComponent( 11618 );
|
||||
AddComponent( ac, 0, 0, 12 );
|
||||
ac = new AddonComponent( 1 );
|
||||
AddComponent( ac, 3, 1, 0 );
|
||||
ac = new AddonComponent( 12423 );
|
||||
AddComponent( ac, 3, 1, 0 );
|
||||
ac = new AddonComponent( 12422 );
|
||||
AddComponent( ac, 3, 2, 0 );
|
||||
ac = new AddonComponent( 1 );
|
||||
AddComponent( ac, 3, 0, 0 );
|
||||
ac = new AddonComponent( 12423 );
|
||||
AddComponent( ac, 3, 0, 0 );
|
||||
ac = new AddonComponent( 12422 );
|
||||
AddComponent( ac, 3, 1, 0 );
|
||||
ac = new AddonComponent( 2717 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 1, -2, 0 );
|
||||
ac = new AddonComponent( 2717 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 2, -2, 0 );
|
||||
|
||||
}
|
||||
|
||||
public OfficeWEAddon( 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 OfficeWEAddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new OfficeWEAddon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public OfficeWEAddonDeed()
|
||||
{
|
||||
Name = "OfficeWE";
|
||||
}
|
||||
|
||||
public OfficeWEAddonDeed( 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