xG00BERx

Although some of these items are no longer spawning on OSI and such I believe they should be on our servers as it gives new event item Ideas as well as reenacting old events!

On UOGuide the label of these suits are "Unofficial Sets" These can be located at this link >>>HERE<<<

ServUO is currently missing the following Unofficial Sets:
-Armor of Initiation
-Blackrock Detector Event Set
-Phoenix Armor Set
-Vanguard Invasion Set

BUT NO WORRIES! I have coded them all to UOGuide accuracy!

There is only one edit you will have to do which is in the SetItem.cs

Change This:
Code:
namespace Server
{
  public enum SetItem
  {
  None,
  Acolyte,
  Assassin,
  Darkwood,
  Grizzle,
  Hunter,
  Juggernaut,
  Mage,
  Marksman,
  Myrmidon,
  Necromancer,
  Paladin,
  Virtue,
  Luck,
  Knights,
  Scout,
  Sorcerer,
  Fishing
   
  }

TO THISE:
Code:
namespace Server
{
  public enum SetItem
  {
  None,
  Acolyte,
  Assassin,
  Darkwood,
  Grizzle,
  Hunter,
  Juggernaut,
  Mage,
  Marksman,
  Myrmidon,
  Necromancer,
  Paladin,
  Virtue,
  Luck,
  Knights,
  Scout,
  Sorcerer,
  Fishing,
  Initiation
   
  }

Mine may or may not be different then yours!!! Just make sure you add the coma and then on the next line add Initiation!

Then we look further into UOGuide and see that The Initiation suit came along for new players that had purchased Stygian Abyss and they could wear it for the first month of playing! My version currently has no limit on how long you can wear the suit as I do not see you needing it anyways after so long...

If you would like to place this where every new player that logs into your server gets one of these suits simply go into your CharacterCreation.cs and do the following!

Go to around line 46 or so or use find and look for the following:
Code:
  PackItem(new RedBook("a book", m.Name, 20, true));
  PackItem(new Gold(1000)); // Starting gold can be customized here
  PackItem(new Candle());

You will then make it look like mine!
Code:
  PackItem(new RedBook("a book", m.Name, 20, true));
  PackItem(new Gold(1000)); // Starting gold can be customized here
  PackItem(new Candle());
PackItem(new InitiationSuitBag());

I hope this makes your server that much more OSI Accurate and hope it helps your new players get a grip!

If you need any help let me know! At some point I may add it to where you cannot use the armor after one month of playing! Probably not, but who knows xD
 

Attachments

  • Item Sets.zip
    12.5 KB · Views: 19
Back