Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
144
Scripts/Scripts-master/Addons/bluemarblefireplaceEAddon.cs
Normal file
144
Scripts/Scripts-master/Addons/bluemarblefireplaceEAddon.cs
Normal file
@@ -0,0 +1,144 @@
|
||||
/////////////////////////////////////////////////
|
||||
//
|
||||
// Automatically generated by the
|
||||
// AddonGenerator script by Arya
|
||||
//
|
||||
/////////////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class bluemarblefireplaceEAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new bluemarblefireplaceEAddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public bluemarblefireplaceEAddon()
|
||||
{
|
||||
AddonComponent ac;
|
||||
ac = new AddonComponent( 6572 );
|
||||
ac.Light = LightType.ArchedWindowEast;
|
||||
AddComponent( ac, 0, 0, 6 );
|
||||
ac = new AddonComponent( 6584 );
|
||||
ac.Hue = 1109;
|
||||
AddComponent( ac, 0, 0, 1 );
|
||||
ac = new AddonComponent( 6585 );
|
||||
ac.Hue = 1109;
|
||||
AddComponent( ac, 0, 0, 0 );
|
||||
ac = new AddonComponent( 7067 );
|
||||
AddComponent( ac, 0, 0, 2 );
|
||||
ac = new AddonComponent( 2557 );
|
||||
ac.Light = LightType.ArchedWindowEast;
|
||||
AddComponent( ac, 1, -1, 10 );
|
||||
ac = new AddonComponent( 1297 );
|
||||
AddComponent( ac, 0, -1, 0 );
|
||||
ac = new AddonComponent( 1297 );
|
||||
AddComponent( ac, 0, 0, 0 );
|
||||
ac = new AddonComponent( 1297 );
|
||||
AddComponent( ac, 0, 1, 0 );
|
||||
ac = new AddonComponent( 1297 );
|
||||
AddComponent( ac, 0, 2, 0 );
|
||||
ac = new AddonComponent( 1297 );
|
||||
AddComponent( ac, 1, -1, 0 );
|
||||
ac = new AddonComponent( 1297 );
|
||||
AddComponent( ac, 1, 0, 0 );
|
||||
ac = new AddonComponent( 1297 );
|
||||
AddComponent( ac, 1, 1, 0 );
|
||||
ac = new AddonComponent( 1297 );
|
||||
AddComponent( ac, 1, 2, 0 );
|
||||
ac = new AddonComponent( 669 );
|
||||
AddComponent( ac, 0, 2, 0 );
|
||||
ac = new AddonComponent( 697 );
|
||||
AddComponent( ac, 1, 2, 0 );
|
||||
ac = new AddonComponent( 698 );
|
||||
AddComponent( ac, 1, -2, 0 );
|
||||
ac = new AddonComponent( 699 );
|
||||
AddComponent( ac, 1, 1, 0 );
|
||||
ac = new AddonComponent( 699 );
|
||||
AddComponent( ac, 1, 0, 0 );
|
||||
ac = new AddonComponent( 699 );
|
||||
AddComponent( ac, 1, -1, 0 );
|
||||
ac = new AddonComponent( 670 );
|
||||
AddComponent( ac, 0, 1, 0 );
|
||||
ac = new AddonComponent( 671 );
|
||||
AddComponent( ac, -1, 2, 0 );
|
||||
ac = new AddonComponent( 671 );
|
||||
AddComponent( ac, -1, -1, 0 );
|
||||
ac = new AddonComponent( 671 );
|
||||
AddComponent( ac, -1, 1, 0 );
|
||||
ac = new AddonComponent( 671 );
|
||||
AddComponent( ac, -1, 0, 0 );
|
||||
ac = new AddonComponent( 1097 );
|
||||
AddComponent( ac, 0, 1, 0 );
|
||||
ac = new AddonComponent( 670 );
|
||||
AddComponent( ac, 0, -2, 0 );
|
||||
ac = new AddonComponent( 669 );
|
||||
AddComponent( ac, 0, -1, 0 );
|
||||
ac = new AddonComponent( 1098 );
|
||||
AddComponent( ac, 0, 0, 0 );
|
||||
ac = new AddonComponent( 2557 );
|
||||
ac.Light = LightType.ArchedWindowEast;
|
||||
AddComponent( ac, 1, 2, 10 );
|
||||
ac = new AddonComponent( 672 );
|
||||
AddComponent( ac, -1, -2, 0 );
|
||||
|
||||
}
|
||||
|
||||
public bluemarblefireplaceEAddon( 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 bluemarblefireplaceEAddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new bluemarblefireplaceEAddon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public bluemarblefireplaceEAddonDeed()
|
||||
{
|
||||
Name = "bluemarblefireplaceE";
|
||||
}
|
||||
|
||||
public bluemarblefireplaceEAddonDeed( 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