Files
abysmal-isle/Scripts/Scripts-master/Addons2/plainwagonsouthAddon.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

100 lines
2.5 KiB
C#

////////////////////////////////////////
// //
// Generated by CEO's YAAAG - V1.2 //
// (Yet Another Arya Addon Generator) //
// //
////////////////////////////////////////
using System;
using Server;
using Server.Items;
namespace Server.Items
{
public class plainwagonsouthAddon : BaseAddon
{
private static int[,] m_AddOnSimpleComponents = new int[,] {
{2862, 1, 3, 9}, {190, -1, -1, 8}, {2938, 0, -1, 3}// 1 2 3
, {191, 0, 2, 8}, {2938, 1, 2, 3}, {2938, 1, 0, 3}// 4 5 6
, {2938, 0, 2, 3}, {190, -1, 1, 8}, {2938, 1, 1, 3}// 7 8 9
, {2938, 0, -2, 3}, {2938, 1, 3, 3}, {2938, 0, 1, 3}// 10 11 12
, {2938, 0, 0, 3}, {191, 1, 2, 8}, {2938, 1, -2, 3}// 13 14 15
, {2938, 1, -1, 3}, {190, -1, 0, 8}, {2938, 0, 3, 3}// 16 17 18
, {190, -1, 2, 8}, {190, -1, 3, 8}, {6321, 2, 2, 0}// 19 20 21
, {190, 2, 0, 8}, {190, 2, -1, 8}, {2938, 2, 0, 3}// 22 23 24
, {190, 2, 3, 8}, {2938, 2, 2, 3}, {6321, 2, -1, 0}// 25 26 27
, {2938, 2, -1, 3}, {2938, 2, 1, 3}, {2938, 2, 3, 3}// 28 29 30
, {189, 2, 2, 8}, {2938, 2, -2, 3}, {190, 2, 1, 8}// 31 32 33
};
public override BaseAddonDeed Deed
{
get
{
return new plainwagonsouthAddonDeed();
}
}
[ Constructable ]
public plainwagonsouthAddon()
{
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 plainwagonsouthAddon( 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 plainwagonsouthAddonDeed : BaseAddonDeed
{
public override BaseAddon Addon
{
get
{
return new plainwagonsouthAddon();
}
}
[Constructable]
public plainwagonsouthAddonDeed()
{
Name = "plainwagonsouth";
}
public plainwagonsouthAddonDeed( 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();
}
}
}