Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
103
Scripts/Scripts-master/Addons/Landscaping/TallTree03Addon.cs
Normal file
103
Scripts/Scripts-master/Addons/Landscaping/TallTree03Addon.cs
Normal file
@@ -0,0 +1,103 @@
|
||||
/////////////////////////////////////////////////
|
||||
//
|
||||
// Automatically generated by the
|
||||
// AddonGenerator script by Arya
|
||||
//
|
||||
/////////////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class TallTree03Addon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new TallTree03AddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public TallTree03Addon()
|
||||
{
|
||||
AddonComponent ac = null;
|
||||
ac = new AddonComponent( 3423 );
|
||||
AddComponent( ac, 0, 0, 0 );
|
||||
ac = new AddonComponent( 3422 );
|
||||
AddComponent( ac, -1, 1, 0 );
|
||||
ac = new AddonComponent( 3421 );
|
||||
AddComponent( ac, -2, 2, 0 );
|
||||
ac = new AddonComponent( 3420 );
|
||||
AddComponent( ac, -3, 3, 0 );
|
||||
ac = new AddonComponent( 3417 );
|
||||
AddComponent( ac, 0, 0, 0 );
|
||||
ac = new AddonComponent( 3416 );
|
||||
AddComponent( ac, -1, 1, 0 );
|
||||
ac = new AddonComponent( 3415 );
|
||||
AddComponent( ac, -2, 2, 0 );
|
||||
ac = new AddonComponent( 3424 );
|
||||
AddComponent( ac, 1, -1, 0 );
|
||||
ac = new AddonComponent( 3418 );
|
||||
AddComponent( ac, 1, -1, 0 );
|
||||
ac = new AddonComponent( 3425 );
|
||||
AddComponent( ac, 2, -2, 0 );
|
||||
ac = new AddonComponent( 3419 );
|
||||
AddComponent( ac, 2, -2, 0 );
|
||||
ac = new AddonComponent( 3426 );
|
||||
AddComponent( ac, 3, -3, 0 );
|
||||
|
||||
}
|
||||
|
||||
public TallTree03Addon( 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 TallTree03AddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new TallTree03Addon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public TallTree03AddonDeed()
|
||||
{
|
||||
Name = "TallTree03";
|
||||
}
|
||||
|
||||
public TallTree03AddonDeed( 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