Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
119
Scripts/Scripts-master/Addons2/rezareaAddon.cs
Normal file
119
Scripts/Scripts-master/Addons2/rezareaAddon.cs
Normal file
@@ -0,0 +1,119 @@
|
||||
|
||||
////////////////////////////////////////
|
||||
// //
|
||||
// Generated by CEO's YAAAG - V1.2 //
|
||||
// (Yet Another Arya Addon Generator) //
|
||||
// //
|
||||
////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class rezareaAddon : BaseAddon
|
||||
{
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,] {
|
||||
{1339, 0, -4, 0}, {1339, 0, -3, 0}, {1339, 0, -2, 0}// 1 2 3
|
||||
, {1339, 0, -1, 0}, {1339, 1, -4, 0}, {1339, 1, -3, 0}// 4 5 6
|
||||
, {1339, 1, -2, 0}, {1339, 1, -1, 0}, {1339, 2, -4, 0}// 7 8 9
|
||||
, {1339, 2, -3, 0}, {1339, 2, -2, 0}, {1339, 2, -1, 0}// 10 11 12
|
||||
, {1339, 3, -4, 0}, {1339, 3, -3, 0}, {1339, 3, -2, 0}// 13 14 15
|
||||
, {1339, 3, -1, 0}, {1339, 4, -4, 0}, {1339, 4, -3, 0}// 16 17 18
|
||||
, {1339, 4, -2, 0}, {1339, 4, -1, 0}, {1339, -4, -4, 0}// 19 20 21
|
||||
, {1339, -4, -3, 0}, {1339, -4, -2, 0}, {1339, -4, -1, 0}// 22 23 24
|
||||
, {1339, -3, -4, 0}, {1339, -3, -3, 0}, {1339, -3, -2, 0}// 25 26 27
|
||||
, {1339, -3, -1, 0}, {1339, -2, -4, 0}, {1339, -2, -3, 0}// 28 29 30
|
||||
, {1339, -2, -2, 0}, {1339, -2, -1, 0}, {1339, -1, -4, 0}// 31 32 33
|
||||
, {1339, -1, -3, 0}, {1339, -1, -2, 0}, {1339, -1, -1, 0}// 34 35 36
|
||||
, {1339, 0, 0, 0}, {1339, 0, 1, 0}, {1339, 0, 2, 0}// 37 38 39
|
||||
, {1339, 0, 3, 0}, {1339, 1, 0, 0}, {1339, 1, 1, 0}// 40 41 42
|
||||
, {1339, 1, 2, 0}, {1339, 1, 3, 0}, {1339, 2, 0, 0}// 43 44 45
|
||||
, {1339, 2, 1, 0}, {1339, 2, 2, 0}, {1339, 2, 3, 0}// 46 47 48
|
||||
, {1339, 3, 0, 0}, {1339, 3, 1, 0}, {1339, 3, 2, 0}// 49 50 51
|
||||
, {1339, 3, 3, 0}, {1339, 4, 0, 0}, {1339, 4, 1, 0}// 52 53 54
|
||||
, {1339, 4, 2, 0}, {1339, 4, 3, 0}, {1339, 0, 4, 0}// 55 56 57
|
||||
, {1339, 0, 5, 0}, {1339, 1, 4, 0}, {1339, 1, 5, 0}// 58 59 60
|
||||
, {1339, 2, 4, 0}, {1339, 2, 5, 0}, {1339, 3, 4, 0}// 61 62 63
|
||||
, {1339, 3, 5, 0}, {1339, 4, 4, 0}, {1339, 4, 5, 0}// 64 65 66
|
||||
, {1339, -4, 0, 0}, {1339, -4, 1, 0}, {1339, -4, 2, 0}// 67 68 69
|
||||
, {1339, -4, 3, 0}, {1339, -4, 4, 0}, {1339, -4, 5, 0}// 70 71 72
|
||||
, {1339, -3, 0, 0}, {1339, -3, 1, 0}, {1339, -3, 2, 0}// 73 74 75
|
||||
, {1339, -3, 3, 0}, {1339, -3, 4, 0}, {1339, -3, 5, 0}// 76 77 78
|
||||
, {1339, -2, 0, 0}, {1339, -2, 1, 0}, {1339, -2, 2, 0}// 79 80 81
|
||||
, {1339, -2, 3, 0}, {1339, -2, 4, 0}, {1339, -2, 5, 0}// 82 83 84
|
||||
, {1339, -1, 0, 0}, {1339, -1, 1, 0}, {1339, -1, 2, 0}// 85 86 87
|
||||
, {1339, -1, 3, 0}, {1339, -1, 4, 0}, {1339, -1, 5, 0}// 88 89 90
|
||||
};
|
||||
|
||||
|
||||
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new rezareaAddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public rezareaAddon()
|
||||
{
|
||||
|
||||
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 rezareaAddon( 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 rezareaAddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new rezareaAddon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public rezareaAddonDeed()
|
||||
{
|
||||
Name = "rezarea";
|
||||
}
|
||||
|
||||
public rezareaAddonDeed( 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