Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
116
Scripts/Scripts-master/Addons2/Pond1Addon.cs
Normal file
116
Scripts/Scripts-master/Addons2/Pond1Addon.cs
Normal file
@@ -0,0 +1,116 @@
|
||||
|
||||
////////////////////////////////////////
|
||||
// //
|
||||
// Generated by CEO's YAAAG - V1.2 //
|
||||
// (Yet Another Arya Addon Generator) //
|
||||
// //
|
||||
////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class Pond1Addon : BaseAddon
|
||||
{
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,] {
|
||||
{3222, -5, 0, 0}, {6054, -3, -2, 0}, {6053, 4, -2, 0}// 1 2 3
|
||||
, {6048, -2, -2, 0}, {6048, -1, -2, 0}, {6048, 1, -2, 0}// 4 5 6
|
||||
, {6048, 3, -2, 0}, {6047, 2, -2, 0}, {6047, 0, -2, 0}// 7 8 9
|
||||
, {3232, 5, -2, 0}, {3233, -1, -2, 0}, {3236, -2, -2, 0}// 10 11 12
|
||||
, {3263, 1, -2, 5}, {3221, 4, -3, 0}, {6039, -2, -1, 0}// 13 14 15
|
||||
, {6039, -2, 0, 0}, {6039, -2, 1, 0}, {6039, -2, 2, 0}// 16 17 18
|
||||
, {6039, -1, -1, 0}, {6039, -1, 0, 0}, {6039, -1, 1, 0}// 19 20 21
|
||||
, {6039, -1, 2, 0}, {6039, 0, -1, 0}, {6039, 0, 0, 0}// 22 23 24
|
||||
, {6039, 0, 1, 0}, {6039, 0, 2, 0}, {6039, 1, -1, 0}// 25 26 27
|
||||
, {6039, 1, 0, 0}, {6039, 1, 1, 0}, {6039, 1, 2, 0}// 28 29 30
|
||||
, {6039, 2, -1, 0}, {6039, 2, 0, 0}, {6039, 2, 1, 0}// 31 32 33
|
||||
, {6039, 2, 2, 0}, {6039, 3, -1, 0}, {6039, 3, 0, 0}// 34 35 36
|
||||
, {6039, 3, 1, 0}, {6039, 3, 2, 0}, {6055, 4, 3, 0}// 37 38 39
|
||||
, {6056, -3, 3, 0}, {6052, -3, 1, 0}, {6052, -3, -1, 0}// 40 41 42
|
||||
, {6051, -3, 2, 0}, {6051, -3, 0, 0}, {6050, -2, 3, 0}// 43 44 45
|
||||
, {6050, -1, 3, 0}, {6050, 1, 3, 0}, {6050, 3, 3, 0}// 46 47 48
|
||||
, {6049, 0, 3, 0}, {6049, 2, 3, 0}, {6046, 4, 1, 0}// 49 50 51
|
||||
, {6046, 4, -1, 0}, {6045, 4, 2, 0}, {6045, 4, 0, 0}// 52 53 54
|
||||
, {3376, 4, -1, 0}, {3377, 6, 0, 20}, {3223, 4, 0, 0}// 55 56 57
|
||||
, {3224, 4, 4, 0}, {3234, -3, -1, 0}, {3235, -2, 3, 3}// 58 59 60
|
||||
, {3204, 5, -1, 0}, {3204, -3, 0, 0}, {3332, -2, -1, 0}// 61 62 63
|
||||
, {3268, -3, 2, 0}, {3265, -4, 1, 0}, {9037, 4, 4, 8}// 64 65 66
|
||||
, {3263, 2, 4, 0}, {3208, -3, 1, 2}, {3225, -2, 4, 0}// 67 68 69
|
||||
, {3226, -4, 0, 0}, {3229, -4, -1, 0}, {3317, -1, 4, 0}// 70 71 72
|
||||
, {3318, 0, 4, 0}, {3319, 1, 4, 0}, {3380, 6, 0, 0}// 73 74 75
|
||||
, {3237, 5, 2, 0}, {3380, -3, 3, 0}, {3384, -4, 3, 5}// 76 77 78
|
||||
, {3518, 1, 1, 0}, {3334, 1, 1, 2}// 79 80
|
||||
};
|
||||
|
||||
|
||||
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new Pond1AddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public Pond1Addon()
|
||||
{
|
||||
|
||||
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 Pond1Addon( 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 Pond1AddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new Pond1Addon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public Pond1AddonDeed()
|
||||
{
|
||||
Name = "Pond1";
|
||||
}
|
||||
|
||||
public Pond1AddonDeed( 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