this is the code i have for it
<!--START MONEY HACK V3-->
<div id="mbody"><div>
<!--END MONEY HACK V3-->
<script language="javascript" type="text/javascript">
/* Created by Hechizero -
www.hechizero.comPoints Script v1.5
This code may not redistributed without the express permission from its creator.
This header must stay intact at all times. */
var CurrentPoints='0';
var PointsPattern=/\{Points\[<(\d+)>\]\}/i;
var PointsMiniPro='Points: ';
var PointsName='<font size="2"><b>Points:</b></font>';
var PointsProfileDesc='<font size="2"><b>Points:</b></font>';
function SavePointsChange () {
var websiteURL=document.creator.websiteurl;
var NewPoints=CurrentPoints;
if (document.creator.settings6 && CurrentPoints!=document.getElementById('_Points').value) {
NewPoints=document.getElementById('_Points').value;
}
if (websiteURL.value=='' || !websiteURL.value.match(/^http/i)) {
websiteURL.value=location.href.split('?')[0];
document.creator.websitetitle.value=document.title.split('-')[0];
}
websiteURL.value+=encodeURIComponent('{Points[<')+NewPoints+encodeURIComponent('>]}');
}
if (document.creator) {
var websiteURL=document.creator.websiteurl;
if (decodeURI(websiteURL.value).match(PointsPattern)) {
CurrentPoints=RegExp.$1;
websiteURL.value=decodeURI(websiteURL.value).replace(PointsPattern,'');
}
if (document.creator.settings6) {
var newInput=document.createElement('input');
newInput.type='text';
newInput.id='_Points';
newInput.value=CurrentPoints;
var oneTR=document.creator.settings6.parentNode.parentNode.parentNode;
var primaTR=oneTR.parentNode.parentNode.insertRow(oneTR.rowIndex);
primaTR.insertCell(0).innerHTML=PointsProfileDesc;
primaTR.insertCell(1).appendChild(newInput);
}
document.creator.onsubmit=SavePointsChange;
}
if (location.href.match(/action=(profile2|viewprofile)/i)) {
var tables=document.getElementsByTagName('table');
for (var h=0;h<tables.length;h++) {
if (tables[h].width=='100%' && tables[h].cellPadding=='2' && tables[h].rows[0].cells[0].firstChild.firstChild.innerHTML=='Name: ') {
var AWithPoints=tables[h].rows[11].getElementsByTagName('a')[0];
var DecodedA=decodeURI(AWithPoints.href);
if (AWithPoints.href!=location.href.split('index.cgi')[0] && DecodedA.match(PointsPattern)) {
CurrentPoints=PointsPattern.exec(DecodedA)[1];
AWithPoints.href=DecodedA.replace(PointsPattern,'');
}
tables[h].insertRow(13);
tables[h].rows[13].insertCell(0).innerHTML=PointsName;
tables[h].rows[13].insertCell(1).innerHTML='<font size="2">'+CurrentPoints+'</font>';
}
}
var tds=document.getElementsByTagName('td');
for (var e=0;e<tds.length;e++) {
if (tds[e].width=='30%' && tds[e].vAlign=='middle' && tds[e].className=='windowbg') {
var TDLinks=tds[e].getElementsByTagName('a');
for (var c=0;c<TDLinks.length;c++) {
if (decodeURI(TDLinks[c].href).match(PointsPattern)) {
TDLinks[c].href=decodeURI(TDLinks[c].href).replace(PointsPattern,'');
}
}
var newText=document.createTextNode(PointsMiniPro+CurrentPoints);
var TDFonts=tds[e].getElementsByTagName('font');
TDFonts[TDFonts.length-1].appendChild(newText);
}
}
}
if (location.href.match(/action=(calendarview|imshow)/i)) {
var tds=document.getElementsByTagName('td');
for (var h=0;h<tds.length;h++) {
if (tds[h].width=='20%' && tds[h].className.match(/windowbg/i) && tds[h].rowSpan=='2' && tds[h].getElementsByTagName('a').length>0) {
var TDLinks=tds[h].getElementsByTagName('a');
for (var e=0;e<TDLinks.length;e++) {
if (decodeURI(TDLinks[e].href).match(PointsPattern)) {
CurrentPoints=RegExp.$1;
TDLinks[e].href=decodeURI(TDLinks[e].href).replace(PointsPattern,'');
break;
}
}
var newText=document.createTextNode(PointsMiniPro+CurrentPoints);
var TDFonts=tds[h].getElementsByTagName('font');
TDFonts[TDFonts.length-1].appendChild(newText);
CurrentPoints='0';
}
}
}
if (location.href.match(/action=ml(all|letter|top|staff)/i)) {
var trs=document.getElementsByTagName('tr');
for (var h=0;h<trs.length;h++) {
if (trs[h].cells.length>2 && trs[h].cells[2].className=='windowbg' && trs[h].cells[2].firstChild.nodeName=='FONT' && trs[h].cells[2].getElementsByTagName('a').length>0) {
var oneA=trs[h].cells[2].getElementsByTagName('a')[0];
oneA.href=decodeURI(oneA.href).replace(PointsPattern,'');
}
}
}
</script
<head>
<script type="text/javascript">
<!--
/*
rap crews - Put members into crews
Created by Peter
This code cannot be reposted at anywhere other than SSDesigns or ProBoards, without permission.
This header must stay intact at all times.
*/
// crews...
var thecrews = [
"lyrical assasians", "Hufflepuff", "ruffrhyders", "g-unit"
];
// House text
var iHouse = "crews";
// Who can pick which user goes into a house? Put the username in...ie..["admin", "Peter"];
var iHAllowed = ["admin"];
var curhou = {
house: "n/a",
rownum: 1
};
var iHDesTxt = "Select a " + iHouse.toLowerCase() + " you wish this member to be in.";
var iHDes;
var iHFont = document.createElement("font");
var mHTxt = document.createTextNode(iHouse + ":");
var iTable = document.getElementsByTagName("table");
var iCell = document.getElementsByTagName("td");
iHFont.size = "-2";
iHDes = iHFont.cloneNode(true).appendChild(document.createTextNode(iHDesTxt));
iHFont.size = "-1";
iHFont.appendChild(mHTxt);
function sortHouse(){
switch(arguments[0]){
case 1 :
document.modifyForm.personaltext.value += " [H:" + arguments[1] + "]";
break;
case 0 :
if(document.modifyForm.personaltext.value.match(/ \[H:(\d+)\]/)){
document.getElementById("hphouse").selectedIndex = RegExp.$1;
document.modifyForm.personaltext.value = document.modifyForm.personaltext.value.replace(/ \[H:\d+\]/, "");
}
break;
}
}
function setHPersonalTxt(){
var perTxt = document.modifyForm.personaltext;
if(perTxt.value.length >= 94 && !/\[H:\d+\]/.exec(perTxt.value)){
perTxt.value = perTxt.value.substr(0, 94);
}
}
function createSelect(){
var nSel = document.createElement("select");
nSel.id = "hphouse";
nSel.options[0] = new Option("Select House", 0);
for(h = 0; h < theHouses.length; h ++){
nSel.options[nSel.options.length] = new Option(theHouses[h], (h + 1));
}
for(t = 0; t < iTable.length; t ++){
if(iTable.item(t).width == "650" && iTable.item(t).innerHTML.match(/Disable Account:/)){
var nRow = iTable.item(t).insertRow(iTable.item(t).rows.length);
for(a = 0; a < iHAllowed.length; a ++){
if(document.cookie.match(new RegExp("user=" + iHAllowed
+ ";"))){
nRow.style.display = "";
} else {
nRow.style.display = "none";
}
}
var nCell = nRow.insertCell(0);
nCell.appendChild(iHFont);
nCell = nRow.insertCell(1);
nCell.appendChild(nSel);
nCell = nRow.insertCell(2).appendChild(iHDes);
}
}
}
function doHMiniProfile(){
var mHFx = iHFont.cloneNode(true);
mHFx.style.fontSize = "11px";
for(c = 0; c < iCell.length; c ++){
if(iCell.item(c).width == "20%" && iCell.item(c).className == "windowbg" && iCell.item(c).innerHTML.match(/member is/)){
if(iCell.item(c).innerHTML.match(/ \[H:(\d+)\]/)){
if(RegExp.$1 != 0){
curhou.house = theHouses[(parseInt(RegExp.$1) - 1)];
}
iCell.item(c).innerHTML = iCell.item(c).innerHTML.replace(/ \[H:\d+\]/, "");
}
if(iCell.item(c).innerHTML.match(/Posts: (\d+,\d+|\d+)/)){
mHFx.replaceChild(document.createTextNode(iHouse + ": " + curhou.house), mHFx.firstChild);
if(iCell.item(c).lastChild.nodeName.toLowerCase() != "br"){
iCell.item(c).appendChild(document.createElement("br"));
}
iCell.item(c).appendChild(mHFx);
} else {
mHFx.appendChild(document.createTextNode(iHouse + ": " + curhou.house));
if(iCell.item(c).lastChild.nodeName.toLowerCase() != "br"){
iCell.item(c).appendChild(document.createElement("br"));
}
iCell.item(c).appendChild(mHFx);
}
}
}
}
function doHMemberBio(){
var bHFont = document.createElement("font");
var re = />Member's Bio( -)?/;
bHFont.size = "2";
for(t = 0; t < iTable.length; t ++){
if(iTable.item(t).cellPadding == "4" && iTable.item(t).rows.item(0).innerHTML.match(re)){
var iRow = iTable.item(t).getElementsByTagName("tr");
for(r = 0; r < iRow.length; r ++){
if(iRow.item(r).innerHTML.match(/>Posts:</)){
curhou.rownum = (iRow.item(r).rowIndex + 1);
}
}
var nRow = iTable.item(t).insertRow(curhou.rownum);
var nCell = nRow.insertCell(0);
var cBFont = bHFont.cloneNode(true);
bHFont.appendChild(document.createTextNode(iHouse + ":"));
nCell.appendChild(bHFont);
nCell = nRow.insertCell(1);
cBFont.appendChild(document.createTextNode(curhou.house));
nCell.appendChild(cBFont);
}
}
}
if(location.href.match(/=modifyprofile&user=/) && document.modifyForm){
createSelect();
document.modifyForm.onsubmit = function(){
if(Boolean(typeof usingMoneyCode != "undefined") && usingMoneyCode){
setPersonalTxt(82);
document.getElementById("money").value.sortMoney(1);
}
setHPersonalTxt();
sortHouse(1, document.getElementById("hphouse").selectedIndex);
}
sortHouse(0);
}
if(!location.href.match(/\/index.cgi$/)){
doHMiniProfile();
}
if(location.href.match(/=viewprofile/)){
doHMemberBio();
}
//-->
</script>
<script type="text/javascript">
var TD=document.getElementsByTagName('TD');
//Place chatroom menu image here,if none leave default
var image = "http://img32.exs.cx/img32/4786/chatroom2pg.gif"
TD[5].innerHTML+='<a href="/index.cgi?area=chat"><img src="'+image+'" border=0></a>'
</script>
<script type="text/javascript" language="JavaScript">
//Splash page by Nadim. Do not redistribute
//http://zdesign.proboards3.com
var Splash = "http://posters.westbalkanonline.com/speedlist/LP0737%20Rap%20Gods.jpg";
if(window.location.href.match(/http:\/\/(.*)\.com\/\D{5}\.cgi\??$/i)){
if(!document.referrer.match(RegExp.$1)){
document.getElementsByTagName("Table")[0].style.display = "none";
document.write('<br/><br/><br/><center><a href="index.cgi"><img src="'+Splash+'" border="1"/></a></center><br/><br/><br/><div style="display: none;" id="Splash"><div>');
}
}
</script>
<script type="text/javascript">
<!--
var iFakes = [
"fake member names ",
];
var iCell = document.getElementsByTagName("td");
for(c=0;c<iCell.length;c++){
with(iCell[c]){
if(vAlign=="top" && align=="left" && innerHTML.match(/\d+\sGuest?,\s((\d+)\sMember?)/i)){
for(f=0;f<iFakes.length;f++){
var iLen = iFakes.length + Math.floor(RegExp.$2);
var Len = (iLen == 1)? iLen + " Member" : iLen + " Members";
firstChild.innerHTML = firstChild.innerHTML.replace(RegExp.$1,Len)
firstChild.innerHTML += ', <a onclick="return false" href="index.cgi?viewprofile&user=' + iFakes[f] + '">' + iFakes[f] + '</a>';
}
}
}
}
//-->
</script>
can someone fix it