Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
135
Scripts/Scripts-master/Addons2/UprightPianoSouthAddon.cs
Normal file
135
Scripts/Scripts-master/Addons2/UprightPianoSouthAddon.cs
Normal file
@@ -0,0 +1,135 @@
|
||||
|
||||
////////////////////////////////////////
|
||||
// //
|
||||
// Generated by CEO's YAAAG - V1.2 //
|
||||
// (Yet Another Arya Addon Generator) //
|
||||
// //
|
||||
////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class UprightPianoSouthAddon : BaseAddon
|
||||
{
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,] {
|
||||
{3773, 1, 1, 13}// 22
|
||||
};
|
||||
|
||||
|
||||
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new UprightPianoSouthAddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public UprightPianoSouthAddon()
|
||||
{
|
||||
|
||||
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] );
|
||||
|
||||
|
||||
AddComplexComponent( (BaseAddon) this, 1173, 1, -1, 11, 1, -1, "Piano", 1);// 1
|
||||
AddComplexComponent( (BaseAddon) this, 2920, 1, 2, 0, 1, -1, "Piano Bench", 1);// 2
|
||||
AddComplexComponent( (BaseAddon) this, 267, -1, -1, 0, 1, -1, "Piano", 1);// 3
|
||||
AddComplexComponent( (BaseAddon) this, 2922, 0, 2, 0, 1, -1, "Piano Bench", 1);// 4
|
||||
AddComplexComponent( (BaseAddon) this, 2921, -1, 2, 0, 1, -1, "Piano Bench", 1);// 5
|
||||
AddComplexComponent( (BaseAddon) this, 2929, 1, 1, 0, 1, -1, "Piano", 1);// 6
|
||||
AddComplexComponent( (BaseAddon) this, 2932, 1, 1, 11, 1, -1, "Piano", 1);// 7
|
||||
AddComplexComponent( (BaseAddon) this, 266, 1, -1, 0, 1, -1, "Piano", 1);// 8
|
||||
AddComplexComponent( (BaseAddon) this, 4006, 1, 1, 10, 0, -1, "Piano Keys", 1);// 9
|
||||
AddComplexComponent( (BaseAddon) this, 2932, 0, 1, 0, 1, -1, "Piano", 1);// 10
|
||||
AddComplexComponent( (BaseAddon) this, 2928, -1, 1, 0, 1, -1, "Piano", 1);// 11
|
||||
AddComplexComponent( (BaseAddon) this, 267, 0, -1, 0, 1, -1, "Piano", 1);// 12
|
||||
AddComplexComponent( (BaseAddon) this, 1173, -1, -1, 11, 1, -1, "Piano", 1);// 13
|
||||
AddComplexComponent( (BaseAddon) this, 1173, 0, -1, 11, 1, -1, "Piano", 1);// 14
|
||||
AddComplexComponent( (BaseAddon) this, 2931, 0, 0, 0, 1, -1, "", 1);// 15
|
||||
AddComplexComponent( (BaseAddon) this, 4006, 0, 1, 10, 0, -1, "Piano Keys", 1);// 16
|
||||
AddComplexComponent( (BaseAddon) this, 2931, -1, 0, 0, 1, -1, "", 1);// 17
|
||||
AddComplexComponent( (BaseAddon) this, 2932, 0, 1, 11, 1, -1, "Piano", 1);// 18
|
||||
AddComplexComponent( (BaseAddon) this, 2931, 1, 0, 0, 1, -1, "", 1);// 19
|
||||
AddComplexComponent( (BaseAddon) this, 2932, 2, 1, 11, 1, -1, "Piano", 1);// 20
|
||||
AddComplexComponent( (BaseAddon) this, 2842, 2, 1, 15, 0, 1, "", 1);// 21
|
||||
AddComplexComponent( (BaseAddon) this, 3760, 0, 1, 16, 33, -1, "Long Stem Rose", 1);// 23
|
||||
|
||||
}
|
||||
|
||||
public UprightPianoSouthAddon( Serial serial ) : base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
private static void AddComplexComponent(BaseAddon addon, int item, int xoffset, int yoffset, int zoffset, int hue, int lightsource)
|
||||
{
|
||||
AddComplexComponent(addon, item, xoffset, yoffset, zoffset, hue, lightsource, null, 1);
|
||||
}
|
||||
|
||||
private static void AddComplexComponent(BaseAddon addon, int item, int xoffset, int yoffset, int zoffset, int hue, int lightsource, string name, int amount)
|
||||
{
|
||||
AddonComponent ac;
|
||||
ac = new AddonComponent(item);
|
||||
if (name != null && name.Length > 0)
|
||||
ac.Name = name;
|
||||
if (hue != 0)
|
||||
ac.Hue = hue;
|
||||
if (amount > 1)
|
||||
{
|
||||
ac.Stackable = true;
|
||||
ac.Amount = amount;
|
||||
}
|
||||
if (lightsource != -1)
|
||||
ac.Light = (LightType) lightsource;
|
||||
addon.AddComponent(ac, xoffset, yoffset, zoffset);
|
||||
}
|
||||
|
||||
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 UprightPianoSouthAddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new UprightPianoSouthAddon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public UprightPianoSouthAddonDeed()
|
||||
{
|
||||
Name = "UprightPianoSouth";
|
||||
}
|
||||
|
||||
public UprightPianoSouthAddonDeed( 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