Download
(9 Kb)
Download
Updated: 10/02/18 01:55 PM
Pictures
File Info
Compatibility:
Murkmire (4.2)
Wolfhunter (4.1)
Summerset (4.0)
Dragon Bones (3.3)
Clockwork City (3.2)
Updated:10/02/18 01:55 PM
Created:03/05/15 09:33 AM
Monthly downloads:119
Total downloads:201,686
Favorites:228
MD5:
SWAPS Continued  Popular! (More than 5000 hits)
Swap Skills

--------------------------------------------------------------------
Original Code By: @HulkSmashWarrior
Continued, updated and fixed by: Garkin
minor code assist and updated by dOpiate
corrections by NathanaelTheOne
and now kept by Ayantir (and dOpiate)
Random fixes by Calia1120

This AddOn allows you to save and manage your action bars into presets.
You can manage all your presets via the Skills Window. Save time and countless hours by toggling between Tank modes, DPS modes, PVP setups, Healing, AOE Builds, etc. You name it!

Saving a Preset:
After you setup your action bar, click on the New Preset icon located in the top right. Give your preset a name, select an icon, and hit save. Your action bar skills will be saved into a preset and you can be loaded onto your hotbar anytime. (Must be out of combat)

Loading a Preset:
To load a preset of skills you made, open your Skills Window, scroll through the list of presets until you find the one you want. Click the Preset Name and you are all set.

Key Bindings
NEW! Bind presets to your favorite keyboard shortcut command.

Edit/update a Preset:
Click the settings icon next to the Preset Name. You can change the name, icon, and refresh the skill abilities to import your current hotbar.
2.7.4 (Calia)
======
- API bump for 100024 (Murkmire)
- Keybind fix in place for live

2.7.3 (Calia)
======
- API bump for 100023 (Summerset PTS)
- Changed keybind display names for better sorting per request

2.7.2b
======
- API bump

2.7.2a
======
- API bump


2.7.2
======
- API bump

2.7.1
======
- API bump
- Fixes added from cutlery and SirTwist

2.7a
======
- API bump

2.7 (Ayantir)
======
- Addon is now name change proof
- First part of a new code clean

2.6.4
======
- UI resized and slightly moved the UI for SWAPS to make it match the game's skills window added (thanks to calia1120)

2.6.3
======
- API bump

2.6.2
======
- API bump

2.6.1
======
- API bump & code clean
- Fix for "Fire ring" in french client with fire staff

100315 - API bump
090115 - API bump
071015 - Fixed some issues with destruction staff abilities.
- Fixed code
030915 - Fixed an issue with destruction staff abilities.
031015 - Fixed null variable issue
032215 - Changes are:
- fixed overlapping icons in skill presets
- added 5 new kebindings
- changed list of textures in iconPak.lua
- removed redundant files
032715 - Minor redundant code removed
040815 - Skills are replaced only when needed
050815 - Skills are replaced always now until bug or fix is in place. Should work 100%.
Optional Files (0)


Archived Files (22)
File Name
Version
Size
Uploader
Date
2.7.3
9kB
calia1120
05/07/18 10:42 PM
2.7.2b
9kB
dopiate
10/23/17 08:14 AM
2.7.2a
9kB
dopiate
08/22/17 06:44 PM
2.7.2
9kB
dopiate
05/22/17 08:39 AM
2.7.1
9kB
dopiate
02/15/17 08:11 PM
2.7a
9kB
dopiate
10/05/16 05:04 PM
2.7
9kB
Ayantir
08/05/16 04:08 AM
2.6.4
8kB
dopiate
08/01/16 02:15 AM
2.6.3
8kB
dopiate
07/30/16 04:12 PM
2.6.2
8kB
dopiate
05/31/16 07:33 PM
2.6.1
8kB
Ayantir
03/11/16 09:48 AM
2.6
8kB
Ayantir
03/11/16 09:42 AM
2.5
8kB
dopiate
11/03/15 05:01 PM
2.4
8kB
Ayantir
09/01/15 03:54 AM
2.3.4
8kB
dopiate
07/10/15 02:03 AM
2.3.3
8kB
dopiate
05/08/15 10:54 AM
2.3.2
8kB
Garkin
04/07/15 06:52 PM
2.3.1
8kB
dopiate
03/27/15 07:46 AM
2.3.0
8kB
dopiate
03/22/15 02:42 PM
2.2.3
12kB
dopiate
03/10/15 07:59 AM
2.2.2
12kB
dopiate
03/09/15 08:16 AM
2.2.1
11kB
dopiate
03/05/15 09:33 AM


Post A Reply Comment Options
Unread 12/30/23, 12:06 AM  
billi

Forum posts: 0
File comments: 10
Uploads: 0
Any plans for a fix or any working alternative? I really loved that addon back when it still worked.
Simply having a button to hide/show it would already be enough
Report comment to moderator  
Reply With Quote
Unread 05/06/22, 01:56 AM  
Baertram
Super Moderator
 
Baertram's Avatar
ESOUI Super Moderator
AddOn Author - Click to view AddOns

Forum posts: 4912
File comments: 5988
Uploads: 78
Originally Posted by Marazota
PTS error

TopLevelControl Swaps cannot be parented to any control but GuiRoot.
The error says what the problem is. The control (top level) Swaps cnanot be parented to anythign else than GuiRoot.
So this line 349 in swaps.lua is causing the problem most probably:
SWAPS.UI:SetParent(ZO_Skills)

It needs to be commented
--SWAPS.UI:SetParent(ZO_Skills)

and somehow the Swaps control needs to be "anchored" to ZO_Skills only

e.g.
SWAPS.UI:SetAnchor(TOPLEFT, ZO_Skills, TOPLEFT, 0, 0)
-> You can play around with the position here by changing the offsets x, y at the end to negative (more left, more top) or positive (more right, more down) values.
Basically the anchor says: Anchor my control Swaps' TOPLEFT edge to the TOPLEFT edge of the the control ZO_Skills.
You can also use TOPRIGHT or CENTER or LEFT or RIGHT or BOTTOM or BOTTOMLEFT or BOTTOMRIGHT
https://wiki.esoui.com/Control:SetAnchor

and shown/hidden with the skills.
Currently it might be not visible at all, or always visible even if skills are not shown. This happens because of the changed parent.

So there needs to be added some scene hide/shown code most probably and done testing, so no easy fix afai can see.
Sorry, not working on this. Maybe someone else is interested.
Report comment to moderator  
Reply With Quote
Unread 05/06/22, 01:45 AM  
Sharlikran
 
Sharlikran's Avatar
AddOn Author - Click to view AddOns

Forum posts: 626
File comments: 2002
Uploads: 15
Originally Posted by Marazota
PTS error

TopLevelControl Swaps cannot be parented to any control but GuiRoot.
ZOS Completely overhauled tier, draw level, and so on for the UI. Any mod with that error is permanently broken from a user standpoint. Meaning there is no quick fix workaround or some other mod to install to sorta fix it. The mod and mods like it are simply busted unless the author updates it.
Report comment to moderator  
Reply With Quote
Unread 05/06/22, 01:35 AM  
Marazota
AddOn Author - Click to view AddOns

Forum posts: 257
File comments: 1517
Uploads: 2
PTS error

TopLevelControl Swaps cannot be parented to any control but GuiRoot.
Report comment to moderator  
Reply With Quote
Unread 05/12/21, 12:16 PM  
Marazota
AddOn Author - Click to view AddOns

Forum posts: 257
File comments: 1517
Uploads: 2
anyone have a plans to update it for Companion skills in Blackwood?
Report comment to moderator  
Reply With Quote
Unread 03/22/21, 06:27 AM  
kad
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 50
Uploads: 1
For anyone interested, this still seems to work with the current version (Flames of Ambition).

For the author, THANK YOU! This is exactly what I needed, I didn't need or want one of the other "switch everything including the kitchen sink" addons, just something to switch a couple of skills.

-K
Last edited by kad : 03/22/21 at 06:28 AM.
Report comment to moderator  
Reply With Quote
Unread 10/07/18, 06:31 PM  
calia1120
 
calia1120's Avatar
AddOn Author - Click to view AddOns

Forum posts: 62
File comments: 232
Uploads: 5
Re: SWAPS is WORKING

*Nods*

I'm currently madly coding updates for Wykkyd, MailR and my own stuff for the Murkmire release.

Originally Posted by dopiate
Huge thanks to calia1120 who got this fixed at my (hopefully) polite promoting.


calia1120 is big contributor and from one author to another, I wanted to publicly thank her.


/bow respectfully

-d
Report comment to moderator  
Reply With Quote
Unread 10/05/18, 02:53 AM  
dopiate
AddOn Author - Click to view AddOns

Forum posts: 142
File comments: 677
Uploads: 11
SWAPS is WORKING

Huge thanks to calia1120 who got this fixed at my (hopefully) polite promoting.


calia1120 is big contributor and from one author to another, I wanted to publicly thank her.


/bow respectfully

-d
Last edited by dopiate : 10/05/18 at 02:32 PM.
Report comment to moderator  
Reply With Quote
Unread 05/23/18, 07:06 PM  
Archongamer

Forum posts: 3
File comments: 74
Uploads: 0
This addon no longer seems to keep any of my changes.

Thoughts?
Thanks
Report comment to moderator  
Reply With Quote
Unread 05/02/18, 10:59 AM  
calia1120
 
calia1120's Avatar
AddOn Author - Click to view AddOns

Forum posts: 62
File comments: 232
Uploads: 5
Better? Checking compatibility for PTS, then I'll get it packed and uploaded.

Report comment to moderator  
Reply With Quote
Unread 05/02/18, 10:50 AM  
calia1120
 
calia1120's Avatar
AddOn Author - Click to view AddOns

Forum posts: 62
File comments: 232
Uploads: 5
Originally Posted by Marazota
anyone know how to fix this dis-order?

I can take a look at it. It's alphabetical at the moment.
Last edited by calia1120 : 05/02/18 at 10:52 AM.
Report comment to moderator  
Reply With Quote
Unread 04/07/18, 07:30 AM  
pepperpep
 
pepperpep's Avatar

Forum posts: 0
File comments: 8
Uploads: 0
You did a great job. This addon is absolutely the best one to swap quickly the siklls; I'm so sad you quit it
Report comment to moderator  
Reply With Quote
Unread 03/01/18, 04:08 AM  
Marazota
AddOn Author - Click to view AddOns

Forum posts: 257
File comments: 1517
Uploads: 2
anyone know how to fix this dis-order?

Report comment to moderator  
Reply With Quote
Unread 02/14/18, 03:24 PM  
iFedix
 
iFedix's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 240
Uploads: 1
Issues with Dragon Bones update

Thanks for the job in this addon but with last update the addon shows warden skills in all my presets and does not work D: why? any solution? I dont want to create again all the presets
Report comment to moderator  
Reply With Quote
Unread 09/25/17, 08:22 PM  
dopiate
AddOn Author - Click to view AddOns

Forum posts: 142
File comments: 677
Uploads: 11
Re: Re: Think before you dismiss hundreds of hours or work!

Originally Posted by Dolgubon
Originally Posted by dopiate

All other authors listed either no longer play/code for ESO.
Ayantir still codes for ESO, and I believe Calia is still playing.
You might be right but neither one is going add any new features.

The original author no longer plays anymore.(that I am sure of)

I was just trying to answer the question.

Unless a new motivated author comes along, I honestly don't think this addon will change much.

I would rater be honest, set realistic expectations.

I just saw an addon that does skills + gear here ESOUI

I you like SWAPS (and I do) you should expect it to stay updated and bug free.

-d
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: