示例#1
0
 public function onNPCTalk(SR_Player $player, $word, array $args)
 {
     if (true === $this->onNPCQuestTalk($player, $word, $args)) {
         return true;
     }
     switch ($word) {
         case 'love':
             $quest = SR_Quest::getQuest($player, 'Seattle_Florist1');
             if ($quest->isDone($player)) {
                 return $quest->checkQuest($this, $player);
             }
         default:
             parent::onNPCTalk($player, $word, $args);
             // 				if (Shadowlang::hasLangNPC($this, $player, $word))
             // 				{
             // 					return $this->rply($word, $args);
             // 				}
             // 				return $this->rply('default', $args);
     }
 }