Ejemplo n.º 1
0
 public function __construct(Vector3 $pos, $id, $pitch = 0)
 {
     if (LevelSoundEventPacket::getSound($id) === false) {
         print "fail";
         return;
     }
     parent::__construct($pos->x, $pos->y, $pos->z);
     $this->id = $id;
     $this->pitch = (double) $pitch * 1000;
     $this->volume = (int) 100;
     $this->unknownBool = (bool) true;
     $this->unknownBool2 = (bool) true;
 }
Ejemplo n.º 2
0
 public function __construct(Vector3 $pos, $id, $pitch = 0)
 {
     if ($this->id < 1000 && LevelSoundEventPacket::getSound($id) === false) {
         Server::getInstance()->getLogger()->warning("Sound with ID '" . $id . "' wasn't found.");
         return;
     }
     parent::__construct($pos->x, $pos->y, $pos->z);
     $this->id = (int) $id;
     $this->type = 0;
     //Noteblock type
     $this->pitch = (double) $pitch * 1000;
     $this->unknownBool = (bool) true;
     $this->unknownBool2 = (bool) true;
 }
Ejemplo n.º 3
0
 public function __construct(Vector3 $pos, $r = 0, $g = 0, $b = 0)
 {
     parent::__construct($pos->x, $pos->y, $pos->z);
     $this->id = (int) LevelEventPacket::EVENT_SOUND_SPELL;
     $this->color = ($r << 16 | $g << 8 | $b) & 0xffffff;
 }
Ejemplo n.º 4
0
 public function __construct(Vector3 $pos, $id, $pitch = 0)
 {
     parent::__construct($pos->x, $pos->y, $pos->z);
     $this->id = (int) $id;
     $this->pitch = (double) $pitch * 1000;
 }
Ejemplo n.º 5
0
 public function __construct(Vector3 $pos, $instrument = self::INSTRUMENT_PIANO, $pitch = 0)
 {
     parent::__construct($pos->x, $pos->y, $pos->z);
     $this->instrument = $instrument;
     $this->pitch = $pitch;
 }