I use the hot block plugin, I changed it a bit, how can I make money go to the player for entering a safe zone for a certain block? This code is responsible for the fact that when you stand on the block you are credited with money, PHP: private function payCoins(Player $pl): void { $pl->sendTip($this->hotBlock->getMessage("block.move")); $pl->sendTip( $this->hotBlock->getMessage( "block.coins", array("count" => $this->hotBlock->getEconomy()->myMoney($pl)) ) ); $this->hotBlock->getEconomy()->addMoney($pl, 0.50, false, "HotBlock"); }} this function is responsible for the safe zone, when you bedrock a block through a hip, you need to deduct - money from the player? PHP: case Block::BEDROCK: $playerInLevel->sendTip($this->hotBlock->getMessage("ground.safe")); break;