RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Resource icon

Kiasta's Deeds & Upgradeable Equipment 0.5.1.0

No permission to download
*WARNING* This update is not compatible with 0.5.0.2 and below, you will need to delete all items related to the last version or you will have errors. Due to Namespace/Class Name changes I will not be working on compatibility. I should be able to release more compatible patches from now on (I rushed the release, my apologies for the inconvenience)

*Version 0.5.1.0 | 4/23/2013*

- Needed some more organization, Had to do some major core changes (mostly with namespaces and class names, much needed, I wish I did them sooner)
- Added a main base class for all armors/items for more scalability and to prepare for additional equipment sets
- Minor bug fixes
*Update 0.5.0.2 | 4/19/2013*

- Fixed a bug where deeds do not delete upon use (thanks to maldenarious for pointing it out)


For those using 0.5.0.1: In ModifyItem.cs replace this:

Code:
if (getIsApplied is bool && !Settings.Misc.Debug)
{
    if ((bool)getIsApplied)
    {
        Settings.AttributeModifiyAnimation.DoAnimation(m_From); 
        //IsApplied = true;
    }
}

with this:

Code:
if (getIsApplied is bool && !Settings.Misc.Debug)
{
    if ((bool)getIsApplied)
    {
        Settings.AttributeModifiyAnimation.DoAnimation(m_From); 
        IsApplied = true;
    }
}

Or just go into it and uncomment this line:

Code:
IsApplied = true;
Fixed some minor bugs,

AllowedItems array now in DeedSettings.cs where it should be.
*WARNING* This update is not compatible with 0.4.4 and below, you will need to delete all items related to the last version or you will have errors, for the time being (I am working on compatibility)

*Version 0.5.0 | 4/17/2013*

- Complete overhaul of the code, fixed several bugs both major and minor
- Changed equipment name from Dragonkin to Dragoon (I didn't really like the name Dragonkin anyways)
- Changed namespace from Dragonkin to Kiasta
- Made Weapon Slayer deeds for each slayer attribute
- Made 7 different armor sets:
  • Random Color Dragoon Armor,
  • Black Dragoon Armor,
  • Blue Dragoon Armor,
  • Green Dragoon Armor,
  • Red Dragoon Armor,
  • White Dragoon Armor,
  • Yellow Dragoon Armor
- Added animation to successful application of deed

- Added equipment bags for each item set
- Added many settings options, organized by individual source files
- Fixed the attribute name bug (The deeds were not displaying the name after server restart and after deed creation)
- Fixed many other minor bugs (grammatical mostly)
*Version 0.4.4 | 4/13/2013*

- Fixed ItemIDs for Dragonkin OuterTorso equipment
- Fixed the values for Item Stat Deeds
- Added several options to the Settings.cs
- Added BagOfItemStatDeeds and BagOfDragonkinEquipment
- Added test mobile GMKill that drops both bags 100% of the time
Top