View Single Post
  #3  
Old 06-22-2004, 08:30 PM
KhaN's Avatar
KhaN
Dragon
 
Join Date: Mar 2004
Location: France, Bordeaux.
Posts: 677
Default

Code:
sub EVENT_SAY
{
 if ($text=~/Hail/i)
 {
  quest::say("Hello there $name. I am the Avatar of Anarchy. If you are wishing to turn to the dark side, I can call upon Cazic Thule to free you from the chains of order. This will convert you into a Player Killer who can kill and be killed by other Player Killers. Do you wish to [convert]?");
 }
 if ($text=~/convert/i)
 {
  quest::say("Very well then $name. Bring Anarchy upon this world!");
  quest::pvp("on");
 }
}
sub EVENT_ATTACK
{
 quest::shout("FOOL! You have dug your own grave!"); 
}
__________________

Reply With Quote