Dressing room macro 2.0

Adding this post, since I cannot edit my first post for some reason. To be clear, the account in question is my RETAIL and NOT Classic, as my character shows, but yeah, cannot edit. Anyway…

I used to have a macro that enabled me to view the targetted player character (usually myself) without any equipment on, undressed. I used this for ease of seeing what an item looks on me, like raid drops, etc, while also getting problematic other gear getting in the way, visually, like large weapons, tabards, etc.

The script i had for my macro was :
/script DressUpModel:SetUnit(“target”)
DressUpFrame:Show() DressUpModel:Undress() AuctionDressUpModel:Undress()

This no longer works. Help would be appreciated, as I do not want to use an addon to enable this.

Try this

/run DressUpFrame_Show(DressUpFrame); local actor = DressUpFrame.ModelScene:GetPlayerActor(); actor:SetModelByUnit("target"); actor:Undress()
1 Like

That worked. Thank you!

1 Like