상속: extends DataPacket
예제 #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;
 }
예제 #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;
 }