Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
141
Scripts/Scripts-master/Addons/ByTheRosesAddon.cs
Normal file
141
Scripts/Scripts-master/Addons/ByTheRosesAddon.cs
Normal file
@@ -0,0 +1,141 @@
|
||||
/////////////////////////////////////////////////
|
||||
//
|
||||
// Automatically generated by the
|
||||
// AddonGenerator script by Arya
|
||||
//
|
||||
/////////////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class ByTheRosesAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new ByTheRosesAddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public ByTheRosesAddon()
|
||||
{
|
||||
AddonComponent ac;
|
||||
ac = new AddonComponent( 3293 );
|
||||
AddComponent( ac, -2, -1, 0 );
|
||||
ac = new AddonComponent( 3295 );
|
||||
AddComponent( ac, -2, -1, 0 );
|
||||
ac = new AddonComponent( 2911 );
|
||||
AddComponent( ac, -1, 0, 0 );
|
||||
ac = new AddonComponent( 2912 );
|
||||
AddComponent( ac, -1, -1, 0 );
|
||||
ac = new AddonComponent( 3254 );
|
||||
AddComponent( ac, -2, 0, 0 );
|
||||
ac = new AddonComponent( 2448 );
|
||||
AddComponent( ac, -1, 1, 0 );
|
||||
ac = new AddonComponent( 3196 );
|
||||
ac.Hue = 236;
|
||||
AddComponent( ac, -1, 1, 3 );
|
||||
ac = new AddonComponent( 3185 );
|
||||
ac.Hue = 33;
|
||||
AddComponent( ac, -1, 1, 3 );
|
||||
ac = new AddonComponent( 4030 );
|
||||
AddComponent( ac, -1, -1, 1 );
|
||||
ac = new AddonComponent( 8905 );
|
||||
AddComponent( ac, 0, -2, 9 );
|
||||
ac = new AddonComponent( 8474 );
|
||||
AddComponent( ac, 0, -2, 10 );
|
||||
ac = new AddonComponent( 411 );
|
||||
AddComponent( ac, 0, -2, 0 );
|
||||
ac = new AddonComponent( 3351 );
|
||||
AddComponent( ac, 0, -1, 0 );
|
||||
ac = new AddonComponent( 3196 );
|
||||
ac.Hue = 236;
|
||||
AddComponent( ac, 1, -2, 6 );
|
||||
ac = new AddonComponent( 3198 );
|
||||
AddComponent( ac, 1, -2, 0 );
|
||||
ac = new AddonComponent( 6818 );
|
||||
AddComponent( ac, 1, -2, 1 );
|
||||
ac = new AddonComponent( 3196 );
|
||||
ac.Hue = 236;
|
||||
AddComponent( ac, 0, 2, 17 );
|
||||
ac = new AddonComponent( 6818 );
|
||||
ac.Hue = 2524;
|
||||
AddComponent( ac, 0, 2, 6 );
|
||||
ac = new AddonComponent( 3198 );
|
||||
AddComponent( ac, 2, -2, 6 );
|
||||
ac = new AddonComponent( 3196 );
|
||||
ac.Hue = 236;
|
||||
AddComponent( ac, 2, -2, 12 );
|
||||
ac = new AddonComponent( 3185 );
|
||||
ac.Hue = 33;
|
||||
AddComponent( ac, 2, -2, 4 );
|
||||
ac = new AddonComponent( 3185 );
|
||||
ac.Hue = 33;
|
||||
AddComponent( ac, 1, -1, 7 );
|
||||
ac = new AddonComponent( 3185 );
|
||||
ac.Hue = 33;
|
||||
AddComponent( ac, 2, -1, 14 );
|
||||
ac = new AddonComponent( 3262 );
|
||||
AddComponent( ac, 2, -2, 0 );
|
||||
ac = new AddonComponent( 8430 );
|
||||
AddComponent( ac, 1, -2, 26 );
|
||||
ac = new AddonComponent( 3196 );
|
||||
ac.Hue = 236;
|
||||
AddComponent( ac, 0, 1, 4 );
|
||||
|
||||
}
|
||||
|
||||
public ByTheRosesAddon( 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 ByTheRosesAddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new ByTheRosesAddon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public ByTheRosesAddonDeed()
|
||||
{
|
||||
Name = "ByTheRoses";
|
||||
}
|
||||
|
||||
public ByTheRosesAddonDeed( 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