Footers
<script>
stop = "NUMBER"
c = document.getElementsByTagName("div");
for (a=0;a<c.length;a++){
//Created by Agent Moose (smcodes.smfforfree3.com)
if((c[a].className=="smalltext")&&(c[a].innerHTML.match(/Posts: (\d+)/))){
if(RegExp.$1 > stop){
c[a].innerHTML = c[a].innerHTML.replace(RegExp.$1,stop);
};};};
</script>
This will stop the post count when a user gets to a certain number. Just change NUMBER to the number you want the post count to stop at
