• Warhammer Online Addons
  • Warhammer Online
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

Equipment Sets

 

Project Updated:
Files Updated: Tue, Dec 30 2008
Supports Game Version: Beta 3.0
Category: Bags & Inventory, and Unit Frames
Tags:

[Edit Tags]

Project Manager: amirabiri2
Additional Authors: No additional authors
Current Version: 1.0.12
License: GNU General Public License version 3 (GPLv3)
Development Site: CurseForge
Avg Daily DL (last 30 days): 5
Downloads Total: 7,083
Favorites: 47
Comments: 43
  • Curse Giveaways
  • Alganon

    Alganon

    Alganon Open Beta Key Giveaway Alganon is an upcoming fantasy-based MMORPG that allows thousands of people to play together in a virtual world that features a rich history dominated by commanding deities...

    Get Key

  • Contests
  • About Equipment Sets
  •  

Equipment Sets is an addon that allows the easy management of multiple sets of equipped gear. Sets are created by simply equipping items normally, and switched using a simple dropdown.

For example, if a tank player keeps two sets of gear: one focused on strength with a great weapon, and another one focused on toughness with a shield, Equipment Sets will allow the player to switch between the two sets with just one button click.

This is achieved by creating "equipment set slots", which look like the tactics button, except they are green instead of gold. Equipment Sets then "registers" each item that the user equips on the character with the currently active slot (i.e the one chosen in the dropdown). When the user picks a new slot, Equipment Sets simply equips those items again, and from there on any new items equipped will be registered with the new slot number.

Equipment Sets will also remember the tactics slot and morale abilities that were last active in each equipment set slot, and will switch to those tactics and morale abilities when the equipment set slot changes. This behaviour can be turned off.

Equipment Sets cannot cast abilities when the active slot changes, since that is disallowed by Mythic. However Equipment Sets can be configured to change the slot when certain abilities are cast. These are referred to as "trigger abilities". The configuration is done with a simple drag-and-drop interface, similar to the action bars. Examples of abilities that one may want to use as trigger abilities are stances, The Chosen's curses and the Swordmaster's blade enchants.

Equipment Sets also provides a "flip" button. This is a button that switches between equipment set slots 1 and 2 only, and can be dragged to the action bar. This is useful in cases where only two equipment sets are used, or when only two are frequently used. This feature can also be combined with the trigger abilities.

The combination of all of these features enables simple, one click, all-in-one like functionality that completely changes the character's setup mode in an instant. Using Equipment Sets the player can quickly respond to changing circumstances in RvR or PvE alike, change from defensive to offensive mode and charge in in a split of a second, and so on.

Notes

Please read the notes carefully, as they contain a lot of important details and information.

TODO list

  • Handle identical items with different talismans correctly.
  • Handle items that can be equipped in either hand correctly.
  • Code cleanup and refactoring. No behaviour changes, just my programming OCDs. :-)
  • Naming the sets.
  • Confirmation of saved slots (?).
  • Ability to view the contents of equipment set slots (?).
  • Statically link tactics and morale abilities to equipment set slots from the options window (?).
  • Downloads (1)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  Equipment Sets 1.0.12 Release Beta 3.0 5,978 12/30/2008
  • 1 page(s)
  • Screenshots (3)
  •  
  • Comments

Add Comment  

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • mossad076 said

    So Roumer's line of works:
    EquipmentSetsWindow.xml
    add savesettings="true" to line 37
    should look like this:
    Window name="EquipmentSetsChooserFrame" movable="false" savesettings="true"

    The two problems i have:
    1) changing a set number grays out the button so I have to reload my UI to change it again
    2) Changing a set number does not actually change anything

    Reply Report Permalink
  • ReZDoGG84 said

    Can someone jus modify the stuff thats needs to be changed in files, and jus upload the fixed mod folder somewheres? would be alot easier than posting all these command line modifications. Thanks.

    Reply Report Permalink
  • roumor said

    okay for button to save its position modify:
    ...\Warhammer Online - Age of Reckoning\Interface\AddOns\EquipmentSets\EquipmentSetsWindow.xml

    add savesettings="true" to line 37

    should look like this:
    Window name="EquipmentSetsChooserFrame" movable="false" savesettings="true"

    Reply Report Permalink
  • This addon was broken by the 1.3.1 patch, but fortunately the fix is easy. In EquipmentSets.lua, change every occurrence of GameData.ItemSlots to GameData.EquipSlots instead. The only side effect is that the addon forgets most of its saved armor sets. I had to re-equip my #2 equipment set after this change, but after that Equipment Sets is back to working like its old self again.

    Reply Report Permalink
  • amirabiri2 said

    Hi guys,

    Sorry for going a-wall, I've stopped playing WAR around Christmas time (I didn't go back to WOW as I hate WOW, I've kind of stopped playing MMO's for a while). I should have said something sooner, sorry about that.

    If anyone wants to take over equipment sets, I will be more than happy to hand it over to someone who is active. Please contact me if you wish to take over.

    Reply Report Permalink
  • El_Emin said

    Is there anyway to make menu go up instead of down ?

    Reply Report Permalink
  • Zarltaire said

    I too would love this Mod to be taken over or updated.
    But here's a few "modifications" to the code i have made.

    PLEASE BE AWARE: I'm not a coder by profession and have almost no experince with Lua, so use these changes at you own risk.

    But, these changes give me 5 selectable sets and they also seem to fix the saving problem as far as i can tell.

    These changes [b]DON'T[/b] update the Options window.
    So you can still only change the first 3 sets based on abilities used
    I don't use this option so won't be updating that to 5 sets.



    File: EquipmentSetsWindow.lua

    After line 12: ComboBoxAddMenuItem ( "EquipmentSetsChooser", L"3" ) - add the lines

    ComboBoxAddMenuItem ( "EquipmentSetsChooser", L"4" )
    ComboBoxAddMenuItem ( "EquipmentSetsChooser", L"5" )



    File: EquipmentSets.lua

    (1) In: function EquipmentSets.Initialize() - Line 92

    change the the 3 lines starting at 102 to:

    --if EquipmentSets.GetCurrentSetNumber() == nil then - Line 102
    -- EquipmentSets.SwitchToSetNumber( 1 ) - Line 103
    --end


    (2) In: [i]function EquipmentSets.SetTriggerAbility( setNumber, slot, abilityId ) - Line 620

    Change line 627 to: setNumber > 5
    Change line 636 to: slot > 5


    (3) In: function EquipmentSets.SetTriggerAbilities( triggersArray ) - Line 657

    Change line 666 to: for setNumber = 1, 5 do
    Change line 667 to: for slot = 1, 5 do


    (4) In: function EquipmentSets.TriggerAbilityGenerateReverseIndex() - Line 699

    Change line 703 to: for setNumber = 1, 5 do
    Change line 704 to: for slot = 1, 5 do


    (5) In: function EquipmentSets.SwitchToSetNumber( setNumber ) - Line 875

    Change line 878 to: setNumber < 1 or setNumber > 5
    Change line 880 to: d( "setNumber must be a number between 1 and 5" )



    As far as i can tell that's all i changed, but plz make a backup of the orginal files.
    If you have any problems i'll have another look in case i missed anything.

    Reply Report Permalink
  • zerohaste said

    As a grace/salvation hybrid WP I'm said to see this addon no longer updated.

    Reply Report Permalink
  • Ivanish said

    Will this addon be updated? If not, will someone take over the maintenace of it, or is there another one as good as this one (was)?

    Reply Report Permalink
  • Since the 1.2 patch, it's not saving the equipment sets correctly and seems to be overwriting on a game close to make equipment set #1 as whatever you were last wearing, even if it were, say equipment set #3.

    Reply Report Permalink
  • Vidhar said

    I love this addon very much, you already implemented features months before i was about to ask for them, you are reading my mind and the future in one. You sir are a true sorcerer.

    Reply Report Permalink
  • Nemes said

    Perfect - don't change a thing!

    Reply Report Permalink
  • whiteze said

    i love the addon ,its simple and it works ,only missing swapping same items with different talismans.thanks for your work

    Reply Report Permalink
  • kittikat said

    noticing that having the same character name on different servers screws up the equipment sets and overwrites settings of the different realm characters with identical names.

    Reply Report Permalink
  • Robnaldo said

    I am having this exact problem as well

    Reply Report Permalink
  • varazir said

    You can change so you have different setup for every char you have,
    Then all you mods has to be setup again. And some will not work, if they trying to get data from other chars.

    Reply Report Permalink
  • dgambler said

    I'd like the ability to name the set, maybe show the name when I hover over the selector?

    Reply Report Permalink
  • Robnaldo said

    I would definately enjoy the option to save more then 3 sets.

    I could use as many 6.

    Great work btw

    Reply Report Permalink
  • Ecna said

    Ok i tried out the ability on my war priest to switch gear when i change auras, seemed to work fine, but there are situations where i want to switch auras regardless of when i'm in dps mode or heal mode, like say there is a 2nd wp in group or, well guess it doesn't matter.

    the problem is i can't seem to be able to remove the abilities from the slots. So i'm stuck with my gear switching out when i change auras. am i missing something, i tried all mouse click + key modifiers i could think of but i can't see to clear them out.

    Reply Report Permalink
  • jutsenberg said

    great addon. However, it seems to have stopped switching my morale abilities whereas it did before. Is this a new bug?

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 222 Squared Unit Frames
  2. 126 Phantom Buffs & Debuffs, Development...
  3. 114 Pure Unit Frames
  4. 90 TokenMachine PvP, and Bags & Inventory
  5. 74 HealGrid Unit Frames