Example #1
0
 public function onEnter(SR_Player $player)
 {
     $c = Shadowrun4::SR_SHORTCUT;
     $b = chr(2);
     parent::onEnter($player);
     $p = $player->getParty();
     $p->notice("The shamane says: \"Hi, do you want to {$b}{$c}learn{$b} the arcane powers of {$b}magic{$b}?\"");
 }
Example #2
0
 public function onEnter(SR_Player $player)
 {
     // 		$p = $player->getParty();
     // 		$this->partyMessage($player, 'enter1');
     parent::onEnter($player);
     $this->partyMessage($player, 'enter2');
     return true;
     // 		$p->notice('You enter the school and take a look at the billboard: "Courses: Firearms, Pistols, Shotguns, SMGs, Sharpshooter"');
     // 		$p->notice('A teacher tips your shoulder: "Welcome. Are you here to learn a new skill? You can take a course anytime."');
 }
Example #3
0
 public function onEnter(SR_Player $player)
 {
     // 		$c = Shadowrun4::SR_SHORTCUT;
     // 		$b = chr(2);
     parent::onEnter($player);
     $this->partyMessage($player, 'hi');
     return true;
     // 		$p = $player->getParty();
     // 		$p->notice("The shamane says: \"Hi, do you want to {$b}{$c}learn{$b} the arcane powers of {$b}magic{$b}?\"");
 }
Example #4
0
 public function onEnter(SR_Player $player)
 {
     $c = Shadowrun4::SR_SHORTCUT;
     $b = chr(2);
     parent::onEnter($player);
     $p = $player->getParty();
     foreach ($p->getMembers() as $member) {
         $member instanceof SR_Player;
         $member->unsetTemp(Redmond_Teacher::TEMP_PISSED);
     }
     $p->notice("The elve says: \"Hi, do you want to {$b}{$c}learn{$b} the arcane powers of {$b}magic{$b}?\"");
 }
Example #5
0
 public function onEnter(SR_Player $player)
 {
     parent::onEnter($player);
     $this->partyMessage($player, 'enter2');
     return true;
 }
Example #6
0
 public function onEnter(SR_Player $player)
 {
     parent::onEnter($player);
     $this->partyMessage($player, 'welcome');
     // 		$p->notice("The shamane says: \"Hi, do you want to {$b}{$c}learn{$b} the arcane powers of {$b}magic{$b}?\"");
 }
Example #7
0
 public function onEnter(SR_Player $player)
 {
     $p = $player->getParty();
     $p->notice('You enter the school and walk to the training range. You see a dwarf in heavy armor watching the excercises."');
     return parent::onEnter($player);
 }