Is it possible place block by plugin with place sound? because when block place another player it make sound
PHP: public function onBlockPlace(BlockPlaceEvent $event){$p = $event->getPlayer();$sound = SomeSound($p);$p->getLevel()->addSound($sound);}
http://jenkins.pocketmine.net/job/P...cketmine_1_1level_1_1sound_1_1_bat_sound.html - Example of BatSound. Check the other sounds under the BatSound.
I know but when another player place block it play sound so is there any way how to place block like player.
So.. You want the block placing sound? Try sending fake blocks to the client under/above them, and see if that works?