| 
				 Quest Problems  (Another Items Event Problem....) 
 Could someone please tell me why this script doesn't work?  The NPC talking works just fine....but the zone crashes when I hand in the item  i've tried both of the following:
 EVENT_SAY{
 if($1- =~ "Hail")
 {
 say("Hello $name!  How are you?  Might I as you to [help] me?")
 }
 if($1- =~ "help")
 {
 say("Thank you for your interest.  Please Collect For Me a Cloth Cap")
 }
 }
 EVENT_ITEM{
 if ($item0 == "1001")
 {
 say("Thank You Very Much!")
 }
 }
 ---------------------------------------------------------------------------------
 EVENT_SAY{
 if($1- =~ "Hail")
 {
 say("Hello $name!  How are you?  Might I as you to [help] me?")
 }
 if($1- =~ "help")
 {
 say("Thank you for your interest.  Please Collect For Me a Cloth Cap")
 }
 }
 EVENT_ITEM{
 if ($itemcount(1001) == 1)
 {
 say("Thank You Very Much!")
 }
 }
 |