| Updated: | 11-04-08 12:37 PM |
| Created: | unknown |
| Downloads: | 9,593 |
| Favorites: | 55 |
| MD5: |

![]() |
Comment Options |
|
|
||
|
A Kobold Labourer
Forum posts: 0
File comments: 2
Uploads: 0
|
|
|
|
|
|
|
|
|
Is there a way to switch profiles with slash commands or something similar so you can do it from a macro? I have searched and not been able to find any info on this.
For exampe: /pm profile [profile_name] Thanks, Hiker |
|
|
|
|
|
|
|
Polina seems to have left the scene so until he gets back I'm going to upload the obvious fix to so that it correctly works out which your buffs are.
I've also added a dogtag button type which is quite nifty. See here: http://www.wowinterface.com/download...monitorGE.html |
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 1
Uploads: 0
|
Very NICE addon - thanks.
One thing I wanted and decided to see if it would work was to monitor a buff (as an example - Shadow Trance) and show button when available - so far no problem. But then I wanted to be able to press the button and have it cast Shadow Bolt on the target for me :-) OK - I could possibly have worked some macro way of doing it, but decided to temporarily kludge code to allow this to happen by adding an equivalent buff of #Shadow Bolt and recognising from the # that it should overwrite the default button action. For anyone interested in trying the code below between the comments can be inserted as marked in Monitor.lua and will do the job (bets off on different version to the one current at this post). It is however NOT how it should be done and am sure Polina will despair at it, but allowed me to see it in action before asking for code change, and I include code for anyone else who might like to play :-) -- Buff ------------------------------------------------------------------------------------------- local MonitorBuff = polOO.Class(MonitorWithCooldown) Pol_MonitorTypeRegister("Buff", MonitorBuff) function MonitorBuff:init(buttonTypeOrProfile, ...) MonitorWithCooldown.init(self, buttonTypeOrProfile) if type(buttonTypeOrProfile) ~= "table" then -- We're being created on the fly by the user self.profile.buffName = table.concat({...}, " ") end self:_AddEmptyEquivalentsToProfileIfNeeded() self.button:SetSpell(self.profile.buffName, self.profile.texture) -- Kludge override of spellname and unit if an equivalent specified with a # prefix -- (only assume target, focus could be done with another prefix?) for k, dummy in pairs(self.profile.equivalentNames) do if k:sub(1,1) == "#" then self.button:SetSpell(k:sub(2), self.profile.buffName) self.button:SetUnit("target") end end -- end kludge self:RegisterEvent("PLAYER_FOCUS_CHANGED") self:RegisterEvent("PLAYER_TARGET_CHANGED") self:RegisterEvent("UNIT_AURA") self:_UpdateStatus() end and (pfft - forgot to paste this bit) function MonitorBuff:AddEquivalent(buffName) self.profile.equivalentNames[buffName] = true -- Kludge override of spellname and unit if an equivalent specified with a # prefix -- (only assume target, focus could be done with another prefix?) if buffName:sub(1,1) == "#" then self.button:SetSpell(buffName:sub(2), self.profile.texture) self.button:SetUnit("target") end -- end kludge self:_UpdateStatus() end Again - apologies for bastardising the code, but was fun :-)
Last edited by Aldgit : 05-05-09 at 01:03 PM.
|
|
|
|
|
|
|
Worked great for me too. Thanks for the how-to fix!
|
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 1
File comments: 2
Uploads: 0
|
Very nice! That change works like a charm!
|
|
|
|
|
|||||
|
Open Monitor.lua
Change line 717 from:
|
|||||
|
|
|
|
|
|
so, did anyone find an alternative until polmonitor gets updated ?
|
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 1
File comments: 2
Uploads: 0
|
Yea I'm getting that too. Makes it basically unusable whenever you have more than one Lock in a raid.
![]() |
|
|
|
|
|
|
PolMonitor is now tracking other peoples debuffs even if I selected to only track my own.
Last edited by Gogusrl : 04-15-09 at 10:57 AM.
|
|
|
|
|
|
|
|
A Defias Bandit
Forum posts: 3
File comments: 25
Uploads: 0
|
I am having a problem with two of my characters. When I create buttons under my Warlock the same buttons also show under my Druid. When I delete them from my Druid and recreate Druid ones they show under my Warlock. I use this addon for all my other characters with no problems except these two. I have tried to reset both profiles, but it keeps happening when I recreate. Whatever I create under one shows up under the other.
How do I fix since I have ten characters and only these two have this glitch. I would prefer to not having to totally reset, but rather fix it so these two characters can have two independent settings. My guess it that something is corrupted or somehow tied together. Thoughts on how to fix????
Last edited by dloboi : 03-31-09 at 12:10 PM.
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 28
Uploads: 0
|
Anyone knows where is Polina ?
|
|
|
|
|
|
|
Fantastic addon, gratz !
I, however, find weird you can't hide entire groups. My groups are divided up according to my spec. If i'm xx/xx/xx i'd only be using 'group Y'... or i can't hide other groups. Will this be implemented in the future ? |
|
|
|
![]() |