Player Frame :
Code:
/run local f=PlayerFrame; f:SetUserPlaced(true) f:SetMovable(true) f:EnableMouse(true) f:RegisterForDrag("LeftButton") f:SetScript("OnDragStart",f.StartMoving) f:SetScript("OnDragStop",f.StopMovingOrSizing)
Player Frame Size :
Code:
/run PlayerFrame:SetScale(1)
rubah angkanya sesuai keinginan ( 1 = default )
Target Frame :
Code:
/run for _, f in pairs{PlayerFrame, TargetFrame} do f:SetMovable(true) f:SetScript("OnDragStart", f.StartMoving) f:SetScript("OnDragStop", f.StopMovingOrSizing) f:RegisterForDrag("LeftButton") end
Target Frame Size :
Code:
/run TargetFrame:SetScale(1)
Party Frame :
Code:
/run local p=PartyMemberFrame1; p:SetMovable(true) p:SetUserPlaced(true) p:HookScript("OnMouseDown",function() p:StartMoving()end) p:HookScript("OnMouseUp",function() p:StopMovingOrSizing ()end)
Arena Frame :
Code:
/run local f=ArenaEnemyFrame1; f:SetUserPlaced(true) f:SetMovable(true) f:EnableMouse(true) f:RegisterForDrag("LeftButton") f:SetScript("OnDragStart",f.StartMoving) f:SetScript("OnDragStop",f.StopMovingOrSizing)
Arena Frame Size :
Code:
/run ArenaEnemyFrame1:SetScale(1)
ini tinggal ganti aja angka ArenaEnemyFrame 1,2,3
Misc :
Action Bar Size
Code:
/run MultiBarLeft:SetScale (1)
Code:
/run MultiBarRight:SetScale (1)
Code:
/run MultiBarBottomLeft:SetScale (1)
Code:
/run MultiBarBottomRight:SetScale (1)
Code:
/run MainMenuBar:SetScale(1)
NB : Ini script mesti dibuat di macro n siap2 kalo DC / relog mesti dipencet lagi macro nya.
contoh UI :
http://img251.imageshack.us/img251/4...2310103419.jpg
Share This Thread