This hook can be used for doing some action before posting a comment.
Changelog
since 7.0.0 version
Usage
add_action("wpdiscuz_before_comment_post", function () {
$customValue = isset($_POST["customValue"]) ? intval($_POST["customValue"]) : 0;
});