• World of Warcraft Addons
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

StanceSets V3.1 Fan Update

  Download the Curse Client

Project Updated:
Files Updated: Thu, Apr 16 2009
Supports Game Version: 3.1.0
Category: Paladin, Druid, Hunter, Rogue, and Warrior
Tags:

[Edit Tags]

Project Manager: Vorkosigan-ger
Additional Authors: No additional authors
Current Version: Stance Sets 3+1 v3.4
License: All Rights Reserved
Avg Daily DL (last 30 days): 101
Downloads Total: 141,743
Favorites: 189
Comments: 58
  • About StanceSets V3.1 Fan Update
  •  
  • Downloads (7)
  •  
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  
  StanceSets V3.1 Fan Update Stance Sets 3+1 v3.4 Release 3.1.0 9,870 4/16/2009
  StanceSets V3.1 Fan Update Stance Sets 3+1 v3.3 Release 3.0.9 7,169 3/30/2009
  StanceSets V3.1 Fan Update Stance Sets 3+1 v3.2 Release 3.0.8 8,262 3/1/2009
  StanceSets V3.1 Fan Update Stance Sets 3+1 v3.1 Release 3.0.3 16,605 12/31/2008
  StanceSets V3.1 Fan Update Stance Sets 3+1 v3.0 Release 3.0.2 24,997 10/16/2008
Advertisement
  • Screenshots (1)
  •  
  • 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.
  • What is slash command to icon to reappear. StanceSets V3.1

    Reply Report Permalink
  • Hi,

    I hope I correctly understood you.
    /stancesets or define a key binding to call the config window

    Reply Report Permalink
  • Snapte said 

    I'm having the same problem as neuj has (4 posts under this one).

    When I switch to Shadow dance, nothing happens. The weapons I have put in the slots won't equip. The stealth and unstealth stances work fine.

    I hope you can fix this, because I (and many others) really enjoy this mod.

    Thanks in advance!

    Reply Report Permalink
  • Chad0321 said 

    Whats the slash comand to show icon on map?

    Reply Report Permalink
  • hotfix said 

    Hi!

    is it possible to add an option for dual-specc (a second set of stances)?

    Reply Report Permalink
  • This is totally something we rogues (and other classes) will need nowadays with all these dual specs. I can only beg the developer of this addon to introduce this innovating idea.
    Please.

    Reply Report Permalink
  • Hi,

    in moment is this feature nonscheduled. Not much time to develop this, i have in moment other projects.

    Reply Report Permalink
  • Resike said 

    If i die in bg with 1h+shield, when i ress up, shield got removed from offhand and i dont get it why.

    Reply Report Permalink
  • neuj said 

    Hi to all, i love this addon too but i had a question about shadow dance.
    There is a "shadow dance" option in stancesets but i cannot make it work. I put the same stuff as "stealth" in "shadow dance" line but when i cast shadow dance there is no change at all, i am using a fist weapon when not in stealth. Anybody knows how to make it work ? thanks

    Reply Report Permalink
  • Im waiting = ) I love your add on so much!

    Reply Report Permalink
  • Im waiting = ) I love your add on so much!

    Reply Report Permalink
  • any plans to fix this as of the new patch?

    Reply Report Permalink
  • Hello,

    yes i will try it. I'm not sure which changes are made in the LUA interfaces. But for the last updates i changed in the TOC File the Version number for wow, thats all.

    Reply Report Permalink
  • Hi,

    i test it with the 3.1 WOW Client and it works without big changes. I only change the version number in the toc file. I found no errors in my tests, when you or somebody else, found an error please post them.

    Reply Report Permalink
  • Ordu said 

    Hi. I've just downloaded this addon. Great!
    But for a my druid it doesn't change weapons right when shapeshifting from one form to another skipping form 0.
    I made a little hack...

    --- orig/StanceSets3/StanceSets3.lua 2009-03-28 11:12:42.000000000 +0300
    +++ StanceSets3.lua 2009-04-03 23:45:05.000000000 +0400
    @@ -339,8 +339,21 @@
    end
    end

    +local skip_set_change = nil;
    +
    +function StanceSet3_Shapeshift(arg)
    + if GetShapeshiftForm (nil) ~= 0 and arg ~= 0 then
    + skip_set_change = true;
    + end
    +end
    +
    function StanceSets3_FormChanged()
    local curForm = StanceSets3_GetCurrentForm();
    + if skip_set_change then
    + skip_set_change = nil;
    + return;
    + end
    + skip_set_change = nil;
    if StanceSets3_LastForm then
    if curForm == StanceSets3_LastForm then
    return;

    Then i wrote macros for shapeshifting into forms. Macros like this:
    /script StanceSet3_Shapeshift(1)
    /cast [nostance:1] Dire Bear Form
    /cancelform

    But I don't understand clearly all the code, and maybe there is a less hacky solution of a problem...

    Reply Report Permalink
  • Hello,

    sorry for the late answer. The druid is a special case. In an other forum i found this comment.

    "Cause: Blizzard's "fluid" form transitions are anything but. Rather than switch directly from cat->bear and vice versa, your current form is cancelled (putting you in caster, even if you never see it) and the form you are switching to is applied immediately. You can test yourself
    by trying to switch from bear to cat while stunned - You'll go to caster instead."

    So what StanceSets sees is Bear -> Caster -> Cat. It will equip the caster set and stop whith switching. Maybe it is also a problem with GCD of the weapon-swap. Some events (i.e. UPDATE_SHAPESHIFT_FORM) from the API called twice (first event bear to caster, second event caster to cat) for druids. I have no idea to handle this problem.

    A solution for this problem can be. Activate the option "Equip first on activate" for the druid forms. When you change the form from bear to cat the addon take the set that you are defined under these form in the addon. That works fine with the "test" druid. When you not activate these options, the weapon from the last form are the same.

    Reply Report Permalink
  • Ordu said 

    It works, I know. But I want start to cast directly when I switch to caster form. When i'm killing Ansu, I cant tank without heal. And I have a little time for caster form. Ansu kills me fast when i'm not bear )

    My patch and macros makes it. But one more problem. Sometimes I need to hit key for rejuvenation twice. The first hit drops me into caster form but doesnt cast. Probably because weapon shift is not done yet.

    Reply Report Permalink
  • Hi,

    ok i will examine this problem again, maybe i found a solution. I cannot say more for the moment. I need time for search.

    Reply Report Permalink
  • kkofee said 

    epic problem
    i try to use another mods, and CasterWeaponSwapper works normally with this

    Reply Report Permalink
  • Since the last update the greeting on starting wow is in spanish. I'm using the english client :P

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 2,423 PallyPower Buffs & Debuffs, and Paladin
  2. 1,074 TankPoints Class, Paladin, Druid, Warrior...
  3. 880 VisualHeal Combat, Paladin, Druid, Shaman...
  4. 781 FloTotemBar Action Bars, Hunter, and Shaman
  5. 588 FloAspectBar Action Bars, Class, and Hunter