That didn't work, I dunno how to change this. Currently the template is:
<a href="editpost.php?pid={$post['pid']}" onclick="Thread.deletePost({$post['pid']}); return false;" style="display: none;" id="quick_delete_{$post['pid']}">{$lang->postbit_qdelete}</a>
<script type="text/javascript">
// <!--
$('quick_delete_{$post['pid']}').style.display = '';
// -->
</script>
Idk how to make that do a custom tool instead, for example (this won't work obviously but it's an example:
<a href="editpost.php?pid={$post['pid']}" onclick="Thread.2({$post['pid']}); return false;" style="display: none;" id="2_{$post['pid']}">{$lang->postbit_qdelete}</a>
<script type="text/javascript">
// <!--
$('customtool_2_{$post['pid']}').style.display = '';
// -->
</script>