Advertisement
Superlative

Untitled

Aug 10th, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. local bar = TukuiBar5
  2.  
  3. bar:HookScript( "OnEvent", function( self, event, unit )
  4.     if( event == "PLAYER_ENTERING_WORLD" ) then
  5.         local button
  6.  
  7.         for i = 1, 12 do
  8.             button = _G["MultiBarRightButton"..i]
  9.             button:SetSize(T.buttonsize+5, T.buttonsize+5)
  10.             button:ClearAllPoints()
  11.             button:SetParent( bar )
  12.             button:SetFrameStrata( "BACKGROUND" )
  13.             button:SetFrameLevel( 15 )
  14.         end
  15.     end
  16. end )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement