View Single Post
  #5  
Old 09-08-2009, 08:48 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

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.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote