Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
162
Scripts/Scripts-master/Addons/Hall2011PondAddon.cs
Normal file
162
Scripts/Scripts-master/Addons/Hall2011PondAddon.cs
Normal file
@@ -0,0 +1,162 @@
|
||||
/////////////////////////////////////////////////
|
||||
//
|
||||
// Automatically generated by the
|
||||
// AddonGenerator script by Arya
|
||||
//
|
||||
/////////////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class Hall2011PondAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new Hall2011PondAddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public Hall2011PondAddon()
|
||||
{
|
||||
AddonComponent ac;
|
||||
ac = new AddonComponent( 221 );
|
||||
ac.Hue = 2694;
|
||||
AddComponent( ac, -1, 0, 0 );
|
||||
ac = new AddonComponent( 221 );
|
||||
ac.Hue = 2694;
|
||||
AddComponent( ac, -1, 1, 0 );
|
||||
ac = new AddonComponent( 221 );
|
||||
AddComponent( ac, -1, 2, 0 );
|
||||
ac = new AddonComponent( 221 );
|
||||
AddComponent( ac, -1, 0, 3 );
|
||||
ac = new AddonComponent( 1822 );
|
||||
AddComponent( ac, 0, 0, 0 );
|
||||
ac = new AddonComponent( 1823 );
|
||||
AddComponent( ac, 0, 1, 0 );
|
||||
ac = new AddonComponent( 221 );
|
||||
AddComponent( ac, -1, 0, 6 );
|
||||
ac = new AddonComponent( 221 );
|
||||
AddComponent( ac, -1, 1, 3 );
|
||||
ac = new AddonComponent( 222 );
|
||||
ac.Hue = 2694;
|
||||
AddComponent( ac, 0, -1, 0 );
|
||||
ac = new AddonComponent( 223 );
|
||||
AddComponent( ac, -1, -1, 6 );
|
||||
ac = new AddonComponent( 227 );
|
||||
AddComponent( ac, -1, 1, 6 );
|
||||
ac = new AddonComponent( 227 );
|
||||
AddComponent( ac, -1, 2, 3 );
|
||||
ac = new AddonComponent( 222 );
|
||||
AddComponent( ac, 0, 2, 0 );
|
||||
ac = new AddonComponent( 222 );
|
||||
AddComponent( ac, 0, -1, 3 );
|
||||
ac = new AddonComponent( 222 );
|
||||
AddComponent( ac, 1, -1, 0 );
|
||||
ac = new AddonComponent( 213 );
|
||||
AddComponent( ac, 1, -1, 3 );
|
||||
ac = new AddonComponent( 221 );
|
||||
AddComponent( ac, 1, 0, 0 );
|
||||
ac = new AddonComponent( 221 );
|
||||
AddComponent( ac, 1, 1, 0 );
|
||||
ac = new AddonComponent( 220 );
|
||||
AddComponent( ac, 1, 2, 0 );
|
||||
ac = new AddonComponent( 222 );
|
||||
AddComponent( ac, 0, -1, 6 );
|
||||
ac = new AddonComponent( 4552 );
|
||||
ac.Hue = 2694;
|
||||
AddComponent( ac, 2, 0, 2 );
|
||||
ac = new AddonComponent( 2860 );
|
||||
ac.Hue = 1106;
|
||||
AddComponent( ac, 2, 2, 0 );
|
||||
ac = new AddonComponent( 2860 );
|
||||
ac.Hue = 1106;
|
||||
AddComponent( ac, 2, 1, 0 );
|
||||
ac = new AddonComponent( 3204 );
|
||||
ac.Hue = 2694;
|
||||
AddComponent( ac, 0, 0, 9 );
|
||||
ac = new AddonComponent( 13597 );
|
||||
AddComponent( ac, 0, 2, 0 );
|
||||
ac = new AddonComponent( 13422 );
|
||||
AddComponent( ac, 0, 0, 5 );
|
||||
ac = new AddonComponent( 3219 );
|
||||
ac.Hue = 2694;
|
||||
AddComponent( ac, 1, 0, 5 );
|
||||
ac = new AddonComponent( 7952 );
|
||||
ac.Hue = 2694;
|
||||
AddComponent( ac, 1, 0, 0 );
|
||||
ac = new AddonComponent( 3248 );
|
||||
ac.Hue = 2694;
|
||||
AddComponent( ac, 1, 1, 1 );
|
||||
ac = new AddonComponent( 13579 );
|
||||
AddComponent( ac, 0, 1, 1 );
|
||||
ac = new AddonComponent( 3336 );
|
||||
ac.Hue = 2694;
|
||||
AddComponent( ac, 0, 1, 8 );
|
||||
ac = new AddonComponent( 7952 );
|
||||
ac.Hue = 2694;
|
||||
AddComponent( ac, 1, 1, 0 );
|
||||
ac = new AddonComponent( 7952 );
|
||||
ac.Hue = 2694;
|
||||
AddComponent( ac, 1, 2, 0 );
|
||||
ac = new AddonComponent( 3178 );
|
||||
AddComponent( ac, 2, 1, 1 );
|
||||
ac = new AddonComponent( 4651 );
|
||||
AddComponent( ac, 2, 2, 0 );
|
||||
|
||||
}
|
||||
|
||||
public Hall2011PondAddon( 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 Hall2011PondAddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new Hall2011PondAddon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public Hall2011PondAddonDeed()
|
||||
{
|
||||
Name = "Hall2011Pond";
|
||||
}
|
||||
|
||||
public Hall2011PondAddonDeed( 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