If you reduce it to certain usergroups only, it will run a conditional statement, something like:
PHP Code:
if(is_member_of($bbuserinfo, X, Y, Z)){
It will reduce your CPU usage because the whole code isn't running (not all users will match the condition)... but if your allowed usergroups are using the hacks frequently it'll increase server load because of how frequent they're being used.