Healthbar above my own character?

Two options that may help.

  1. Addon: IceHUD Classic. I used this for a very long time.

  2. If you don’t want another addon, and use Blizzards frames then;
    " Vanilla unit frames

How to move the unit frames without using an addon

Move player unit frame
/script PlayerFrame:SetMovable(1)PlayerFrame:StartMoving()
Then move around your mouse and the frame will move.

Stop moving player unit frame
/script PlayerFrame:StopMovingOrSizing()PlayerFrame:SetMovable()

Move targe t unit frame
/script TargetFrame:SetMovable(1)TargetFrame:StartMoving()

Stop moving target unit frame
/script TargetFrame:StopMovingOrSizing()TargetFrame:SetMovable()

Target of target will move after the target unit frame"

Hope one of these help!

1 Like