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,103
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 07-19-10, 04:15 AM  
Morsker
A Fallenroot Satyr
 
Morsker's Avatar
AddOn Author - Click to view AddOns

Forum posts: 22
File comments: 89
Uploads: 8
Re: Totem Action Bar Support

I wasn't aware of the max-rank feature. Polymorph(Rabbit) restores correctly if I disable this feature.

/abs rank has a typo in its chat message, saying "disabeld" instead of "disabled".

Also it would be nice if the max-rank feature didn't try to change ranks that aren't numbers, since it only makes sense for numbers. It's fairly minor though, especially since Cata will make the issue moot.
Report comment to moderator  
Reply With Quote
Unread 06-02-10, 11:25 PM  
suicidalkatt
A Rage Talon Dragon Guard
 
suicidalkatt's Avatar
AddOn Author - Click to view AddOns

Forum posts: 331
File comments: 1467
Uploads: 50
Totem Action Bar Support

I changed lines 63 and 238 from "1,120" to "1,144" this seems to allow the saving and placing of shaman totem multi-cast action bars.

http://www.wowwiki.com/API_GetMultiCastTotemSpells
Report comment to moderator  
Reply With Quote
Unread 05-23-10, 06:45 PM  
Morsker
A Fallenroot Satyr
 
Morsker's Avatar
AddOn Author - Click to view AddOns

Forum posts: 22
File comments: 89
Uploads: 8
This seems to get confused by the "rank" of alternate Polymorph spells like Polymorph(Rabbit) vs. Polymorph(Pig). When I try to save my action bars with the Rabbit version, it restores with the Pig version.

Also I just want to say how useful this mod is. Thanks!
Report comment to moderator  
Reply With Quote
Unread 05-17-10, 10:58 PM  
trclocke
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 108
Uploads: 1
Just wanted to post a quick thanks. I'm constantly swapping between three specs, and ABS makes things nice and painless
Report comment to moderator  
Reply With Quote
Unread 05-09-10, 04:04 AM  
PingHansen
Guest

Join Date: Not Yet
Forum posts: 0
File comments: 0
Uploads: 0
Originally posted by Salerix
Has keybinding support been added to this addon yet? Or is there an addon that I could get to save my keybindings already in place and change them with the option of restoring them to how they were previously?
I just noticed Respec Bind Saver
Report comment to moderator  
Edit/Delete Message Reply With Quote
Unread 05-09-10, 02:53 AM  
Inoe
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
I have a problem with this addons !

It worked perfectly for my priest but bugged for every class that has different bars (warrior / rogue), i get disconnected when i type /abs restore xxx, even after enabling /abs count.

Any ideas ?
Report comment to moderator  
Reply With Quote
Unread 02-15-10, 01:49 PM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
Sure
Report comment to moderator  
Reply With Quote
Unread 02-13-10, 06:47 PM  
castdead
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 3
Uploads: 1
You could disable the sound temporarily while you handle restoring the action bar positions to get rid of the "awkward for some" sound.

Code:
	-- Save current sound setting
	local soundcvar = GetCVar("Sound_EnableAllSound")
	-- Turn sound off
	SetCVar("Sound_EnableAllSound", 0)
	
	for i=1, 120 do
		local type, id = GetActionInfo(i)
		
		-- Clear the current spot
		if( id or type ) then
			PickupAction(i)
			ClearCursor()
		end
		
		-- Restore this spot
		if( set[i] ) then
			self:RestoreAction(i, string.split("|", set[i]))
		end
	end
	
	-- Restore old sound setting
	SetCVar("Sound_EnableAllSound", soundcvar)
Report comment to moderator  
Reply With Quote
Unread 01-16-10, 10:21 PM  
Joschasa
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 20
Uploads: 2
Originally posted by Shadowed
You probably never updated, that was fixed already but you have to resave profiles for it to work.
Oh. Yes, you're right
Thanks
Report comment to moderator  
Reply With Quote
Unread 01-14-10, 12:00 PM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
You probably never updated, that was fixed already but you have to resave profiles for it to work.
Report comment to moderator  
Reply With Quote
Unread 01-14-10, 11:51 AM  
Joschasa
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 20
Uploads: 2
I use the Ingame Equipment Manager, having the Sets on my Bars, so i can easily change my gear.
It would be nice, if ABS would save & restore these, too.
Report comment to moderator  
Reply With Quote
Unread 01-01-10, 05:34 PM  
Salerix
A Murloc Raider
 
Salerix's Avatar

Forum posts: 6
File comments: 16
Uploads: 0
Has keybinding support been added to this addon yet? Or is there an addon that I could get to save my keybindings already in place and change them with the option of restoring them to how they were previously?
__________________
Report comment to moderator  
Reply With Quote
Unread 12-05-09, 08:26 AM  
AnrDaemon
A Chromatic Dragonspawn
AddOn Author - Click to view AddOns

Forum posts: 156
File comments: 2231
Uploads: 5
Originally posted by rouki
Hello
i had made 3 macro buttons for my druid
resto bear cat
but doesn't changes the buttons when i am in combat
any ideas?
Get out of combat. It's the only possibility.
Blizzard does not allow to shuffle buttons in combat.
If you REALLY want to change more than one bar at a time when shifting forms, use Bartender4 (for example)
Report comment to moderator  
Reply With Quote
Unread 12-05-09, 04:23 AM  
rouki
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Hello
i had made 3 macro buttons for my druid
resto bear cat
but doesn't changes the buttons when i am in combat
any ideas?
Report comment to moderator  
Reply With Quote
Unread 11-05-09, 09:40 PM  
ElphieRAWR
A Deviate Faerie Dragon
 
ElphieRAWR's Avatar
AddOn Author - Click to view AddOns

Forum posts: 10
File comments: 36
Uploads: 7
Thumbs up <3<3<3

I love Action Bar Saver.
I play a mage, and as such, on all of my pve specs I use the same buttons setup [minus erm.. like a 5 button difference]. I've always hated having to move all the buttons around on my dual spec to match my main spec, and if I don't do it, I get lost. This has saved me at least 3 hours [altogether, counting all the respecs/bar placements/etc I've done since I've downloaded it] of work getting my specs to match.
I also have a separate save for my pvp specs.

<3<3<3 -Elphie.
__________________
-- Elphie --
[Matanya of Arthas]
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.