View Single Post
  #6  
Old 01-16-2010, 01:13 PM
jkennedy
Hill Giant
 
Join Date: Dec 2009
Posts: 175
Default this what what im using now

[/ode] sub EVENT_SAY {
if ($text=~/hail/i) {
if (!defined($qglobals{MM})) {
quest::say("You must kill lord Mith Mar to talk to me $name.");
}}
if ($text=~/hail/i) { if (defined($qglobals{MM}) && ($qglobals{MM} == 1)) {
quest::say("AHHH, So you defeated him would you like to go to The Ascent?");
}
}
if ($text=~/ascent/i && defined($qglobals{MM}) && ($qglobals{MM} == 1)) {
quest::say("Have fun on your Journey");
quest::movepc(319,169,1027,44);
}
}
} [/code]
he responds to the first line even if u have the flag he wont go tot the second line the ahh so you defeated him part
Reply With Quote