|
||
|
|
#1 (permalink) |
|
Summary: This is ornate armor if this has already been posted then i dont know but if it has just delete this post.
Description: Just some ornate harrower armor it isnt tweaked or anything so you dont have to worry about your shards PvP Installation: just put all the files into a custom script folder |
|
|
|
|
|
|
#2 (permalink) |
|
Forum Newbie
|
I was bored and quickly made a weapon to go with those armour pieces
using System; using Server; namespace Server.Items { public class AxeOfTheHarrower : BattleAxe { public override int ArtifactRarity{ get{ return 11; } } public override int InitMinHits{ get{ return 255; } } public override int InitMaxHits{ get{ return 255; } } [Constructable] public AxeOfTheHarrower() { Weight = 5.0; Name = "Axe Of The Harrower"; Hue = 1370; //Attributes.AttackChance = 15; //Attributes.CastRecovery = 5; //Attributes.CastSpeed = 2; Attributes.DefendChance = 15; //Attributes.Luck = 200; //Attributes.Nightsight = 1; Attributes.SpellChanneling = 1; //Attributes.SpellDamage = 20; Attributes.WeaponDamage = 25; Attributes.WeaponSpeed = 15; WeaponAttributes.HitLightning = 50; LootType = LootType.Blessed; } public AxeOfTheHarrower( Serial serial ) : base( serial ) { } 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(); } } } |
|
|
|
|
|
#3 (permalink) | |
|
Guest
Posts: n/a
|
Quote:
Code:
using System;
using Server;
namespace Server.Items
{
public class AxeOfTheHarrower : BattleAxe
{
public override int ArtifactRarity{ get{ return 11; } }
public override int InitMinHits{ get{ return 255; } }
public override int InitMaxHits{ get{ return 255; } }
[Constructable]
public AxeOfTheHarrower()
{
Weight = 5.0;
Name = "Axe Of The Harrower";
Hue = 1370;
Attributes.DefendChance = 15;
Attributes.SpellChanneling = 1;
Attributes.WeaponDamage = 25;
Attributes.WeaponSpeed = 15;
WeaponAttributes.HitLightning = 50;
LootType = LootType.Blessed;
}
public AxeOfTheHarrower( Serial serial ) : base( serial )
{
}
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();
}
}
}
![]() |
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|