View Single Post
  #2  
Old 05-07-2009, 06:45 AM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,498
Default

Not that I know of.. however, you can script a skill check. Something along the lines of this method:

Code:
if ($text=~/hail/i) {
  if ($client->GetSkill(XX) > 50) {
    quest::say("Your skill is above 50, so you can understand me.");
  }
  else {
    quest::say("Gjoiwjf hoiaw oihaf 28? oi ahwue whiuhaw wewe=");
  }
}
Reply With Quote