Kod:
/////////////////////
//Crafted By Sephiroth///
/////////////////////
using System;
using Server;
using Server.Gumps;
using Server.Network;
namespace Server.Items
{
public class ArtifactDeed : Item
{
[Constructable]
public ArtifactDeed() : this( null )
{
}
[Constructable]
public ArtifactDeed ( string name ) : base ( 0x14F0 )
{
Name = "Artifact Deed";
LootType = LootType.Blessed;
Hue = 1161;
}
public ArtifactDeed ( Serial serial ) : base ( serial )
{
}
public override void OnDoubleClick( Mobile from )
{
if ( !IsChildOf( from.Backpack ) )
{
from.SendLocalizedMessage( 1042001 );
}
else
{
from.SendGump( new ArtifactGump( from, this ) );
}
}
public override void Serialize ( GenericWriter writer)
{
base.Serialize ( writer );
writer.Write ( (int) 0);
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize ( reader );
int version = reader.ReadInt();
}
}
}
//Crafted By Sephiroth///
/////////////////////
using System;
using Server;
using Server.Gumps;
using Server.Network;
namespace Server.Items
{
public class ArtifactDeed : Item
{
[Constructable]
public ArtifactDeed() : this( null )
{
}
[Constructable]
public ArtifactDeed ( string name ) : base ( 0x14F0 )
{
Name = "Artifact Deed";
LootType = LootType.Blessed;
Hue = 1161;
}
public ArtifactDeed ( Serial serial ) : base ( serial )
{
}
public override void OnDoubleClick( Mobile from )
{
if ( !IsChildOf( from.Backpack ) )
{
from.SendLocalizedMessage( 1042001 );
}
else
{
from.SendGump( new ArtifactGump( from, this ) );
}
}
public override void Serialize ( GenericWriter writer)
{
base.Serialize ( writer );
writer.Write ( (int) 0);
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize ( reader );
int version = reader.ReadInt();
}
}
}
Yorumlar
Henüz yorum yapılmamıştır.
|
OylamalarOylama :![]()
Üyelerin oylama ortalaması (10 dışında) : Henüz Oylanmamış
Oylar: 0 |
Benzer Sayfalar
| Sayfalar | Yorumlar | Gönderen | Tarih |
| Baslangıc Deed | 0 | Robell | 11-02-2012 |
| Aile Deed | 0 | Weight | 17-04-2011 |
| Str-Dex-Deed | 0 | Lucky | 26-02-2010 |
| Runic Deed | 0 | deepanti | 31-08-2009 |
| Minor Artifact Deed | 0 | ubeyid | 23-08-2009 |







