Well with yall's help and a little tinkering, i figured out that in addition to having the comment at the begining, having:
instead of
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.