Showing results 1 to 25 of 84
Search took 0.00 seconds.
Search: Posts Made By: gempir
Forum: Lua/XML Help 01-02-21, 04:40 AM
Replies: 8
Views: 5,921
Posted By gempir
Are you also on 2560x1440 ? I feel like that...

Are you also on 2560x1440 ? I feel like that resolution has the most problems.
Forum: Lua/XML Help 01-02-21, 04:21 AM
Replies: 8
Views: 5,921
Posted By gempir
I fiddled with this a lot and still haven't found...

I fiddled with this a lot and still haven't found a good solution to this.

Positioning Elements with calculated Pixels didn't really help.


I read an old thread about a technique of having a...
Forum: Lua/XML Help 12-27-20, 07:21 AM
Replies: 8
Views: 5,921
Posted By gempir
That's helpful, never seen that before! Now it...

That's helpful, never seen that before!

Now it looks even better, but some vertical borders are just non existant now. Is there something I'm missing?

(Right side of...
Forum: Lua/XML Help 12-27-20, 04:19 AM
Replies: 8
Views: 5,921
Posted By gempir
Pixel Perfect 1px borders

I'm trying to create a pixel perfect border that is 1px. My method was working perfectly in Legion, but seems broken now in Shadowlands.

https://i.imgur.com/X3MNasN.png

Here you can see an example...
Forum: oUF (Otravi Unit Frames) 09-05-19, 12:17 PM
Replies: 4
Sticky: oUF and Classic
Views: 14,317
Posted By gempir
Very cool. Since oUF is MIT licensed everyone...

Very cool. Since oUF is MIT licensed everyone should be able to copy this code including Tukz changes (and keep including the license). Right?

Or are Tukz changes not MIT licensed in that case. I'm...
Forum: Lua/XML Help 02-03-18, 03:31 AM
Replies: 20
Views: 8,141
Posted By gempir
Thanks. I really wanted to stick with AceAddon...

Thanks. I really wanted to stick with AceAddon because it seemed good with modules etc.

I'm either gonna stick to my current solution or rewrite it to work without AceAddon.

Thanks for the help...
Forum: AddOn Help/Support 01-31-18, 02:31 AM
Replies: 3
Views: 2,228
Posted By gempir
wowinterface has it's own addon manager:...

wowinterface has it's own addon manager: https://www.minion.gg/

Maybe you'll like it more than curse/twitch app.
Forum: Lua/XML Help 01-30-18, 10:09 AM
Replies: 20
Views: 8,141
Posted By gempir
I think this is a bit too focused on ElvUI here....

I think this is a bit too focused on ElvUI here. All Im doing is using wow addon namespace with a table.
Forum: Lua/XML Help 01-30-18, 08:18 AM
Replies: 20
Views: 8,141
Posted By gempir
Okay thanks. There are few examples of good UIs...

Okay thanks. There are few examples of good UIs that also use similar libraries as I am. Also ElvUI is highly sucessful and has a lot of configuration options, so I thought looking at their Code...
Forum: Alpha/Beta AddOns and Compilations 01-28-18, 08:23 AM
Replies: 8
Views: 3,389
Posted By gempir
Certainly intresting look. Not for me but some...

Certainly intresting look. Not for me but some really impressive work!
Forum: Lua/XML Help 01-26-18, 04:21 PM
Replies: 20
Views: 8,141
Posted By gempir
UPDATE! Okay so after debugging this for days...

UPDATE!

Okay so after debugging this for days now I've finally figure out the problem. Somehow Ace3's OnInitialize function does not work as expected. The official docs show this:

AceDBExample =...
Forum: Lua/XML Help 01-26-18, 03:45 PM
Replies: 20
Views: 8,141
Posted By gempir
The name core is only ever seen in the main lua...

The name core is only ever seen in the main lua file. All others just know about F, G, V which is kinda nice IMO. but I agree readability could be improved. It takes a minute to understand what the...
Forum: Lua/XML Help 01-26-18, 12:15 PM
Replies: 15
Views: 3,809
Posted By gempir
@Engavi what's your decision for writing new...

@Engavi what's your decision for writing new Actionbars? Or have you tried reusing Blizzards Actionbars before?

I'm kinda in the same situation as you, needing some sort of customizable...
Forum: Lua/XML Help 01-25-18, 08:10 AM
Replies: 20
Views: 8,141
Posted By gempir
The line does make sense. select(2, ...) Means...

The line does make sense.

select(2, ...)

Means it returns all arguments after 2 (including 2) so only "ns" in your example.

Unpack then turns the table of core into 3 variables into F,G,V

local...
Forum: Lua/XML Help 01-24-18, 01:16 PM
Replies: 20
Views: 8,141
Posted By gempir
Hmm that could be it... Tbh I haven't looked a...

Hmm that could be it... Tbh I haven't looked a ton into namespaces with lua etc. and just saw this of a way of sharing Variables across files easily. F stands for Functions and has global functions...
Forum: Released Compilations 01-23-18, 09:37 AM
Replies: 2
Views: 8,454
Posted By gempir
Really disliking the giant xp bar at the top....

Really disliking the giant xp bar at the top. Ruins the immersion for me. Otherwise really cool UI. maybe some more fine tuning on the minimap since some things seem to bug out and not sure if the...
Forum: Lua/XML Help 01-23-18, 08:58 AM
Replies: 20
Views: 8,141
Posted By gempir
I doubt it's file permissions. Every other addons...

I doubt it's file permissions. Every other addons works fine and all settings save fine. Like I said replacing AceDB with my own custom implementation works aswell, so it's AceDB specific.

Also my...
Forum: Lua/XML Help 01-22-18, 10:43 AM
Replies: 20
Views: 8,141
Posted By gempir
Yeah I've tried that. They are written to the...

Yeah I've tried that. They are written to the self.db table and can be printed out etc. but after a reload they are lost.

But gempDB itself stays empty besides the Boilerplate stuff, I've posted...
Forum: Lua/XML Help 01-22-18, 08:59 AM
Replies: 20
Views: 8,141
Posted By gempir
Yeah I totally get that and I've read that before...

Yeah I totally get that and I've read that before aswell, but that's not my issue. My issue is I can't change anything and get it saved.

Like changing the default profile is a change from the...
Forum: Lua/XML Help 01-22-18, 05:36 AM
Replies: 20
Views: 8,141
Posted By gempir
AceDB-3.0 not saving

This thread is similar to my previous one, but I just can't figure out why AceDB is not working correctly.

I have followed the AceDB Tutorial here like 5 times and have read others but can't get...
Forum: General Authoring Discussion 01-21-18, 09:02 AM
Replies: 7
Views: 3,562
Posted By gempir
The idea is cool but IMO only useful in some...

The idea is cool but IMO only useful in some cases. Not all auras will have spells (Example: Enrage) so you will have another tracker of sorts in addition to this visual hint.
Forum: Lua/XML Help 01-20-18, 10:04 AM
Replies: 8
Views: 4,717
Posted By gempir
Okay so if I have like a frame that should sit in...

Okay so if I have like a frame that should sit in some custom position I would create that frame, give it a background, border etc.

and then I do SetPoint with the coords the user specified in the...
Forum: Lua/XML Help 01-20-18, 06:44 AM
Replies: 8
Views: 4,717
Posted By gempir
Yeah I get that part. But do I load my entire...

Yeah I get that part. But do I load my entire Interface in OnInitialize? Like I have multiple files doing stuff like oUF unitframes, actionbars, buffs, simple panels, minimap or other stuff. Some of...
Forum: Lua/XML Help 01-18-18, 06:50 PM
Replies: 8
Views: 4,717
Posted By gempir
Ok yeah true. But I have little experience with...

Ok yeah true. But I have little experience with AceConfig and the tutorials are pretty straightforward with AceDB.

AceDB doesn't seem to be the problem even, probably just me being...
Forum: Lua/XML Help 01-18-18, 04:55 PM
Replies: 8
Views: 4,717
Posted By gempir
Thanks but I've really got something more...

Thanks but I've really got something more complicated on my hands. I will have to handle multiple pages of settings. I was writing my own options but realized quickly that it's a lot of effort.
Showing results 1 to 25 of 84