Showing results 1 to 23 of 23
Search took 0.00 seconds.
Search: Posts Made By: Nyrine
Forum: Class Discussions 09-13-06, 11:39 AM
Replies: 4
Views: 5,272
Posted By Nyrine
http://www.wowinterface.com/downloads/fileinfo.php...

http://www.wowinterface.com/downloads/fileinfo.php?id=4622

For totem timers, I quite like GotWood?

Download it from : http://svn.wowace.com/files
Forum: Lua/XML Help 08-13-06, 01:37 PM
Replies: 2
Views: 3,022
Posted By Nyrine
Ahh! Perfect, thank you !

Ahh! Perfect, thank you !
Forum: Lua/XML Help 08-13-06, 12:59 PM
Replies: 2
Views: 3,022
Posted By Nyrine
Hiding outbound whispers from a mod

How do I go about hiding outbound whispers?

We used to use GetDKP for handling in game DKP queries,but we changed to different DKP pools per instance, and chaning GetDKP to work under that looked...
Forum: Lua/XML Help 07-21-06, 11:09 AM
Replies: 2
Views: 4,186
Posted By Nyrine
The WoW implementation of lua seems to have lots...

The WoW implementation of lua seems to have lots of things missing, is the coroutine functionality one of those ?
Forum: Lua/XML Help 07-18-06, 11:32 AM
Replies: 1
Views: 3,138
Posted By Nyrine
Well, to fnd the sections : for k,v in...

Well, to fnd the sections :

for k,v in pairs(CritLockData["Data"]) do
print (k)
end
Forum: AddOn Help/Support 07-18-06, 11:24 AM
Replies: 4
Views: 3,452
Posted By Nyrine
That box of 3 looks like autobar. control+right...

That box of 3 looks like autobar.

control+right click on the boxes to move, or type : /autobar
Forum: AddOn Search/Requests 07-13-06, 10:27 AM
Replies: 4
Views: 3,464
Posted By Nyrine
Try Elkano's buff bar...

Try Elkano's buff bar :

http://www.wowinterface.com/downloads/fileinfo.php?id=5101

Shows everything i could want - buffs/debuffs/weapon buffs
Forum: AddOn Help/Support 07-06-06, 02:14 AM
Replies: 9
Views: 3,897
Posted By Nyrine
I assume you are all talking about the little...

I assume you are all talking about the little green RA button on the minimap ?

For CTRA :

Click on the button.

Go to Misc Options.

Adjust the 'Option Sets Button Placement' slider at the top.
Forum: AddOn Search/Requests 06-29-06, 05:32 PM
Replies: 551
Views: 265,006
Posted By Nyrine
THat one doesnt seem to work with 1.11 - at least...

THat one doesnt seem to work with 1.11 - at least for Salt Shakers. Maybe its changed again... only 2 days till mine resets and I can try to find out why =/
Forum: Lua/XML Help 06-28-06, 01:50 PM
Replies: 4
Views: 3,861
Posted By Nyrine
It too uses a hidden tooltip though. Oh well, I...

It too uses a hidden tooltip though. Oh well, I guess i'll keep going the way I have been until I learn better =)

Thanks though !
Forum: Lua/XML Help 06-27-06, 04:33 PM
Replies: 4
Views: 3,861
Posted By Nyrine
Finding what 'buff' is on a weapon

How do I go about this ?

The following code will correctly detect if my weapon has a buff (ie Windfury, Rockbiter, an oil etc)

local hmhe, mhe, mhc, hoe, ohe, ohc = GetWeaponEnchantInfo()
if (hmhe)...
Forum: General Authoring Discussion 06-23-06, 02:17 PM
Replies: 2
Views: 6,762
Posted By Nyrine
Why not just function treelobattlemap_OnLoad() ...

Why not just

function treelobattlemap_OnLoad()
BattlefieldMinimap_LoadUI()
if(!BattlefieldMinimap:IsVisible()) then
BattlefieldMinimap:Show();
end
end
Forum: Alpha/Beta AddOns and Compilations 05-29-06, 03:57 AM
Replies: 14
Views: 4,066
Posted By Nyrine
OH, I like this ! Currently I do a bunch of...

OH, I like this !

Currently I do a bunch of combat log parsing myself, in my ProcWatchFu addon.

Using your library could make life a lot easier for me ! Thank you so much =)

Two questions...
Forum: Alpha/Beta AddOns and Compilations 05-08-06, 03:00 PM
Replies: 7
Views: 1,635
Posted By Nyrine
In your ToggleCloak() and ToggleHelm() method,...

In your ToggleCloak() and ToggleHelm() method, why not also update a variable, and use that to determine the checked status ?

That at least would be updated immediately, and would remove the slight...
Forum: Alpha/Beta AddOns and Compilations 05-08-06, 03:10 AM
Replies: 7
Views: 1,635
Posted By Nyrine
The download isnt working atm for me. What I...

The download isnt working atm for me.

What I have is :

dewdrop:AddLine(
'text',"Toggle FuBar stat display",
'arg1', self,
'func',...
Forum: AddOn Search/Requests 04-30-06, 03:16 AM
Replies: 2
Views: 3,876
Posted By Nyrine
I have a portal now, so can accept bug reports /...

I have a portal now, so can accept bug reports / feature requests there.

I've fixed the bug you raised Blackout05, so a new version should be available when its approved !
Forum: General Authoring Discussion 04-28-06, 01:39 AM
Replies: 4
Views: 9,681
Posted By Nyrine
Ive not seen anything on wowinterface, but curse...

Ive not seen anything on wowinterface, but curse gaming has :

http://www.curse-gaming.com/mod.php?addid=3319

Description :
FiveSec monitors your mana regeneration. It displays a bar — similar to...
Forum: AddOn Search/Requests 04-28-06, 01:36 AM
Replies: 3
Views: 3,174
Posted By Nyrine
There is...

There is :

http://www.wowinterface.com/downloads/fileinfo.php?id=4547

Which says it expands the lootframe where needed to 8 slots.
Forum: Lua/XML Help 04-24-06, 07:48 AM
Replies: 6
Views: 5,362
Posted By Nyrine
Try this (no idea if it works!) function...

Try this (no idea if it works!)

function GetBuffIndex(thisBuff)
local counter = 1
local buffIndex = 0
while (UnitBuff("player", counter)) do
if (string.find(UnitBuff("player", counter),...
Forum: Lua/XML Help 04-21-06, 12:17 PM
Replies: 2
Views: 4,324
Posted By Nyrine
OK - got this working (mostly) - thanks ! This...

OK - got this working (mostly) - thanks !

This is using ACE, so I do :

self:RegisterEvent("SPELLCAST_INTERRUPTED", "SO_INT")
self:RegisterEvent("SPELLCAST_STOP", "SO_INC")
self.spellsuccess =...
Forum: Lua/XML Help 04-21-06, 09:15 AM
Replies: 2
Views: 4,324
Posted By Nyrine
Detecting spell casting

Hi,

I'm writing an addon, and I need to be able to count genuine spells cast by the player.

Currently, i'm hooking into :

CHAT_MSG_SPELL_SELF_DAMAGE
CHAT_MSG_SPELL_SELF_BUFF

And this works fine -...
Forum: AddOn Search/Requests 04-14-06, 08:34 AM
Replies: 14
Views: 7,604
Posted By Nyrine
I've converted LootType to FuBar and uploaded it...

I've converted LootType to FuBar and uploaded it here:

http://www.wowinterface.com/downloads/fileinfo.php?id=4837
Forum: AddOn Help/Support 04-13-06, 02:07 AM
Replies: 2
Views: 3,947
Posted By Nyrine
Im at work, so cant try this, but... The 1.10...

Im at work, so cant try this, but...

The 1.10 download of SVI comprises two addons - SVI and TitanSVI.

SVI has no dependencies, TitanSVI has SVI and Titan.

BossPanelSVI only has SVI as a...
Showing results 1 to 23 of 23