Addon Info.
Change Log
Comments (17)
  Category: Priest
Addon Information
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
Cirk's Portal Bug Reports Feature Requests
Author:
Version:
2.3.0
Date:
11-16-2007 06:46 PM
Size:
5.10 Kb
Downloads:
6,815
Favorites:
37
MD5:
Pictures
Shadowform button on the shapeshift bar when you are in normal form
Shadowform button on the shapeshift bar when you are already in shadowform
Cirk's Shadowshift   Popular!
Shadowshift has been replaced by Aspects, which supports hunters and shamans in addition to shadow priests, and is a clean, legacy free, v2.4 compatible rewrite. So, please delete your Shadowshift addon and instead use Aspects for all your Shadowform needs!



Do you play a shadow priest? Do you use Shadowform? If so, you might be interested in this Addon! Shadowshift places the Shadowform spell button onto the shapeshift bar, just like Stealth for a Rogue, or like the Druid's Bear, Cat, and other shapes, allowing you to use it just like it was a real shapeshifting skill. Free up an action button slot today!

Shadowshift can be easily enabled and disabled on a per character basis, and will remember the last setting until you change it again. And if you aren't playing a priest, or your priest doesn't have Shadowform, then Shadowshift will do nothing, so you can safely leave it enabled in your Addon's menu.


Shadowshift's slash commands
Shadowshift supports the following slash commands:

/shadowshift help shows these options.
/shadowshift on enables Shadowshift for your current character (the default if you are playing a priest with the Shadowform talent).
/shadowshift off disables Shadowshift for your current character.
/shadowshift status shows you whether Shadowshift is enabled or not currently.

Which hotkey will it use?
For Windows, the default hotkey for the first shapeshift action is CTRL-F1.

You can change this easily under the Key Bindings option of the main menu. Look for the Special Action Button 1 entry and change it to whatever you'd like. However note that this key is the same one used for Rogue's Stealth and Druid's Bear form (and for a Paladin's Devotion Aura) so be mindful of that if you also play any of those classes, or use the per-character settings of the Bindings screen to set it for each character separately.


Notes
If you are using Blizzard's default UI layout and are using tabbed chat frames, you might find that you need to move your chat window up a bit to fit the shapeshift bar in under the chat frame. You can do this by right clicking on the General tab at the top of the chat frame, selecting Unlock, then left-clicking and dragging on the General tab to move the chat windows where they won't be in the way. After you are done, right-click on the General tab again and select Lock to relock your windows again!

If you can't see the General tab at the top of your chat window when you mouse over the chat window, your chat windows might have been locked from being changed. To unlock them, open the Main menu (via the ESC key) and select Interface, and at the bottom clear the Lock Chat Settings option. After you have moved your chat frame, you can relock them again if you want.


Change history
2.3.0
  • Updated code for the 2.3 client changes.
  • Minor code cleanup.
2.1.0
  • Ported Shadowshift to the WoW 2.1 client, and cleaned up the code some. Functionality is now identical to its previous incarnations!


Enjoy!
-- Cirk of Doomhammer
  Change Log - Cirk's Shadowshift
16/4/08 - Shadowshift made obsolete by Aspects
  Comments - Cirk's Shadowshift
Post A Reply
Author Comments Comment Options
Old 04-15-2008, 05:49 PM  
Cirk
A Cobalt Mageweaver
 
Cirk's Avatar
Interface Author - Click to view interfaces

Forum posts: 219
File comments: 78
Uploads: 20
Re: Re: update 2.4.1

Aspects is now available for download, and provides all the functionality that Shadowshift did along with support for hunters and shamans. Please delete your old Shadowshift addon and replace it with Aspects!


Thanks
-- Cirk
__________________
Cirk's Addons
Cirk is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-15-2008, 08:35 AM  
Cirk
A Cobalt Mageweaver
 
Cirk's Avatar
Interface Author - Click to view interfaces

Forum posts: 219
File comments: 78
Uploads: 20
Re: update 2.4.1

Quote:
Originally posted by Venomi
pilzz gif us a uptade for this addon, i'm missing it allready
Sorry all for the long delay - with the most recent 2.4 changes I've been working on incorporating Shadowshift into a combined Priest/Shaman/Hunter addon which will be smaller and cleaner than Shadowshift, but will still give you the same functionality as you have (had) with Shadowshift. I'm pretty happy with it now and will be uploading it shortly. Will update Shadowshift's description as soon as that is done.

-- Cirk
__________________
Cirk's Addons
Cirk is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-02-2008, 03:57 AM  
Venomi
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
update 2.4.1

pilzz gif us a uptade for this addon, i'm missing it allready
__________________
"as a priest u supposed to be heeling.."

"ye im bandagin as much as i can, stop taking dmg so u will get heeeled!!"

"stupid shadow priest, kick his ass from raid"
Venomi is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 01-05-2008, 05:32 PM  
Dridzt
A Cobalt Mageweaver
Interface Author - Click to view interfaces

Forum posts: 223
File comments: 321
Uploads: 31
If you don't have a problem editing .lua files the following changes will put a band-aid on the problem.

Note: This is not a fix for the underlying problem (taint), only a workaround for the symptom (losing the shadowform button after using mind-control).

1. Open Shadowshift.lua in a text editor.
2. Find function Shadowshift.OnLoad()
Scroll down a bit you'll find a bunch of
_thisFrame:RegisterEvent(
lines.
3. Put _thisFrame:RegisterEvent("PLAYER_REGEN_ENABLED");
under the ones already present.
4. Next find function Shadowshift.OnEvent(event)
You'll see a bunch of
elseif (event ==
5. Directly above the last one that reads
elseif (event == "PLAYER_LOGOUT") then
paste the following block of code.
Code:
elseif (event == "PLAYER_REGEN_ENABLED") then --- temp workaround for mind-control
	if (_enabled == 1) then
		if ShapeshiftBarFrame and not ShapeshiftBarFrame:IsVisible() then
			ShapeshiftBarFrame:Show(); --- temp workaround for mind-control
		end
	end
6. Save the file and reload your game.

What this workaround will do is un-hide the shadowshift button when you exit combat if the addon is enabled and the button is not visible.

As usual, consider this totally unsupported like any user provided "fix".
I found it convenient until Cirk has a chance to look at the problem so I'm sharing with other users.

Last edited by Dridzt : 01-15-2008 at 07:43 PM.
Dridzt is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-29-2007, 09:16 PM  
nukez
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
idd I noticed that problem too .
thank you Dridzt for the temp fix
nukez is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-28-2007, 09:50 AM  
Dridzt
A Cobalt Mageweaver
Interface Author - Click to view interfaces

Forum posts: 223
File comments: 321
Uploads: 31
ShadowShift 2.3.0, enGB wow client 2.3.

The ShadowShift button disappears due to tainting after you mind-control something.
I've posted on discussion page and filed a more detailed bug report under ShadowShift.

A temporary workaround to get your shadowshift button back when that happens
(without having to reloadUI) is typing this command at the chat when you get out of combat:

/script ShapeshiftBarFrame:Show();

(Or making a macro and putting the command there if you want a button doing the same)

Last edited by Dridzt : 12-28-2007 at 09:52 AM.
Dridzt is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-18-2007, 03:25 PM  
bincebear
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
Thank you!
bincebear is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-17-2007, 07:00 AM  
nukez
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
THANK YOU !
What was the problem ?
nukez is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-16-2007, 06:47 PM  
Cirk
A Cobalt Mageweaver
 
Cirk's Avatar
Interface Author - Click to view interfaces

Forum posts: 219
File comments: 78
Uploads: 20
Shadowshift v2.3.0

Now fixed for patch v2.3
__________________
Cirk's Addons
Cirk is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-16-2007, 08:05 AM  
nukez
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
common I just love this add-on !
nukez is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-15-2007, 10:05 AM  
nukez
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
indeed is not working . pls fix it

I tried to fix but I cant do it
nukez is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-15-2007, 03:58 AM  
Cirk
A Cobalt Mageweaver
 
Cirk's Avatar
Interface Author - Click to view interfaces

Forum posts: 219
File comments: 78
Uploads: 20
Hi bincebear, yeah, sorry 'bout that. I have a new mod that I'm working on that replaces Shadowshift so I'd not looked at it for 2.3 compatibility. I'll see if I can get a fix up shortly until I release the new mod...

-- Cirk
__________________
Cirk's Addons
Cirk is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-14-2007, 11:33 PM  
bincebear
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
Unhappy 2.3

Doesn't work with 2.3
bincebear is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 06-05-2007, 06:09 AM  
Cirk
A Cobalt Mageweaver
 
Cirk's Avatar
Interface Author - Click to view interfaces

Forum posts: 219
File comments: 78
Uploads: 20
Quote:
Originally posted by Geboran
Quick question though: when you do use the shadowform ability, does it change the action bar automatically? I currently use a macro that changes the bar for me when I switch in and out of shadowform.
Blizzard added this feature as part of the 2.1 patch, providing a special action bar that only shows when you are in shadowform, just as a rogue has a special stealth action bar that only shows when they are in stealth. (You may not be seeing this because of your macro).

Cheers
-- Cirk
__________________
Cirk's Addons
Cirk is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-31-2007, 12:06 PM  
Geboran
A Rage Talon Dragon Guard

Forum posts: 308
File comments: 43
Uploads: 0
I've not had a chance to play with this yet, but plan on doing so tonight.

Quick question though: when you do use the shadowform ability, does it change the action bar automatically? I currently use a macro that changes the bar for me when I switch in and out of shadowform.

Freeing up an actionbar slot is always a good thing.
__________________
------------------------------------------
Geboran - Level 70 Paladin
<Evolution>
Stormreaver (US), Alliance
Geboran is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:



The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOUI | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


MMOInterface.com Copyright ©2008
World of Warcraft is a registered Trademark of Blizzard Entertainment.
vBulletin - Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.