Thread Tools Display Modes
10-13-10, 05:09 PM   #1
Kekskrümel
An Aku'mai Servant
Join Date: Oct 2010
Posts: 39
oUF_alekk - searching someone to update the ui for an donation

Hello,

Party/Raid Frame doesn't work with 4.0.1, also it is not possible to cancel buffs (ui operation reserved for blizzard ui bla bla)

Link to the UI: http://www.wowinterface.com/download...1920x1080.html

It is 1.3 based :/

I am searching someone to update oUF_alekk for oUF 1.5 for an donation (1 Month Wow?).

Greetings Nils
  Reply With Quote
10-14-10, 02:56 AM   #2
drdead
A Murloc Raider
Join Date: Oct 2008
Posts: 6
also it is not possible to cancel buffs (ui operation reserved for blizzard ui bla bla)
I dont think u can do anything with that.
  Reply With Quote
10-14-10, 05:58 AM   #3
Kekskrümel
An Aku'mai Servant
Join Date: Oct 2010
Posts: 39
Yeah, saw this some minutes ago

http://forums.worldofwarcraft.com/th...4074480&sid=1#

Q_Q Blizz

So maybe someone can fix the party/raid frame ?

These are simple text based bar's for party and mt frames for raid, should not be too much work ?

I would also do it, but i am such an programming noob :/
  Reply With Quote
10-15-10, 08:42 PM   #4
JackOnTheMap
A Murloc Raider
Join Date: Feb 2007
Posts: 8
I'd pay somebody to update oUF nin. I can not play without the damn thing.
  Reply With Quote
10-17-10, 11:14 AM   #5
MoonWitch
A Firelord
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 455
The issue is the SetManyAttributes in the MT part and party section.
And of course the way the styles are made -- that's different now too.

Code:
local maintank = oUF:Spawn('header', 'oUF_MainTank')
maintank:SetManyAttributes('showRaid', true, 'groupFilter', 'MAINTANK', 'yOffset', -3)
maintank:SetPoint("BOTTOMLEFT", UIParent, "BOTTOMLEFT", 8, 225)
maintank:SetAttribute("template", "oUF_MTT")
maintank:Show()


if tParty then
    local party = oUF:Spawn('header', 'oUF_Party')
    party:SetPoint("BOTTOMLEFT", UIParent, "BOTTOMLEFT", 8, 180)
    party:SetManyAttributes('yOffset', -3, 'showParty', true)

    local partyToggle = CreateFrame('Frame')

    partyToggle:RegisterEvent('PLAYER_LOGIN')
    partyToggle:RegisterEvent('RAID_ROSTER_UPDATE')
    partyToggle:RegisterEvent('PARTY_LEADER_CHANGED')
    partyToggle:RegisterEvent('PARTY_MEMBERS_CHANGED')

    partyToggle:SetScript('OnEvent', function(self)
        if(InCombatLockdown()) then
            self:RegisterEvent('PLAYER_REGEN_ENABLED')
        else
            self:UnregisterEvent('PLAYER_REGEN_ENABLED')
            if(GetNumRaidMembers() > 1) then
                party:Hide()
            else
                party:Show()
            end
        end
    end)

end
  Reply With Quote
10-17-10, 03:17 PM   #6
MoonWitch
A Firelord
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 455
So far I've modified the layout, it works -- but the coloring and fontstrings aren't working at this point. (Has to do with the 1.4 changes for overrides).

I'm unsure how to get party, raid and maintank working though It's a bit beyond me at this point. But I am trying to make part of it usable for you
  Reply With Quote
12-08-10, 09:53 AM   #7
insanity69
A Defias Bandit
Join Date: Oct 2010
Posts: 3
nope, downloaded the correct version^^
I've made it at least, that it shows it in the addons list now..but i dunno what i made xD well, im getting this error now when i come ingame: Message: Interface\AddOns\oUF_alekk\oUF_alekk.lua:591: '=' expected near 'self'
Time: 12/08/10 16:48:37
Count: 1
Stack:
Locals:

does it mean in line 591 is a "=" missing? trying it out now!
  Reply With Quote
12-08-10, 09:40 PM   #8
MoonWitch
A Firelord
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 455
self.Name = setFontString(self.Health, fontn, 13)

that's line 591, which should be working fine. It's the version I've got running right now.

https://github.com/moonwitch/oUF_alekk/tarball/master should work fine.

Make sure that when you download it and unzip it, you rename the folder to oUF_alekk

Also at the moment I myself can't reach PayPal, I'm assuming Wikileaks has something to do with it :P Anyhow, my paypal email is kelly.crabbe [at] g mai l [dot] com (You know the format, right?) I'd like to say that it is *not* needed to do that, I just did so because I wanted to try and make someone happy. Once I get a response from alekk, I can upload the version to wowi as well.

Last edited by MoonWitch : 12-08-10 at 09:49 PM.
  Reply With Quote
12-13-10, 02:57 AM   #9
Legendlives
A Murloc Raider
Join Date: Aug 2008
Posts: 9
First off, thank you and everyone else who has worked on this mod.

Now i need a little help and im a total tool when it comes to things like this.

First, the White lighter circle where the buff are, i want to move them to the darker circle but i dont know how, can you help.

Also is there anyway to move the casting bars from where they are now (light blue circle) a little lower (to the darker blue circle).

Again thank you for all the help and for bring this mod back to life.


  Reply With Quote
12-13-10, 05:27 AM   #10
Kekskrümel
An Aku'mai Servant
Join Date: Oct 2010
Posts: 39
@Legendlives

The position of the cast bar and buff bar is hard coded in the oUF_alekk.lua (you can open it with your notepad), there is no GUI to configure this.

The Section for the buff frame should be:

self.Buffs:SetPoint('TOPRIGHT', UIParent, 'TOPRIGHT', -5, -35)

Line 422.

Play a little bit with the -5 and -35. For example -5, 40 numbers to move the frame. Doesn't know which one is the correct for moving it down.

For the cast bar it should be:

self.Castbar:SetPoint('TOP', UIParentr, 'CENTER', 0, -93)

Line 445.

Again playing a little bit with the two numbers xD

Hope this was a little help.

Greetings
  Reply With Quote
12-13-10, 10:21 AM   #11
Legendlives
A Murloc Raider
Join Date: Aug 2008
Posts: 9
Thank you for the reply and help, i'll give what you said a try.

But another question, what i should have asked, is there anyway to get rid of those buff and let bison take over. I installed bison but both set of buff seem to be there, how do i get rid of the default buffs.
  Reply With Quote

WoWInterface » Featured Projects » oUF (Otravi Unit Frames) » oUF_alekk - searching someone to update the ui for an donation


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off