Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
104
Scripts/Scripts-master/Addons/KidtownNorthYardHedgeAddon.cs
Normal file
104
Scripts/Scripts-master/Addons/KidtownNorthYardHedgeAddon.cs
Normal file
@@ -0,0 +1,104 @@
|
||||
|
||||
////////////////////////////////////////
|
||||
// //
|
||||
// Generated by CEO's YAAAG - V1.2 //
|
||||
// (Yet Another Arya Addon Generator) //
|
||||
// //
|
||||
////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class KidtownNorthYardHedgeAddon : BaseAddon
|
||||
{
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,] {
|
||||
{3513, -11, 12, 0}, {3513, -10, 12, 0}, {3513, -6, 12, 0}// 1 2 3
|
||||
, {3513, -9, 12, 0}, {3513, -8, 12, 0}, {3513, -7, 12, 0}// 4 5 6
|
||||
, {3513, -2, 12, 0}, {3513, -1, 12, 0}, {3513, 0, 12, 0}// 7 8 9
|
||||
, {3513, 1, 12, 0}, {3513, 2, 12, 0}, {3513, 3, 12, 0}// 10 11 12
|
||||
, {3513, 4, 12, 0}, {3513, 5, 12, 0}, {3513, 6, 12, 0}// 13 14 15
|
||||
, {3513, 7, 12, 0}, {3513, 8, 12, 0}, {3513, 9, 12, 0}// 16 17 18
|
||||
, {3513, 10, 12, 0}, {3513, 11, 12, 0}, {3513, 12, -11, 0}// 19 20 21
|
||||
, {3513, 12, -10, 0}, {3513, 12, -9, 0}, {3513, 12, -8, 0}// 22 23 24
|
||||
, {3513, 12, -7, 0}, {3513, 12, -6, 0}, {3513, 12, -5, 0}// 25 26 27
|
||||
, {3513, 12, -4, 0}, {3513, 12, -3, 0}, {3513, 12, -2, 0}// 28 29 30
|
||||
, {3513, 12, -1, 0}, {3513, 12, 0, 0}, {3513, 12, 1, 0}// 31 32 33
|
||||
, {3513, 12, 2, 0}, {3513, 12, 3, 0}, {3513, 12, 4, 0}// 34 35 36
|
||||
, {3513, 12, 5, 0}, {3513, 12, 6, 0}, {3513, 12, 7, 0}// 37 38 39
|
||||
, {3513, 12, 8, 0}, {3513, 12, 9, 0}, {3513, 12, 10, 0}// 40 41 42
|
||||
, {3513, 12, 11, 0}, {3513, 12, 12, 0}// 43 44
|
||||
};
|
||||
|
||||
|
||||
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new KidtownNorthYardHedgeAddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public KidtownNorthYardHedgeAddon()
|
||||
{
|
||||
|
||||
for (int i = 0; i < m_AddOnSimpleComponents.Length / 4; i++)
|
||||
AddComponent( new AddonComponent( m_AddOnSimpleComponents[i,0] ), m_AddOnSimpleComponents[i,1], m_AddOnSimpleComponents[i,2], m_AddOnSimpleComponents[i,3] );
|
||||
|
||||
|
||||
}
|
||||
|
||||
public KidtownNorthYardHedgeAddon( 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 KidtownNorthYardHedgeAddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new KidtownNorthYardHedgeAddon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public KidtownNorthYardHedgeAddonDeed()
|
||||
{
|
||||
Name = "KidtownNorthYardHedge";
|
||||
}
|
||||
|
||||
public KidtownNorthYardHedgeAddonDeed( 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