Ok , just figured out and this is strange , here is a regular quest file that works in all the other zones for me
sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("Greetings. $name. Be gone I have much of nothing to do today. You bother me."); }
}
#END of FILE Zone:gfaydark ID:54092 -- Guard_Orcflayer
and of course I save it as the mobs ID number , Well i just found out i have to save the Abysmal Sea ones like this for them to work
sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("Hello $name. The eyes of Rhosha watch over all."); }
}
I cant end them like the others only like this and save them as the Mobs ID and they work ,...........weird
|