Jump to content

Terraflu

Player
  • Content count

    8
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Terraflu

  • Rank
    Newcomer

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Terraflu

    modui

    find this in nameplates.lua and try to change texture coords plate.cast = CreateFrame('StatusBar', nil, plate) plate.cast:SetStatusBarTexture(TEXTURE) plate.cast:SetStatusBarColor(1, .4, 0) plate.cast:SetBackdrop(BACKDROP) plate.cast:SetBackdropColor(0, 0, 0) plate.cast:SetHeight(8) plate.cast:SetPoint('LEFT', plate, 20, 0) --here plate.cast:SetPoint('RIGHT', plate, -4, 0) plate.cast:SetPoint('TOP', health, 'BOTTOM', 0, -8) plate.cast.text = plate.cast:CreateFontString(nil, 'OVERLAY') plate.cast.text:SetTextColor(1, .8, 0) plate.cast.text:SetFont(STANDARD_TEXT_FONT, 11) plate.cast.text:SetShadowOffset(1, -1) plate.cast.text:SetShadowColor(0, 0, 0) plate.cast.text:SetPoint('TOPLEFT', plate.cast, 'BOTTOMLEFT', 0, -2) plate.cast.timer = plate.cast:CreateFontString(nil, 'OVERLAY') plate.cast.timer:SetTextColor(1, 1, 1) plate.cast.timer:SetFont(STANDARD_TEXT_FONT, 9) plate.cast.timer:SetPoint('RIGHT', plate.cast) plate.cast.icon = plate.cast:CreateTexture(nil, 'OVERLAY', nil, 7) plate.cast.icon:SetWidth(14) plate.cast.icon:SetHeight(14) plate.cast.icon:SetPoint('RIGHT', plate.cast, 'LEFT', -5, 0) plate.cast.icon:SetTexture[[Interface\Icons\Spell_nature_purge]] plate.cast.icon:SetTexCoord(.1, .9, .1, .9) plate.cast.border = plate.cast:CreateTexture(nil, 'OVERLAY') plate.cast.border:SetTexture[[Interface\AddOns\modui\statusbar\texture\Nameplate-Castbar.blp]] plate.cast.border:SetHeight(32) plate.cast.border:SetPoint('TOPLEFT', plate, 'BOTTOMLEFT', 0, 8) plate.cast.border:SetPoint('TOPRIGHT', plate, 'BOTTOMRIGHT', 0, 9) plate.cast.border:SetVertexColor(.2, .2, .2)
  2. Terraflu

    FrameXML error

    Error: attempt to perform arithmetic on local `money' (a nil value) File: Interface\FrameXML\MoneyFrame.lua Line: 185 Count: 1 maybe anyone had the same error? what could it be?
  3. Terraflu

    modui

    make an options pls to: switch to default white blizzard status text font . I think it has good scaling, its not too small or too big. And white text color is what everyone get used to have status text like ---playerframe--- : ---targetframe--- : [ xxxx / xxxx ] 100% 100% [ xxxx / xxxx ] [ xxxx / xxxx ] - if mana [ xxx ] - if rage/energy
  4. Terraflu

    modui

    btw Modernist, I know you also made tbc version, can you pls give a link for it?
  5. Terraflu

    modui

    find this in nameplates.lua and put my part of the code. I fixed nameplate castbar Icon and texture positioning plate.cast = CreateFrame('StatusBar', nil, plate) plate.cast:SetStatusBarTexture(TEXTURE) plate.cast:SetStatusBarColor(1, .4, 0) plate.cast:SetBackdrop(BACKDROP) plate.cast:SetBackdropColor(0, 0, 0) plate.cast:SetHeight(8) plate.cast:SetPoint('LEFT', plate, 20, 0) plate.cast:SetPoint('RIGHT', plate, -4, 0) plate.cast:SetPoint('TOP', health, 'BOTTOM', 0, -8) plate.cast.text = plate.cast:CreateFontString(nil, 'OVERLAY') plate.cast.text:SetTextColor(1, .8, 0) plate.cast.text:SetFont(STANDARD_TEXT_FONT, 11) plate.cast.text:SetShadowOffset(1, -1) plate.cast.text:SetShadowColor(0, 0, 0) plate.cast.text:SetPoint('TOPLEFT', plate.cast, 'BOTTOMLEFT', 0, -2) plate.cast.timer = plate.cast:CreateFontString(nil, 'OVERLAY') plate.cast.timer:SetTextColor(1, 1, 1) plate.cast.timer:SetFont(STANDARD_TEXT_FONT, 9) plate.cast.timer:SetPoint('RIGHT', plate.cast) plate.cast.icon = plate.cast:CreateTexture(nil, 'OVERLAY', nil, 7) plate.cast.icon:SetWidth(14) plate.cast.icon:SetHeight(14) plate.cast.icon:SetPoint('RIGHT', plate.cast, 'LEFT', -5, 0) plate.cast.icon:SetTexture[[Interface\Icons\Spell_nature_purge]] plate.cast.icon:SetTexCoord(.1, .9, .1, .9) plate.cast.border = plate.cast:CreateTexture(nil, 'OVERLAY') plate.cast.border:SetTexture[[Interface\AddOns\modui\statusbar\texture\Nameplate-Castbar.blp]] plate.cast.border:SetHeight(32) plate.cast.border:SetPoint('TOPLEFT', plate, 'BOTTOMLEFT', 0, 8) plate.cast.border:SetPoint('TOPRIGHT', plate, 'BOTTOMRIGHT', 0, 9) plate.cast.border:SetVertexColor(.2, .2, .2)
  6. Terraflu

    modui

    PlayerRestGlow:SetAlpha(0) PlayerAttackGlow:SetAlpha(0) PlayerStatusGlow:SetAlpha(0) PlayerAttackBackground:SetAlpha(0) PlayerStatusTexture:SetAlpha(0) this works on TBC but not on Vanilla
  7. Terraflu

    modui

    how to delete combat/rest red glow at player's frame? - I meant this
  8. Terraflu

    modui

    how to change combat/rest red glow at player's frame? http://imgur.com/nPwLWi7 how to change font size of status bar text (player / target hp-mana text, xp text) ? how to turn off or just remove nameplate cast bar? First of all its conflicting with the enemyFrames addon. And it also has texture bug : the filling texture moved to the right a bit and doesnt fit the border texture http://imgur.com/NIwL94P
×