PDA

View Full Version : GotMoo Buff Mod - help please


leifx
03-02-2005, 05:35 PM
i am a shaman and i use GotMoo Buff Mod because it displays timers for my lightning shield buff.

however, it does not display timers for my totems. shamans have lots of totems. i have searched through the code in an attempt to find where the various buffs are stored so i can add some of my totems with their respective times.

i can't find where ththese entries are stored and it is not that hard to search for "Lightning Shield" text string in the interface subdir.

so can someone help me so i can add the following totems:
Healing Stream Totem
Mana Spring Totem
Mana Tide Totem.

i just need to know where to add these entries and i will hack my way thru the rest of the code.

thanks

Vynn
03-02-2005, 05:51 PM
I belive it dosn't show them because the totems are not actually buffs, they are seperate "NPC" objects created by a spell, that then have an aura like effect. The effect lasts as long as the NPC is there, but the effect itself does not have a timer (same as auras for pallys and aspects for hunters)

bwh
03-02-2005, 06:57 PM
/in ceased to work as far as i know, which did allow to schedule something within a macro.

/script Chronos.schedule(600, DEFAULT_CHAT_FRAME:AddMessage,"Timeout!");
/cast Healing Stream Totem


this may work, if it doesn't try replacing /cast section by shift clicking the totem icon in spellbook while in macro editing window.(600 is the timeout you want to be notified in seconds)

Actually i dont have the time to test this now, its up to you.

http://www.wowwiki.com/Chronos.schedule

leifx
03-02-2005, 10:22 PM
thx for the suggestions and explanation.