I left out two steps in the documentation earlier. The zip is updated, but if you already installed, here is the rest:
Run this query:
ALTER TABLE `user` ADD `pmsound` TINYINT DEFAULT '1' NOT NULL;
In the modifyoptions template
Find:
Code:
<tr>
<td bgcolor="{firstaltcolor}"><normalfont><b>Pop up a box when you receive a Private Message?</b></normalfont><br>
<smallfont>This will pop up a small warning box when you receive a Private Message asking whether you want to view the message.</smallfont></td>
<td bgcolor="{firstaltcolor}"><normalfont>
<input type="radio" name="pmpopup" $pmpopupchecked value="yes"> yes
<input type="radio" name="pmpopup" $pmpopupnotchecked value="no"> no
</normalfont></td>
</tr>
Add after:
Code:
<tr>
<td bgcolor="{firstaltcolor}"><normalfont><b>Play a sound when you receive a Private Message?</b></normalfont><br>
<smallfont>This will play up a sound when you receive a Private Message.</smallfont></td>
<td bgcolor="{firstaltcolor}"><normalfont>
<input type="radio" name="pmsound" $pmsoundchecked value="yes"> yes
<input type="radio" name="pmsound" $pmsoundnotchecked value="no"> no
</normalfont></td>
</tr>