Any easy was of making the Mineplex count down sounds? I already have a timer for a game and everything ready I just need the noteblock sound that mineplex has on their pc server I am not sure how to do this, can anyone help?
I'm not sure that's possible. You're talking about Mineplex's PC server right? Bukkit and Spigot (and the other MC PC server softwares) have the noteblock sonds built it, as all it is just a modified version of vanilla Minecraft. PocketMine-MP doesn't have noteblocks working yet, thus their sonds are not implemented. You can do other sounds for a timer countdown (such as door sounds, chest, TNT explosions, etc) but not noteblocks.
I tried using this from genisys I added this to my plugin and I was not sure how to use it but I'm pretty sure it requires a noteblock in the map for it to work PHP: <?phpnamespace KingdomCore\utils;use pocketmine\math\Vector3;use pocketmine\network\protocol\BlockEventPacket;class NoteBlock extends GenericSound{ protected $instrument; protected $pitch; const INSTRUMENT_PIANO = 0; const INSTRUMENT_BASS_DRUM = 1; const INSTRUMENT_CLICK = 2; const INSTRUMENT_TABOUR = 3; const INSTRUMENT_BASS = 4; public function __construct(Vector3 $pos, $instrument = self::INSTRUMENT_PIANO, $pitch = 0){ parent::__construct($pos, $instrument, $pitch); $this->instrument = $instrument; $this->pitch = $pitch; } public function encode(){ $pk = new BlockEventPacket(); $pk->x = $this->x; $pk->y = $this->y; $pk->z = $this->z; $pk->case1 = $this->instrument; $pk->case2 = $this->pitch; return $pk; }}