Description
Xaltoes
A World of Warcraft addon that displays Xal'atath's feet on your screen. A solemn, animated tribute to the toes of the Harbinger.
Features
- Toggle on/off — slash command or settings panel.
- Mover — unlock the mover, drag the toes anywhere on your screen, and the position is saved across sessions.
- Rotation - you can rotate the feet. So you can have them at the bottom of your screen, side, or at the top.
- Reset — restore the original top-anchored position, or reset everything back to defaults.
- Settings panel — ESC → Options → AddOns → Xaltoes, or
/xt//xaltoes.
Slash commands
| Command | What it does |
|---|---|
/xt or /xaltoes |
Open the settings panel |
/xt on |
Show the toes + persist enabled state |
/xt off |
Hide the toes + persist enabled state |
Origin
This revelation — that you can summon Xal'atath's feet into your UI with a single ModelScene — comes from a post by @Herotherogue on X. Xaltoes is simply the structured, installable, persistable version of that one-liner.
What it does
On login, the addon builds a 512x512 ModelScene anchored to your screen, attaches an actor using model file ID 5159886, plays animation 1138, and positions the actor at (2, 0, 0) inside the scene.
It is the structured equivalent of this macro one-liner:
/run if not xalfr then xalfr=CreateFrame("ModelScene", nil, UIParent) xalfr:SetPoint("TOP") xalfr:SetSize(512, 512) xalac = xalfr:CreateActor() xalac:SetModelByFileID(5159886) end xalac:SetAnimation(1138) xalac:SetPosition(2,0,0)

