Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,122 @@
////////////////////////////////////////
// //
// Generated by CEO's YAAAG - V1.2 //
// (Yet Another Arya Addon Generator) //
// //
////////////////////////////////////////
using System;
using Server;
using Server.Items;
namespace Server.Items
{
public class DRAlchemybuildingpatioAddon : BaseAddon
{
private static int[,] m_AddOnSimpleComponents = new int[,] {
{1339, -3, -6, 0}, {1339, -2, -6, 0}, {1339, -1, -6, 0}// 1 2 3
, {1339, 0, -6, 0}, {1339, 1, -6, 0}, {1339, 2, -6, 0}// 4 5 6
, {1339, 3, -6, 0}, {1339, -3, -5, 0}, {1339, -3, -4, 0}// 7 8 9
, {1339, -3, -3, 0}, {1339, -3, -2, 0}, {1339, -3, -1, 0}// 10 11 12
, {1339, -3, 0, 0}, {1339, -3, 1, 0}, {1339, -3, 2, 0}// 13 14 15
, {1339, -3, 3, 0}, {1339, -3, 4, 0}, {1339, -3, 5, 0}// 16 17 18
, {1339, -3, 6, 0}, {1339, -3, 7, 0}, {1339, -2, -5, 0}// 19 20 21
, {1339, -2, -4, 0}, {1339, -2, -3, 0}, {1339, -2, -2, 0}// 22 23 24
, {1339, -2, -1, 0}, {1339, -2, 0, 0}, {1339, -2, 1, 0}// 25 26 27
, {1339, -2, 2, 0}, {1339, -2, 3, 0}, {1339, -2, 4, 0}// 28 29 30
, {1339, -2, 5, 0}, {1339, -2, 6, 0}, {1339, -2, 7, 0}// 31 32 33
, {1339, -1, -5, 0}, {1339, -1, -4, 0}, {1339, -1, -3, 0}// 34 35 36
, {1339, -1, -2, 0}, {1339, -1, -1, 0}, {1339, -1, 0, 0}// 37 38 39
, {1339, -1, 1, 0}, {1339, -1, 2, 0}, {1339, -1, 3, 0}// 40 41 42
, {1339, -1, 4, 0}, {1339, -1, 5, 0}, {1339, -1, 6, 0}// 43 44 45
, {1339, -1, 7, 0}, {1339, 0, -5, 0}, {1339, 0, -4, 0}// 46 47 48
, {1339, 0, -3, 0}, {1339, 0, -2, 0}, {1339, 0, -1, 0}// 49 50 51
, {1339, 0, 0, 0}, {1339, 0, 1, 0}, {1339, 0, 2, 0}// 52 53 54
, {1339, 0, 3, 0}, {1339, 0, 4, 0}, {1339, 0, 5, 0}// 55 56 57
, {1339, 0, 6, 0}, {1339, 0, 7, 0}, {1339, 1, -5, 0}// 58 59 60
, {1339, 1, -4, 0}, {1339, 1, -3, 0}, {1339, 1, -2, 0}// 61 62 63
, {1339, 1, -1, 0}, {1339, 1, 0, 0}, {1339, 1, 1, 0}// 64 65 66
, {1339, 1, 2, 0}, {1339, 1, 3, 0}, {1339, 1, 4, 0}// 67 68 69
, {1339, 1, 5, 0}, {1339, 1, 6, 0}, {1339, 1, 7, 0}// 70 71 72
, {1339, 2, -5, 0}, {1339, 2, -4, 0}, {1339, 2, -3, 0}// 73 74 75
, {1339, 2, -2, 0}, {1339, 2, -1, 0}, {1339, 2, 0, 0}// 76 77 78
, {1339, 2, 1, 0}, {1339, 2, 2, 0}, {1339, 2, 3, 0}// 79 80 81
, {1339, 2, 4, 0}, {1339, 2, 5, 0}, {1339, 2, 6, 0}// 82 83 84
, {1339, 2, 7, 0}, {1339, 3, -5, 0}, {1339, 3, -4, 0}// 85 86 87
, {1339, 3, -3, 0}, {1339, 3, -2, 0}, {1339, 3, -1, 0}// 88 89 90
, {1339, 3, 0, 0}, {1339, 3, 1, 0}, {1339, 3, 2, 0}// 91 92 93
, {1339, 3, 3, 0}, {1339, 3, 6, 0}, {1339, 3, 7, 0}// 94 95 96
, {1339, 3, 4, 0}, {1339, 3, 5, 0}// 97 98
};
public override BaseAddonDeed Deed
{
get
{
return new DRAlchemybuildingpatioAddonDeed();
}
}
[ Constructable ]
public DRAlchemybuildingpatioAddon()
{
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 DRAlchemybuildingpatioAddon( 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 DRAlchemybuildingpatioAddonDeed : BaseAddonDeed
{
public override BaseAddon Addon
{
get
{
return new DRAlchemybuildingpatioAddon();
}
}
[Constructable]
public DRAlchemybuildingpatioAddonDeed()
{
Name = "DRAlchemybuildingpatio";
}
public DRAlchemybuildingpatioAddonDeed( 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();
}
}
}