No need to hack.
Just make a new Custom Profile in your Admin CP, and note down the custom profile id number (not the order - look at the URL to find the id number). Make this custom profile editable by user, and call it "Refresh rate in seconds".
Then, open your forumhome template.
Add this in between <head> and </head>
Code:
<meta http-equiv="refresh" content="$bbuserinfo[fieldxx]"; URL=index.php">
Replace xx with the id number of the custom profile field. There you go.

Not tested, but should work. The user can edit his profile to edit that custom profile and enter the refresh rate in seconds.
If that doesn't work, you may have to hack index.php -
Open index.php and below
<?
Just add:
PHP Code:
if (!$bbuserinfo[fieldxx]) {
$bbuserinfo[fieldxx]="yy";
}
Replace xx with the profile id number.
Replace yy with the default refresh rate if someone hasn't changed it.
Again, untested, but should work.