Joseph, that download link doesn't seem to work..
This achieves the same thing, but scripted:
- script atcmd_afk -1,{
OnInit:
bindatcmd("afk","atcmd_afk::Onafk");
bindatcmd("unafk","atcmd_afk::Onunafk");
end;
Onafk:
headupper=getlook(4);
changelook 4,471;
end;
Onunafk:
changelook 4,headupper;
end;
}