I don't know if there is a good list of them anywhere, but you can always use this little script I wrote to check each one manually:
Code:
sub EVENT_SAY {
if ($status > 20)
{
if($text =~ /Hail/i)
{
quest::say("Just say a number for me to set appearance to.");
}
if($text >= 0 && $text <=255555555)
{
$npc->SetAppearance($text);
quest::say("Setting appearance to number $text.");
}
}
}
Then, you just say numbers to the NPC and it will set it's appearance to the number you said.