Thread: luclin portal
View Single Post
  #4  
Old 09-28-2006, 01:44 AM
Aramid
Discordant
 
Join Date: May 2006
Posts: 356
Default

This is what you want....

Code:
sub EVENT_SAY {
 if ($text=~/Hail/i){
  quest::say("Hello $name .  I do not have much time to chat. I must concentrate on the portal that is due to open soon. If you wish to [journey to Luclin], tell me so.");
  }
 if ($text=~/journey to Luclin/i){
  quest::say("Very well.");
  quest::selfcast(2734);
  }
}
The above will port you to the Nexus....
__________________
Random Segments of Code....

Last edited by Aramid; 09-28-2006 at 09:46 AM..
Reply With Quote