Showing results 1 to 24 of 24
Search took 0.00 seconds.
Search: Posts Made By: Druidicbeast
Forum: AddOn Help/Support 01-05-15, 12:23 PM
Replies: 4
Views: 4,111
Posted By Druidicbeast
Maybe I just need to switch and make this easier....

Maybe I just need to switch and make this easier. I was trying to avoid it as I seem to get overwhelmed with setting up new unit frames. Though, maybe I just need to sit down and take the time to...
Forum: AddOn Help/Support 01-05-15, 10:19 AM
Replies: 4
Views: 4,111
Posted By Druidicbeast
Sorry, I should have mentioned these things. I'm...

Sorry, I should have mentioned these things. I'm currently using Shadowed Unit Frames. It has a create your own "Tag" section and I wanted to add this to that. Hopefully though, being that it's...
Forum: AddOn Help/Support 01-05-15, 08:45 AM
Replies: 4
Views: 4,111
Posted By Druidicbeast
Custom lua Health Text

Looking to see if someone can help me setup a custom health tag in lua. I'm pretty sure it's possible, but haven't been able to find anything through Google that has worked so far. In short it's...
Forum: AddOn Help/Support 03-24-14, 08:25 AM
Replies: 0
Views: 6,044
Posted By Druidicbeast
Shadowed Unit Frame Custom Text Tag

I've recently switched my unit frames to SUF. I was looking through the list of text tags that comes with it but it was missing 1 or 2 I was hoping to get some help on making. I want to be able to...
Forum: oUF (Otravi Unit Frames) 05-14-09, 08:25 AM
Replies: 1,215
Views: 386,806
Posted By Druidicbeast
For the future whenever posting code you should...

For the future whenever posting code you should either do so with code tags or use http://www.pastey.net/. :cool:
Forum: General Authoring Discussion 05-12-09, 08:51 AM
Replies: 0
Views: 2,742
Posted By Druidicbeast
World Map

I am working on a making myself a small world map mod. Ideally I don't need/want it to do much. I am not too great with lua coding so I have been looking at some other mods code to get started. ...
Forum: oUF (Otravi Unit Frames) 05-01-09, 07:17 PM
Replies: 35
Views: 20,494
Posted By Druidicbeast
I guess that would explain why when I had myself...

I guess that would explain why when I had myself targeted it worked. I will get a guild mate later on to test somethings out with.

Edit 1: I knew I saw this someplace, assuming this hasn't changed...
Forum: oUF (Otravi Unit Frames) 05-01-09, 06:27 PM
Replies: 35
Views: 20,494
Posted By Druidicbeast
I have not just yet, tbh with you I havn't...

I have not just yet, tbh with you I havn't looked. Although the code appears to be working.....kinda. Under my Tags section I have only this:

oUF.Tags['[afk]'] = function(unit) if UnitIsAFK(unit)...
Forum: oUF (Otravi Unit Frames) 05-01-09, 05:56 PM
Replies: 35
Views: 20,494
Posted By Druidicbeast
You sir are simply amazing, thank you VERY much...

You sir are simply amazing, thank you VERY much for your help with this. It works perfect.
:banana::banana::banana:

I added you to the credits for the tag, let me know if you need me to add...
Forum: oUF (Otravi Unit Frames) 05-01-09, 03:02 PM
Replies: 35
Views: 20,494
Posted By Druidicbeast
Your reply is greatly appreciated. I will be...

Your reply is greatly appreciated. I will be trying this as soon as I get home. Also you were quite right, after reading through and trying to make sense of what I could. The previous posted code...
Forum: oUF (Otravi Unit Frames) 05-01-09, 01:57 PM
Replies: 35
Views: 20,494
Posted By Druidicbeast
I will give it a shot when I get home from work...

I will give it a shot when I get home from work tonight. The approach that p3lim was attempting seemed right to me, but I couldn't fix the error message it was giving me.

After testing this though...
Forum: oUF (Otravi Unit Frames) 05-01-09, 08:21 AM
Replies: 35
Views: 20,494
Posted By Druidicbeast
In short....abbreviate a name vs. truncating it. ...

In short....abbreviate a name vs. truncating it. An example would be Lightning Charged Iron Dwarf. Using the DogTag this would read L. C. Iron Dwarf whereas truncating it would just be Lighting...
Forum: oUF (Otravi Unit Frames) 04-30-09, 10:40 PM
Replies: 35
Views: 20,494
Posted By Druidicbeast
Ok I finally got a chance to try it out after...

Ok I finally got a chance to try it out after raid. I am getting this error:


Interface\AddOns\oUF_Septembark\Septembark_Main.lua:123: function arguments expected near '.'


Line 123 is what I have...
Forum: oUF (Otravi Unit Frames) 04-30-09, 09:02 AM
Replies: 35
Views: 20,494
Posted By Druidicbeast
Thank you for your reply. I am currently at...

Thank you for your reply. I am currently at work, so I am unable to try it out. I will give it a shot when I get home and post an update here.
Forum: oUF (Otravi Unit Frames) 04-30-09, 07:36 AM
Replies: 35
Views: 20,494
Posted By Druidicbeast
oUF.Tags["[name]"] = function(u) Local o =...

oUF.Tags["[name]"] = function(u)
Local o = ""
if not(u == nil) then
local n = UnitName(u)
if UnitIsDead(u) then
o = "Dead"
elseif not UnitIsConnected(u)...
Forum: oUF (Otravi Unit Frames) 04-29-09, 07:52 PM
Replies: 9
Views: 7,212
Posted By Druidicbeast
tyvm for your reply. I am testing it out now....

tyvm for your reply. I am testing it out now. BRB with an update.

Edit: That looks like it did the trick, it appears to be working great now. I also left out the above mentioned ...
Forum: oUF (Otravi Unit Frames) 04-29-09, 05:13 PM
Replies: 9
Views: 7,212
Posted By Druidicbeast
Ok gave this a try now that I am home from work,...

Ok gave this a try now that I am home from work, with no luck :(

Here is what happens - With your line added
Both player and target (myself) have full runic power bars.
When another unit is selected...
Forum: oUF (Otravi Unit Frames) 04-29-09, 03:28 PM
Replies: 35
Views: 20,494
Posted By Druidicbeast
?? oUF.Tags["[name]"] = function(u) o = "" ...

??

oUF.Tags["[name]"] = function(u)
o = ""
if not(u == nil) then
local n = UnitName(u)
if UnitIsDead(u) then
o = "Dead"
elseif not UnitIsConnected(u)...
Forum: oUF (Otravi Unit Frames) 04-29-09, 02:42 PM
Replies: 35
Views: 20,494
Posted By Druidicbeast
Glad the thread was a smash hit =)

Glad the thread was a smash hit =)
Forum: oUF (Otravi Unit Frames) 04-29-09, 09:14 AM
Replies: 35
Views: 20,494
Posted By Druidicbeast
Converting DogTag for use with oUF

So I am in the process of transitioning from PitBull to oUF. One thing I had setup in my PitBull layout was a DogTag that I got from a DogTag thread on the Elitist Jerks UI forums.


[(if ...
Forum: oUF (Otravi Unit Frames) 04-29-09, 07:25 AM
Replies: 9
Views: 7,212
Posted By Druidicbeast
Thank you very much for the help. Yes I am using...

Thank you very much for the help. Yes I am using oUF_Smooth. I am at work at the moment, but I will try to add this when I get home tonight and post an update. Thank you again.
Forum: oUF (Otravi Unit Frames) 04-28-09, 11:55 PM
Replies: 9
Views: 7,212
Posted By Druidicbeast
Ok I changed the lines of code accordingly and...

Ok I changed the lines of code accordingly and still had the same issue. Your response is greatly appreciated; however, it was recommended to me to take a different approach to achieve the same...
Forum: oUF (Otravi Unit Frames) 04-28-09, 05:13 PM
Replies: 9
Views: 7,212
Posted By Druidicbeast
BG Color Troubles

Hey, after speaking with Haste on IRC he suggested posting here for better help. For the life of me I am unable to figure out what I have done wrong here. Basically my BG Color for my status bars...
Forum: oUF (Otravi Unit Frames) 03-17-09, 05:30 PM
Replies: 1,215
Views: 386,806
Posted By Druidicbeast
I've been trying to learn as much as I can from...

I've been trying to learn as much as I can from looking at different layouts. I am still pretty new to all of this lua coding.

I wanted to start with just a basic player unit frame to practice and...
Showing results 1 to 24 of 24