Download
(12Kb)
Download
Updated: 11-26-14 01:28 AM
Compatibility:
Warlords of Draenor (6.0.3)
Warlords of Draenor Pre-Patch (6.0.2)
Updated:11-26-14 01:28 AM
Created:unknown
Downloads:129,038
Favorites:466
MD5:

Action Bar Saver  Popular! (More than 5000 hits)

Version: v2.3.3
by: Shadowed [More]

Quick little mod, allows you to setup different profiles for your action bars. Mainly this is for hybrid classes that want to be able to respec without spending 10-20 minutes setting their action bars up. All you do is type /abs save <name> and it'll save the location of all your spells, macros and items.

For example, if you're currently a Feral Druid you can type /abs save feral then you can respec to Resto and setup your bars, then type /abs save resto once you go respec back to Feral you can then train all your spells again and type /abs restore feral and you'll get your feral setup without all the work of actually finding where you placed things.

Works with any custom interface like Bongos provided you're not using more then the standard 120 action buttons, ones that provided features to go past 120 will cause only the standard 120 to be saved/restored. This isn't a bug however, just a limitation in the WoW API

tag v2.3.3
ad89ad5bf9ece06e5b6ff53859c333241612ffa6
Shadowed <[email protected]>
2014-11-25 23:26:55 -0800

Tagging as release v2.3.3

--------------------

Shadowed:
- cleaned up files
- Updated for WoD

tag v2.3.2
238766229e5e521568f4f7c4d72348ff2f87a167
Shadowed <[email protected]>
2012-09-13 12:57:39 -0700

Tagging as release 2.3.2

--------------------

Shadowed:
- Permissions
- Fixed spell restoring (Thanks Morsker)

tag v2.3.1
e2dd8290c6d4b2e11c8d4673c396c408922b6db4
Shadowed <[email protected]>
2012-08-27 09:39:48 -0700

Tagging as release 2.3.1

--------------------

Shadowed:
- Given I'll be pushing 5.0.4 versions in the next day, I'll just bump TOC now
- Fixed macro handling (Thanks nebula169)
Optional Files (0)


Post A Reply Comment Options
Unread 09-27-18, 02:40 PM  
AnrDaemon
A Chromatic Dragonspawn
AddOn Author - Click to view AddOns

Forum posts: 156
File comments: 2231
Uploads: 5
Just like any other addon settings.
Report comment to moderator  
Reply With Quote
Unread 09-27-18, 02:24 PM  
ballistics1142
A Deviate Faerie Dragon

Forum posts: 14
File comments: 1
Uploads: 0
Lightbulb Multiple Accounts

Hey,

Is it possible to use this addons saved profile from another account?

For example across multiple accounts such as a multibox team?

Saved Mage profile from Acc #1 >>>>>>>>> Load onto mage from Acc #2

Regards Ballistics1142
Report comment to moderator  
Reply With Quote
Unread 07-26-18, 11:12 PM  
AnrDaemon
A Chromatic Dragonspawn
AddOn Author - Click to view AddOns

Forum posts: 156
File comments: 2231
Uploads: 5
Re: Not working in 8.0

Do you have latest patches?
It works for me w/o any problem.
Report comment to moderator  
Reply With Quote
Unread 07-24-18, 05:32 AM  
Machinelf
A Murloc Raider

Forum posts: 4
File comments: 23
Uploads: 0
Not working in 8.0

Shadowed, I LOVE YOU! Thank you not just for this, but for everythinggggg,
It's been a great run. I loved this addon, did so much with it like make Opie rings.
It has squeaked along for several expacs, but 8.0 killed it.
Want proof?
Make a nice setup.
Type /abs save Sample
now..
/abs restore Sample

All the buttons disappear... RIP
Mass automation of alts just took a major step backwards

I've kept this addon going with band aids and rubber bands, but today i realized it hasn't been updated in 4 years. Time to move on to Action Bar Profiles, which is much more rigorously updated.
Last edited by Machinelf : 07-24-18 at 07:10 AM.
Report comment to moderator  
Reply With Quote
Unread 11-29-14, 11:17 AM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
I was lazy
Report comment to moderator  
Reply With Quote
Unread 11-28-14, 05:38 PM  
suicidalkatt
A Rage Talon Dragon Guard
 
suicidalkatt's Avatar
AddOn Author - Click to view AddOns

Forum posts: 331
File comments: 1467
Uploads: 50
Originally Posted by AnrDaemon
Does this make sense to anyone? Because to me, it makes absolutely no sense. Defining the same variable twice in a row with different values?
I think the issue here is two people trying to implement a fix. The new limits for character and global macros changed. I'll look into this later and I'll add an additional download to the page with a proper fix should shadowed not implement one themselves.
Report comment to moderator  
Reply With Quote
Unread 11-28-14, 04:54 PM  
AnrDaemon
A Chromatic Dragonspawn
AddOn Author - Click to view AddOns

Forum posts: 156
File comments: 2231
Uploads: 5
diff Code:
  1. @@ -9,13 +9,17 @@
  2.  local restoreErrors, spellCache, macroCache, macroNameCache, highestRanks = {}, {}, {}, {}, {}
  3.  local playerClass
  4.  
  5. -local MAX_CHAR_MACROS = MAX_CHARACTER_MACROS
  6. -local MAX_GLOBAL_MACROS = MAX_ACCOUNT_MACROS
  7. -local MAX_MACROS = MAX_CHAR_MACROS + MAX_GLOBAL_MACROS
  8. +local MAX_MACROS = 54
  9. +local MAX_CHAR_MACROS = 18
  10. +local MAX_GLOBAL_MACROS = 36
  11.  local MAX_ACTION_BUTTONS = 144
  12.  local POSSESSION_START = 121
  13.  local POSSESSION_END = 132
  14.  
  15. +local MAX_CHAR_MACROS = MAX_CHARACTER_MACROS
  16. +local MAX_GLOBAL_MACROS = MAX_ACCOUNT_MACROS
  17. +local MAX_MACROS = MAX_CHAR_MACROS + MAX_GLOBAL_MACROS
  18. +
  19.  function ABS:OnInitialize()
  20.     local defaults = {
  21.         macro = false,

Does this make sense to anyone? Because to me, it makes absolutely no sense. Defining the same variable twice in a row with different values?
Report comment to moderator  
Reply With Quote
Unread 11-04-14, 01:00 AM  
yaparadox
A Defias Bandit

Forum posts: 3
File comments: 1
Uploads: 0
Post For Serozlol

1. Open ActionBarSaver.lua
2. Search text
Code:
local MAX_MACROS = 54
local MAX_CHAR_MACROS = 18
local MAX_GLOBAL_MACROS = 36
local MAX_ACTION_BUTTONS = 144
local POSSESSION_START = 121
local POSSESSION_END = 132
3. Add after
Code:
local MAX_CHAR_MACROS = MAX_CHARACTER_MACROS
local MAX_GLOBAL_MACROS = MAX_ACCOUNT_MACROS
local MAX_MACROS = MAX_CHAR_MACROS + MAX_GLOBAL_MACROS
4. Result
local MAX_MACROS = 54
local MAX_CHAR_MACROS = 18
local MAX_GLOBAL_MACROS = 36
local MAX_ACTION_BUTTONS = 144
local POSSESSION_START = 121
local POSSESSION_END = 132

local MAX_CHAR_MACROS = MAX_CHARACTER_MACROS
local MAX_GLOBAL_MACROS = MAX_ACCOUNT_MACROS
local MAX_MACROS = MAX_CHAR_MACROS + MAX_GLOBAL_MACROS
Worked for me
Report comment to moderator  
Reply With Quote
Unread 10-18-14, 04:48 PM  
Serozlol
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
I have no idea what lines you want me to replace, can you explain it to noobs or upload your LUA file?

Thanks.
Report comment to moderator  
Reply With Quote
Unread 10-18-14, 01:44 PM  
AnrDaemon
A Chromatic Dragonspawn
AddOn Author - Click to view AddOns

Forum posts: 156
File comments: 2231
Uploads: 5
Ever tried to read some posts before making a new one?
The fix for ABS just two posts below yours.
Report comment to moderator  
Reply With Quote
Unread 10-18-14, 01:39 PM  
Xancepants
A Deviate Faerie Dragon

Forum posts: 17
File comments: 3
Uploads: 0
Please Update this addon for 6.0 WoD!

After the 6.0 patch, either the addon "MacroBank" or "Action Bar Saver" has stopped working. I'm still unsure which addon, because whenever I try to reload a profile with Action Bar Saver on any character, it fails to load any of the character-specific macros, but some of the general macros tab seem to load on to the action bar. So I'm not sure if its Action Bar Saver not properly restoring macros onto the action bars, or if its Macro Bank having issues that cause Action Bar Saver to not recognize the macros. It gives me an error saying "failed to load macro #2 into slot #2. The macro appears to have been deleted" for every macro, #2, #3, #4 etc. I've tried re-installing both addons, re-saving/re-doing all the macros as well as setting up action bars, but it always gives the same error. Any word of an update for either of these addons? Or perhaps alternative addons just like these ones that do work for 6.0? Thank you.
Report comment to moderator  
Reply With Quote
Unread 10-18-14, 06:01 AM  
jb8893
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
Worked! I had the order wrong. Thank you!!!!
Report comment to moderator  
Reply With Quote
Unread 10-16-14, 11:25 AM  
Flowsion
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Originally Posted by sezz
Restoring buttons containing macros doesn't work in WoD.

The number of available macros has been increased, quick fix:

Lua Code:
  1. local MAX_CHAR_MACROS = MAX_CHARACTER_MACROS
  2. local MAX_GLOBAL_MACROS = MAX_ACCOUNT_MACROS
  3. local MAX_MACROS = MAX_CHAR_MACROS + MAX_GLOBAL_MACROS
Thanks! =)
Last edited by Flowsion : 10-16-14 at 11:25 AM.
Report comment to moderator  
Reply With Quote
Unread 10-15-14, 12:32 PM  
jb8893
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
Hmm, I tried that, but /ABS will still not work. Any help would be greatly appreciated.
Report comment to moderator  
Reply With Quote
Unread 10-13-14, 08:22 AM  
sezz
A Chromatic Dragonspawn
AddOn Author - Click to view AddOns

Forum posts: 158
File comments: 13
Uploads: 1
Originally Posted by AnrDaemon
What exactly needs to be updated?
Restoring buttons containing macros doesn't work in WoD.

The number of available macros has been increased, quick fix:

Lua Code:
  1. local MAX_CHAR_MACROS = MAX_CHARACTER_MACROS
  2. local MAX_GLOBAL_MACROS = MAX_ACCOUNT_MACROS
  3. local MAX_MACROS = MAX_CHAR_MACROS + MAX_GLOBAL_MACROS
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.