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/Addons2/OfficeWEFEAddon.cs
Normal file
133
Scripts/Scripts-master/Addons2/OfficeWEFEAddon.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 OfficeWEFEAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new OfficeWEFEAddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public OfficeWEFEAddon()
|
||||
{
|
||||
AddonComponent ac;
|
||||
ac = new AddonComponent( 6430 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 2, 3, 0 );
|
||||
ac = new AddonComponent( 2925 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 2, 2, 4 );
|
||||
ac = new AddonComponent( 2925 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 2, 1, 4 );
|
||||
ac = new AddonComponent( 2925 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 2, 0, 4 );
|
||||
ac = new AddonComponent( 2475 );
|
||||
AddComponent( ac, 2, -1, 0 );
|
||||
ac = new AddonComponent( 2475 );
|
||||
AddComponent( ac, 2, -1, 5 );
|
||||
ac = new AddonComponent( 2475 );
|
||||
AddComponent( ac, 2, -1, 10 );
|
||||
ac = new AddonComponent( 11618 );
|
||||
AddComponent( ac, 2, 2, 10 );
|
||||
ac = new AddonComponent( 7187 );
|
||||
AddComponent( ac, 2, 1, 10 );
|
||||
ac = new AddonComponent( 4633 );
|
||||
AddComponent( ac, 0, 0, 0 );
|
||||
ac = new AddonComponent( 2713 );
|
||||
AddComponent( ac, -2, -1, 0 );
|
||||
ac = new AddonComponent( 2713 );
|
||||
AddComponent( ac, -2, 0, 0 );
|
||||
ac = new AddonComponent( 2713 );
|
||||
AddComponent( ac, -2, 1, 0 );
|
||||
ac = new AddonComponent( 10650 );
|
||||
AddComponent( ac, 0, -2, 0 );
|
||||
ac = new AddonComponent( 10650 );
|
||||
AddComponent( ac, 1, -2, 0 );
|
||||
ac = new AddonComponent( 10650 );
|
||||
AddComponent( ac, -1, -2, 0 );
|
||||
ac = new AddonComponent( 6419 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 3, 3, 0 );
|
||||
ac = new AddonComponent( 6428 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 3, 2, 0 );
|
||||
ac = new AddonComponent( 6428 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 3, 0, 0 );
|
||||
ac = new AddonComponent( 6428 );
|
||||
ac.Hue = 2642;
|
||||
AddComponent( ac, 3, 1, 0 );
|
||||
ac = new AddonComponent( 4553 );
|
||||
AddComponent( ac, 3, -1, 0 );
|
||||
ac = new AddonComponent( 8793 );
|
||||
AddComponent( ac, 3, 0, 10 );
|
||||
ac = new AddonComponent( 7712 );
|
||||
AddComponent( ac, 3, 3, 10 );
|
||||
|
||||
}
|
||||
|
||||
public OfficeWEFEAddon( 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 OfficeWEFEAddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new OfficeWEFEAddon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public OfficeWEFEAddonDeed()
|
||||
{
|
||||
Name = "OfficeWEFE";
|
||||
}
|
||||
|
||||
public OfficeWEFEAddonDeed( 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