Q2A can award points for accepting answers, but it does so indiscriminately, even if the accepted answer is from the user posting the question. For my own Q2A forum I wanted the person accepting an answer to be awarded points only if they accepted someone else's answer, so that users wouldn't game the system by posting lots of trivial questions and accepting their own answers (not that I'd have to worry about people doing that ATM, but anyway).
Initially I simply patched the respective query in qa-include/db/points.php, but that is suboptimal as the change doesn't survive software updates. So I wrote a plugin for this as finger practice while I'm learning PHP:
https://github.com/ansgarwiechers/q2a-no-self-accept-points
Enjoy.
The plugin overrides the function qa_db_points_calculations(). If there is a better way of doing this: feel free to suggest.
Update:
The plugin now also enforces the default behavior of not awarding "having your answer selected as the best" points for accepting self-answers.