Questions....

The_Werewolf_Link

Senior Member
Joined
Sep 14, 2005
Posts
53
Bells
1,050
1.How do you add Bells to your forum?
2.How do you change the "Forum Led By" to "Forum Moderator"?
3.How do I get skins?

I just started a forum, so I would appreciate your help.....
 
i can get you a skin just give me a link to your board :)\
and i can get you money


:)
i think i can fix the moderator thing
 
ok heres how you do the mod thing
put this is board wrappers, footer

Code:
<SCRIPT LANGUAGE="JavaScript">
<!--
function change(obj,obj2) {
var range = document.body.createTextRange(); 
range.collapse(true); 
while (range.findText(obj)) { 
range.text=obj2;
range.collapse(false); 
}}

change("Forum Led By","Forum Moderator");

// -->
</SCRIPT>
it should work tell me if it doesn't

money
Code:
<script type="text/javascript">
// Money code
// By Gornakle of InvisionFree.com

var sign = "$";
var name = "Money";
var PerPost = 10;
var default_amount = 0;

var MID=[];
MID["member1"]="20"
MID["member2"]="-30"
MID["member3"]="120"

// No need to edit below this line!
td=document.getElementsByTagName("TD")
for(i=0;i<td.length;i++) {
if((td[i].className=="post1"||td[i].className=="post2")&&td[i].innerHTML.match("Posts: ")&&td[i].width!="100%") {
 sPost=td[i].getElementsByTagName("SPAN")[0]
 if(sPost.innerHTML.replace(",","").replace('.','').replace(' ','').match(/Posts: (\d+)/)) Posts = parseInt(RegExp.$1) 
 uname = td[i-2].innerHTML.replace(/<[^>]+>/g,"").replace(/ /g,"")
 if(MID[uname]){ EXP = (parseInt(MID[uname]) + (Posts * PerPost))+parseInt(default_amount) }
else{ EXP = (Posts * PerPost)+parseInt(default_amount) }
var midR="Group: " + sPost.innerHTML.split('Group: ')[1]
var topR=sPost.innerHTML.split('Group: ')[0]
if(sPost.innerHTML.match('<!-- placeholder -->')) { 
NewCode = sPost.innerHTML.replace("<!-- placeholder -->", ""+name + ": " + sign + EXP + "<br><!-- placeholder -->")
}
else {
NewCode = topR + midR +name + ": " + sign + EXP + "<br><!-- placeholder --><br><br>"
}

sPost.innerHTML = NewCode
}}
</script>
again for footer

to change money you have to make a
MID["member1"]="20"
for everyone
make it something like this to give +20 to me
MID["zeldafreak104"]="20"
to add 20 more make it
MID["zeldafreak104"]="40"
ok?
 
Back
Top