-- new party
point = "RIGHT",
sortDir = "DESC",
yOffset = 10,
Haven't been able to put in an x Offset so theyre spaced quite yet, though.
thx, though i haven't been here for a few days, i solved the problem on my own. Setting the point property to left or right let's you use xOffset.
As i can see on your codesample. yOffset gives the exact same result ^-^
I have a problem with rBars that somehow the texture from the pet bar doesn't hide. I tried what you wrote a few pages back for the shapeshiftbar but that didn't help (obviously with names changed to petbar). In the code I could find any ways to hide a texture. What should I do to solve this?
Originally Posted by zork
The trick is to overwrite the background texture with a transparent one. So you don't have to mess with the code.
Get yourself a transparent BLP. Create the folder. Put the transparent BLP-files in there and name them:
ShapeshiftBarMiddle.blp and ShapeshiftBar.blp. Restart World of Warcraft an check the result.
That fixes shapeshiftbar not petbar, I saw that post yes, tried renaming them, tried with those names too but those didn't help.
It didn't help because all you did was rename them improperly. You would have to figure out the proper naming scheme before you could get any fix to work.
This is the xml file that contains the PetActionBar information (not simply PetBar). The proper file that you want to make transparent is: Interface\PetActionBar\UI-PetBar.blp
Create your transparent blp, rename it UI-PetBar.blp, and place it in Interface\PetActionBar\, and you should achieve the desired results.
Hmm... rBars code alone seems to take care of the PetActionBar art for me, maybe check to see if anything was deleted or commented out. You also might be naming the file or it's folder incorrectly as I don't think Blizzard names the pet action bar frame or it's artwork petbar.
Here are a couple of guides to help make a transparent .blp :
That fixes shapeshiftbar not petbar, I saw that post yes, tried renaming them, tried with those names too but those didn't help.
It's always the same way... You just had to look and find the right names.
@ yarikh
Do this on top of your layout.lua and change the values to your needs.
RAID_CLASS_COLORS = {
["HUNTER"] = { r = 0.67, g = 0.83, b = 0.45 },
["WARLOCK"] = { r = 0.58, g = 0.51, b = 0.79 },
["PRIEST"] = { r = 1.0, g = 1.0, b = 1.0 },
["PALADIN"] = { r = 0.96, g = 0.55, b = 0.73 },
["MAGE"] = { r = 0.41, g = 0.8, b = 0.94 },
["ROGUE"] = { r = 1.0, g = 0.96, b = 0.41 },
["DRUID"] = { r = 1.0, g = 0.49, b = 0.04 },
["SHAMAN"] = { r = 0.14, g = 0.35, b = 1.0 },
["WARRIOR"] = { r = 0.78, g = 0.61, b = 0.43 }
};
All in all nice work your are doing with these special addons. I'm not into lua editing, but using these addons has made me curious. I'm really looking forward to learn about this stuff, but for now, can some tell me pls how to:
- make debuffs and buffs seen on raidframes, moreover only the one's i can decurse and buff (rUnit)
- ClassColor the nameplates (pTags)
- Is it possible to show the partytargets? (rUnit)
thanks
Last edited by Friccs : 05/06/08 at 4:24 PM.
Give a man a fire and he is warm for the day, but set fire to him and he is warm for the rest of his life.
I've looked through it several times and tryed figuring out how to change the spacing between the icons on the horizontal line and I just can't find it, what have I missed?
rSpellCheck is my first mod that is really easy to configure I guess. All you have to do is to replace the spellids with the one you like. I thinks its easy to understand.
I have been working around with rBars.lua, but i have problems finding the function that is hiding the hotkeys. I already browsed through this thread and a previous poster already asked this, but the line mentioned isn't in the current version. I have tried cutting out parts and reload ui to see if i can find the section with the function but i'm never able to get the hotkeys to show up no mater how much i remove from the code. I have a bit of experience so i am usually able to find out these things by myself but i just dont seem to be able to find this specific function.
EDIT: And oh btw, am i the only one who isn't able to view images from zorktdmog.zo.funpic.de ?
EDIT2: any chance anyone knows a simple way how to add timestamps to pChat ?
I have been working around with rBars.lua, but i have problems finding the function that is hiding the hotkeys. I already browsed through this thread and a previous poster already asked this, but the line mentioned isn't in the current version. I have tried cutting out parts and reload ui to see if i can find the section with the function but i'm never able to get the hotkeys to show up no mater how much i remove from the code. I have a bit of experience so i am usually able to find out these things by myself but i just dont seem to be able to find this specific function.
EDIT: And oh btw, am i the only one who isn't able to view images from zorktdmog.zo.funpic.de ?
EDIT2: any chance anyone knows a simple way how to add timestamps to pChat ?
Look for the local variables that are set inside of the functions. If you see "ho", it is set to hotkey... and a few times in the code he has "ho:hide()"... so just comment out those lines and it'll do the trick at showing your hotkeys.
Those images aren't working for me either. As far as pChat goes, I'll be honest... I ditched it when Chatter was released by the author of Omen. It does all the things I want it to and it's very light and low memory.
rSpellCheck is my first mod that is really easy to configure I guess. All you have to do is to replace the spellids with the one you like. I thinks its easy to understand.
The screenshots aren't working for me. So what exactly do these addons do?
edit; gah... i just realized i doubleposted. It won't allow me to delete this one.
Look for the local variables that are set inside of the functions. If you see "ho", it is set to hotkey... and a few times in the code he has "ho:hide()"... so just comment out those lines and it'll do the trick at showing your hotkeys.
Those images aren't working for me either. As far as pChat goes, I'll be honest... I ditched it when Chatter was released by the author of Omen. It does all the things I want it to and it's very light and low memory.
Ah thanks, i already tried cutting out those "ho:hide()" lines, but hadn't tried commenting them out.
And thanks for the tip, chatter seem's to be able to fulfill my needs.
EDIT: Now i have been editing rFilter.lua, i've set it so the bars show Battle/Commanding Shouts, Thunderclap and Demoralizing Shout. When i do those abilitys, i get the bar and the timer and everything like it should. But the timer isn't updating correctly. It's like it is lagging, updates every 10-20 seconds or so, no specific update rate but rather random. Quite annoying i must say. Anyone know what the problem might be ?