View Single Post
  #7  
Old 03-31-2003, 02:10 AM
Damilis's Avatar
Damilis
Hill Giant
 
Join Date: Dec 2002
Location: Nottingham!!
Posts: 217
Default

Well with yall's help and a little tinkering, i figured out that in addition to having the comment at the begining, having:
Code:
EVENT_SAY {
instead of
Code:
EVENT_SAY{
was messing up the quest.

so this file doesnt work:
Code:
/*Zone:qeynos2  ID:16 -- Aenia_Ghenson */
EVENT_SAY {
if($1- =~ "Hail"){SAY("Why. hello there!  I'm Aenia. daughter of Dranom.  It's such a bore just sitting around here all day and night.  My father is soooooo overprotective! He never lets me go out and have any fun at all.  And he's so mean to my poor [boyfriend]!")}
}
EVENT_SAY {
if($1- =~ "what boyfriend"){SAY("My boyfriend's name is Behroe Dlexon.  He is so dreamy..  <sigh>..  But. I haven't been able to see him lately.  He works nights down at the docks. and with my father here all day. we just can't seem to get together.  Oh. how I wish I could speak with him..")}
}

/*END of FILE*/
BUT this one does:
Code:
EVENT_SAY{
if($1- =~ "Hail"){SAY("Why. hello there!  I'm Aenia. daughter of Dranom.  It's such a bore just sitting around here all day and night.  My father is soooooo overprotective! He never lets me go out and have any fun at all.  And he's so mean to my poor [boyfriend]!")}
}
EVENT_SAY{
if($1- =~ "what boyfriend"){SAY("My boyfriend's name is Behroe Dlexon.  He is so dreamy..  <sigh>..  But. I haven't been able to see him lately.  He works nights down at the docks. and with my father here all day. we just can't seem to get together.  Oh. how I wish I could speak with him..")}
}

/*END of FILE  Zone:qeynos2  ID:16 -- Aenia_Ghenson */
hope this helps people out.
Reply With Quote