I finally bought my own comp this past week (in my 21 years of living, I've never owned my own computer) so I have no clue of where to look for addons and mods. My friend told me about this site so I thought I would come here to ask for some help.
If someone can help me out, I would greatly appreciate it. Thx!
Inside the .rar file you'll find several directories, these need to replace the ones you currently have in your World of Warcraft directory. You may have to do some reconfiguring if your resolution does not match his resolution.
Typically a mod release will have the following directories:
Interface\
WTF\
Make a copy of your old ones and back it up somewhere, then delete yours and replace it with the ones in the .rar file.
After you've done that you may need to open up those directories and rename some files/subdirectories. Look for subdirectories with names like:
YOURACCOUNTNAME
YOURREALMNAME
Rename those to the information requested.
Post here if you have trouble, I can try to help out tonight if someone hasn't already, I just am not able to open the .rar file from the computer I'm at right now.
Inside the .rar file you'll find several directories, these need to replace the ones you currently have in your World of Warcraft directory. You may have to do some reconfiguring if your resolution does not match his resolution.
Typically a mod release will have the following directories:
Interface\
WTF\
Make a copy of your old ones and back it up somewhere, then delete yours and replace it with the ones in the .rar file.
After you've done that you may need to open up those directories and rename some files/subdirectories. Look for subdirectories with names like:
YOURACCOUNTNAME
YOURREALMNAME
Rename those to the information requested.
Post here if you have trouble, I can try to help out tonight if someone hasn't already, I just am not able to open the .rar file from the computer I'm at right now.
It pretty much just takes crucial combat log information and displays it in the middle of his screen...such as:
[Name] starts casting Flash of Light
or
[Name] gains Windfurry Attack!
Any idea on what this is would be extremely helpful! I have looked everywhere and have been unsucesfull thanks!
You'll probably get more help if you take a screenshot or two of the video and post those instead. You'll be hard pressed to find many people who want to download a video in order to check out a UI.
You're looking for a mod that shows your target's aura gains.
Hmm its neither of those addons, what it does is simply takes lines from your combat log and puts it on the top of you screen. You can stream from filefont and get the general idea, as taking a screenshot goes its not really working for me =/ I think FRAPS messed up my Print Screen button =P
But it really does just take lines straight from the combat log and shows green for friendly casts, yellow for hostile heals, and red for hostile attacks.
Hmm its neither of those addons, what it does is simply takes lines from your combat log and puts it on the top of you screen. You can stream from filefont and get the general idea, as taking a screenshot goes its not really working for me =/ I think FRAPS messed up my Print Screen button =P
But it really does just take lines straight from the combat log and shows green for friendly casts, yellow for hostile heals, and red for hostile attacks.
The filefront stream is too small and blurry for me to read any of it. My Mik's definitely displays things like gains windfury as you described. I'm afraid I can't help any more than I already have. Sorry.
In This Pic of Hal's latest piece of digital sex I can name everything except for his target debuffs, I know that it has Zork's borders but they don't look like Pitbulls built in Aura module?
In This Pic of Hal's latest piece of digital sex I can name everything except for his target debuffs, I know that it has Zork's borders but they don't look like Pitbulls built in Aura module?
It's a modified Pitbull Auras. Look up Caith's latest UI. Use the border file and the customized aura.lua file from her download.
I'm also attempting to get the squared aura borders for pitbull that is all the rage these days. I tried to use Caith's latest UI files as suggested, but whenever I get into the game and select a target with a buff/debuff, I get an error and none of the auras show up. Unfortunately, I have no idea what LUA errors usually mean. -_-
..\AddOns\PitBull_Aura\Aura.lua line 939:
attempt to index field 'db' (a nil value)
I've tried just swapping in the .tga files, just the .lua file, all of them... Any try with the .lua results in the error, any try without it results in no change. I guess my next step is to grab Caith's entire Pitbull setup, but I kind of like my current pitbull settings and don't want to have to set them up from scratch again just to get these darn square aura borders. Can someone give me a hint as to what's going on?
I'm also attempting to get the squared aura borders for pitbull that is all the rage these days. I tried to use Caith's latest UI files as suggested, but whenever I get into the game and select a target with a buff/debuff, I get an error and none of the auras show up. Unfortunately, I have no idea what LUA errors usually mean. -_-
I've tried just swapping in the .tga files, just the .lua file, all of them... Any try with the .lua results in the error, any try without it results in no change. I guess my next step is to grab Caith's entire Pitbull setup, but I kind of like my current pitbull settings and don't want to have to set them up from scratch again just to get these darn square aura borders. Can someone give me a hint as to what's going on?
Ok, try this.
Copy just the border file from Caiths. Then open up your auras.lua in a text file and find the lines that look like these:
for i = 1, num_buffs do
local buff = buffs[i]
buff:Show()
buff:ClearAllPoints()
-- Workaround, find and fix invalid sizes.
buff:SetWidth(size)
buff:SetHeight(size)
if split then
if direction == "Up then Left" then
buff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", -pos_a, pos_b+5)
elseif direction == "Up then Right" then
buff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", pos_a, pos_b+5)
elseif direction == "Down then Left" then
buff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", -pos_a, -pos_b-5)
elseif direction == "Down then Right" then
buff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", pos_a, -pos_b-5)
elseif direction == "Left then Up" then
buff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", -pos_b, pos_a+5)
elseif direction == "Left then Down" then
buff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", -pos_b, -pos_a-5)
elseif direction == "Right then Up" then
buff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", pos_b, pos_a+5)
elseif direction == "Right then Down" then
buff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", pos_b, -pos_a-5)
end
else
if group_flip then
buff:SetPoint("TOPRIGHT", auraFrame, "TOPRIGHT", -pos_b, pos_a * group_grow)
else
buff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", pos_b, pos_a * group_grow)
end
end
if i ~= num_buffs and i % max_buffs_per_row == 0 then
lastrow = lastrow + 1
pos_a = pos_a + size + 2
pos_b = 0
else
pos_b = pos_b + size + 2
end
and
for i = 1, num_debuffs do
local debuff = debuffs[i]
debuff:Show()
debuff:SetBackdropBorderColor(1,0,0)
debuff:ClearAllPoints()
-- Workaround, find and fix invalid sizes.
debuff:SetWidth(size)
debuff:SetHeight(size)
if direction == "Up then Left" then
debuff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", -pos_a-5, pos_b+5)
elseif direction == "Up then Right" then
debuff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", pos_a+5, pos_b+5)
elseif direction == "Down then Left" then
debuff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", -pos_a-5, -pos_b-5)
elseif direction == "Down then Right" then
debuff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", pos_a+5, -pos_b-5)
elseif direction == "Left then Up" then
debuff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", -pos_b-5, pos_a+5)
elseif direction == "Left then Down" then
debuff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", -pos_b-5, -pos_a-5)
elseif direction == "Right then Up" then
debuff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", pos_b+5, pos_a+5)
elseif direction == "Right then Down" then
debuff:SetPoint("TOPLEFT", auraFrame, "TOPLEFT", pos_b+5, -pos_a-2)
end
if i % max_debuffs_per_row == 0 then
pos_a = pos_a + size + 2
pos_b = 0
else
pos_b = pos_b + size + 2
end
end
else
You'll notice yours don't have the +5's and -2's etc that mine have. Play with those numerical offsets to add padding and spacing.
If you do a search in this forum for aura.lua you should find the original post, I believe it was by Caith. The instructions there are more comprehensive.
Leica: I copied the 5 .tga files over again and opened my Aura.lua file to check for those bits of code you listed. I found them and, like you said, they're exactly like what you posted except for the padding and spacing offsets. Was I supposed to change something here to get it to recognize the new borders?
I did some searching and found this post by Zork, but it's about how to set up the padding and spacing (which will come in handy if I can ever get the borders to change).
As a last ditch effort, I just used the entire pitbull AddOns folder over from Caithlyn's newest layout... and nothing changed. I have to be doing something wrong here, I just have no idea what it is. :P
Leica: I copied the 5 .tga files over again and opened my Aura.lua file to check for those bits of code you listed. I found them and, like you said, they're exactly like what you posted except for the padding and spacing offsets. Was I supposed to change something here to get it to recognize the new borders?
I did some searching and found this post by Zork, but it's about how to set up the padding and spacing (which will come in handy if I can ever get the borders to change).
As a last ditch effort, I just used the entire pitbull AddOns folder over from Caithlyn's newest layout... and nothing changed. I have to be doing something wrong here, I just have no idea what it is. :P
Do you perhaps have a Pitbull_Aura addon folder and a Aura folder inside the Pitbull one?
My AddOns folder has individual folders for all the Pitbull modules. When I copied Caith's Pitbull folder over, I made sure to delete (well, move to a backup folder on my desktop) all of the Pitbull folders within the directory.
Haven't found anything in this thread, so here goes:
Any good mods for tracking long timer cooldowns for raids? I'm thinking of soulstones, battle resses, ankhs, etc.
Ideally it would be a nice graphical representation of "Bob has died, but has a soulstone, Joe shaman died without an ankh, but you have two battle resses up."
Haven't found anything in this thread, so here goes:
Any good mods for tracking long timer cooldowns for raids? I'm thinking of soulstones, battle resses, ankhs, etc.
Ideally it would be a nice graphical representation of "Bob has died, but has a soulstone, Joe shaman died without an ankh, but you have two battle resses up."
Ora2's Cooldown Timers will show you cooldown bars for Rebirths and Soulstones for any of your Druids, Locks who have it installed. I don't think it tells you who is soulstoned though.
Haven't found anything in this thread, so here goes:
Any good mods for tracking long timer cooldowns for raids? I'm thinking of soulstones, battle resses, ankhs, etc.
Ideally it would be a nice graphical representation of "Bob has died, but has a soulstone, Joe shaman died without an ankh, but you have two battle resses up."
Never actually used it, but Ora2 has cooldown monitor.
I finally downloaded Duke's ShadowUI and when I got on my character this message came up for a bunch of addons. "Addon Name cannot be found in SkinMeDirectory". I tried searching for SkinMe but nothing came up, any suggestions? and how do I reconfigure it so I can set it to 1400x900 Wide Resolution in Windowed Mode?
I was wondering if there was any mods that allowed you to have a double width vendor window? Much like DoubleWide does for the quest log. Ie in this picture show both pages of vendor items: ImageShack - Hosting :: 55999675su8.jpg
thanks.
In This Pic of Hal's latest piece of digital sex I can name everything except for his target debuffs, I know that it has Zork's borders but they don't look like Pitbulls built in Aura module?
What's a good Combat Log mod? Or how do I filter out Vamp Touch, Warlock T5 2set bonus, and other tiny little things like that, I can't figure out which one it is :[
What's a good Combat Log mod? Or how do I filter out Vamp Touch, Warlock T5 2set bonus, and other tiny little things like that, I can't figure out which one it is :[
You could try HitsMode. I used it briefly and while not 100%, I'm reasonably confident it let me filter out certain abilities and heals/mana regen below a specified threshold.