This is a phoenix armor reward ticket I made for my shard. I modeled it after the OSI reward in 1999. The only thing I did differently was allow you to choose your armor piece instead of getting a random one. Also the ticket is newbied instead of blessed.
Info on that found here http://www.uoguide.com/Phoenix_Armor_Set
Note: If you want the ticket to give a random piece of armor, instead of letting you pick, inside the ticket script change
to this
Info on that found here http://www.uoguide.com/Phoenix_Armor_Set
Note: If you want the ticket to give a random piece of armor, instead of letting you pick, inside the ticket script change
Code:
public override void OnDoubleClick( Mobile from )
{
from.SendGump(new PhoenixArmor());
Delete();
return;
}
to this
Code:
public override void OnDoubleClick( Mobile from )
{
switch (Utility.Random(6))
{
case 0: from.AddToBackpack(new PhoenixArms()); break;
case 1: from.AddToBackpack(new PhoenixLegs()); break;
case 2: from.AddToBackpack(new PhoenixChest()); break;
case 3: from.AddToBackpack(new PhoenixHelm()); break;
case 4: from.AddToBackpack(new PhoenixGorget()); break;
case 5: from.AddToBackpack(new PhoenixGloves()); break;
}
Delete();
return;
}