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,153 @@
/////////////////////////////////////////////////
//
// Automatically generated by the
// AddonGenerator script by Arya
//
/////////////////////////////////////////////////
using System;
using Server;
using Server.Items;
namespace Server.Items
{
public class FlatScreenTVFSAddon : BaseAddon
{
public override BaseAddonDeed Deed
{
get
{
return new FlatScreenTVFSAddonDeed();
}
}
[ Constructable ]
public FlatScreenTVFSAddon()
{
AddonComponent ac;
ac = new AddonComponent( 1982 );
ac.Hue = 1863;
AddComponent( ac, -1, 0, 0 );
ac = new AddonComponent( 1990 );
ac.Hue = 1863;
AddComponent( ac, 2, 0, 11 );
ac = new AddonComponent( 1990 );
ac.Hue = 1863;
AddComponent( ac, 2, 0, 15 );
ac = new AddonComponent( 1982 );
ac.Hue = 1863;
AddComponent( ac, 0, 0, 0 );
ac = new AddonComponent( 1982 );
ac.Hue = 1863;
AddComponent( ac, -1, 0, 11 );
ac = new AddonComponent( 1990 );
ac.Hue = 1863;
AddComponent( ac, 2, 0, 2 );
ac = new AddonComponent( 1982 );
ac.Hue = 1863;
AddComponent( ac, 1, 0, 0 );
ac = new AddonComponent( 1990 );
ac.Hue = 1863;
AddComponent( ac, 2, 0, 0 );
ac = new AddonComponent( 8194 );
ac.Hue = 2958;
AddComponent( ac, 0, 0, 0 );
ac = new AddonComponent( 1982 );
ac.Hue = 1863;
AddComponent( ac, -1, 0, 2 );
ac = new AddonComponent( 1990 );
ac.Hue = 1863;
AddComponent( ac, 2, 0, 7 );
ac = new AddonComponent( 2605 );
ac.Hue = 1175;
AddComponent( ac, 0, 0, 4 );
ac = new AddonComponent( 575 );
AddComponent( ac, 2, 0, 13 );
ac = new AddonComponent( 1982 );
ac.Hue = 1863;
AddComponent( ac, -1, 0, 7 );
ac = new AddonComponent( 1982 );
ac.Hue = 1863;
AddComponent( ac, 1, 0, 2 );
ac = new AddonComponent( 1982 );
ac.Hue = 1863;
AddComponent( ac, -1, 0, 15 );
ac = new AddonComponent( 2609 );
ac.Hue = 1175;
AddComponent( ac, 1, 0, 6 );
ac = new AddonComponent( 1801 );
ac.Hue = 2051;
AddComponent( ac, 0, 0, 12 );
ac = new AddonComponent( 1982 );
ac.Hue = 1863;
AddComponent( ac, 0, 0, 2 );
ac = new AddonComponent( 8194 );
ac.Hue = 2958;
AddComponent( ac, -1, 0, 0 );
ac = new AddonComponent( 8194 );
ac.Hue = 2958;
AddComponent( ac, 1, 0, 0 );
ac = new AddonComponent( 7885 );
ac.Light = LightType.ArchedWindowEast;
AddComponent( ac, -1, 0, 13 );
ac = new AddonComponent( 1801 );
ac.Hue = 2051;
AddComponent( ac, 1, 0, 12 );
ac = new AddonComponent( 7893 );
ac.Hue = 2101;
AddComponent( ac, 0, 1, 3 );
ac = new AddonComponent( 7892 );
ac.Hue = 2101;
AddComponent( ac, 1, 1, 3 );
}
public FlatScreenTVFSAddon( 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 FlatScreenTVFSAddonDeed : BaseAddonDeed
{
public override BaseAddon Addon
{
get
{
return new FlatScreenTVFSAddon();
}
}
[Constructable]
public FlatScreenTVFSAddonDeed()
{
Name = "FlatScreenTVFS";
}
public FlatScreenTVFSAddonDeed( 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();
}
}
}