View Single Post
  #5  
Old 09-18-2008, 07:32 PM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,498
Default

So following allong your direction above...

Code:
sub EVENT_SAY {
  my $deity = $client->GetDeity();

  if ($text=~/hail/i) {
    if ($deity==207) { #Karana
      quest::say("Do not move young $class, you know not the dangers that lurk in this place. I am Bertoxxulous your god, and ruler of this Crypt of Decay. You are a new born child of mine, so you will do my bidding or face the consequences. Will you bow to me?");
    }
    else {
      quest::say("Begone non-believer!");
      quest::CastSpell($userid,797);
    }
  }
}
Obviously you'll need to put in the proper deity that you want.
Reply With Quote