Advertise Here

Author Topic: [Code] Adding the Runescape Admin Crown  (Read 261703 times)

0 Members and 1 Guest are viewing this topic.

Offline roser

  • SMF For Free Full Member
  • *
  • Posts: 166
    • View Profile

  • Total Badges: 13
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Adding the Runescape Admin Crown
« Reply #135 on: July 16, 2009, 10:37:35 am »
only 1 works the one with charelison  only works the other wont!:S
« Last Edit: July 16, 2009, 10:40:34 am by roser »

Offline Tretispker

  • SMF For Free Full Member
  • *
  • Posts: 176
  • The Blue forums
    • View Profile
    • The Blue Forum

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Adding the Runescape Admin Crown
« Reply #136 on: August 01, 2009, 07:13:16 am »
didn't work for me :
here's what happened
Code: [Select]
<script>
function name_across_board(){
//Created by Agent Moose (smcodes.smfforfree3.com)
var vfour = new Array()
vfour[vfour.length] = ["Tony","Tony","red","http://i277.photobucket.com/albums/kk51/jssmiles/10qhzb8.png
for(f=0;f<vfour.length;f++){
$("a[href*='u=']").each(function() {
if(this.innerHTML.match(vfour[f][0])){
this.innerHTML = this.innerHTML.replace(vfour[f][0],"<font color='" + vfour[f][2] + "'>" + vfour[f][3] + vfour[f][(vfour[f][1] != "" ? 1 : 0)] + "</font>");
};});};}
name_across_board();
</script>

http://theblueforum.smfforfree3.com/index.php

For all your needs :)

The Blue Crew Founder

Offline Seldom Fail

  • Helpers
  • *
  • Posts: 2082
  • Helping for 3 years! :)
    • View Profile
    • My Site!

  • Total Badges: 26
    Badges: (View All)
    Sixth year Anniversary Fifth year Anniversary Apple User Search Poll Voter
Re: [Code] Adding the Runescape Admin Crown
« Reply #137 on: August 01, 2009, 08:34:34 pm »
You have to use the image HTML tags. You also didn't close that line properly.

It should be this:
Code: [Select]
<script>
function name_across_board(){
//Created by Agent Moose (smcodes.smfforfree3.com)
var vfour = new Array()
vfour[vfour.length] = ["Tony","Tony","red","<img src='http://i277.photobucket.com/albums/kk51/jssmiles/10qhzb8.png' alt='' />"];
for(f=0;f<vfour.length;f++){
$("a[href*='u=']").each(function() {
if(this.innerHTML.match(vfour[f][0])){
this.innerHTML = this.innerHTML.replace(vfour[f][0],"<font color='" + vfour[f][2] + "'>" + vfour[f][3] + vfour[f][(vfour[f][1] != "" ? 1 : 0)] + "</font>");
};});};}
name_across_board();
</script>
<--- Donate to SMF For Free! :D

Offline roser

  • SMF For Free Full Member
  • *
  • Posts: 166
    • View Profile

  • Total Badges: 13
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Adding the Runescape Admin Crown
« Reply #138 on: August 04, 2009, 04:24:35 pm »
omg please help me!

it keep wont work only 1 persone gets his crown

Code: [Select]
code:
Code:
<script>
function name_across_board(){
//Created by Agent Moose (smcodes.smfforfree3.com)
var vfour = new Array()
vfour[vfour.length] = ["denis","denis","red","<img src='http://i137.photobucket.com/albums/q232/LaundryLady1947/Runescape/deleteafteriu0.png' />"];
vfour[vfour.length] = ["charelison","charelison","red","<img src='http://i137.photobucket.com/albums/q232/LaundryLady1947/Runescape/deleteafteriu0.png' />"];
for(f=0;f<vfour.length;f++){
$("a[href*='u=']").each(function() {
if(this.innerHTML.match(vfour[f][0])){
this.innerHTML = this.innerHTML.replace(vfour[f][0],"<font color='" + vfour[f][2] + "'>" + vfour[f][3] + vfour[f][(vfour[f][1] != "" ? 1 : 0)] + "</font>");
};});};}
name_across_board();
</script>

Offline Seldom Fail

  • Helpers
  • *
  • Posts: 2082
  • Helping for 3 years! :)
    • View Profile
    • My Site!

  • Total Badges: 26
    Badges: (View All)
    Sixth year Anniversary Fifth year Anniversary Apple User Search Poll Voter
Re: [Code] Adding the Runescape Admin Crown
« Reply #139 on: August 04, 2009, 04:27:44 pm »
EDIT
Code: [Select]
<script>
function name_across_board(){
//Created by Agent Moose (smcodes.smfforfree3.com)
var vfour = new Array()
vfour[vfour.length] = ["denis","denis","red","<img src='http://i137.photobucket.com/albums/q232/LaundryLady1947/Runescape/deleteafteriu0.png' alt='' />"];
vfour[vfour.length] = ["charelison","charelison","red","<img src='http://i137.photobucket.com/albums/q232/LaundryLady1947/Runescape/deleteafteriu0.png' alt='' />"];
for(f=0;f<vfour.length;f++){
$("a[href*='u=']").each(function() {
if(this.innerHTML.match(vfour[f][0])){
this.innerHTML = this.innerHTML.replace(vfour[f][0],"<font color='" + vfour[f][2] + "'>" + vfour[f][3] + vfour[f][(vfour[f][1] != "" ? 1 : 0)] + "</font>");
};});};}
name_across_board();
</script>

Works fine for me.
« Last Edit: August 04, 2009, 04:30:59 pm by Seldom Fail »
<--- Donate to SMF For Free! :D

Offline Robutal

  • SMF For Free Newbie
  • *
  • Posts: 3
    • View Profile

  • Total Badges: 5
    Badges: (View All)
    Topic Starter Level 1 First Post Second year Anniversary One year Anniversary
Re: [Code] Adding the Runescape Admin Crown
« Reply #140 on: August 22, 2009, 08:16:58 pm »
I need help finding my header/footer. I cant find it under admin, can you help me further?

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: [Code] Adding the Runescape Admin Crown
« Reply #141 on: August 22, 2009, 08:18:23 pm »
Admin > Manage Styles > Edit Header/Footer
« Last Edit: August 22, 2009, 08:23:46 pm by simply sibyl »

Offline Robutal

  • SMF For Free Newbie
  • *
  • Posts: 3
    • View Profile

  • Total Badges: 5
    Badges: (View All)
    Topic Starter Level 1 First Post Second year Anniversary One year Anniversary
Re: [Code] Adding the Runescape Admin Crown
« Reply #142 on: August 22, 2009, 09:23:31 pm »
I have a custom theme downloaded from the web, here's a picture it is not on mine!?? HELP.
« Last Edit: August 22, 2009, 09:30:22 pm by Robutal »

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: [Code] Adding the Runescape Admin Crown
« Reply #143 on: August 22, 2009, 09:42:24 pm »
The picture explains it.   You are not using one of our hosted forums. 
Support here is for SMF for Free hosted forums only

You need to go to simplemachines.org for support

Offline Robutal

  • SMF For Free Newbie
  • *
  • Posts: 3
    • View Profile

  • Total Badges: 5
    Badges: (View All)
    Topic Starter Level 1 First Post Second year Anniversary One year Anniversary
Re: [Code] Adding the Runescape Admin Crown
« Reply #144 on: August 22, 2009, 10:31:53 pm »
Okay, I will make a self hosted forum then! Cheers!

Offline Zion

  • SMF For Free Full Member
  • *
  • Posts: 104
    • View Profile

  • Total Badges: 11
    Badges: (View All)
    Topic Starter Combination Level 2 Level 1 100 Posts
Re: [Code] Adding the Runescape Admin Crown
« Reply #145 on: October 03, 2009, 12:17:37 am »
This worked and the staff at my forums that i just created are going to be sooooo happy. :)
I'm Back and trying harder.

Offline alucifer

  • SMF For Free Newbie
  • *
  • Posts: 8
    • View Profile

  • Total Badges: 5
    Badges: (View All)
    Topic Starter Level 1 First Post Second year Anniversary One year Anniversary
Re: [Code] Adding the Runescape Admin Crown
« Reply #146 on: October 14, 2009, 03:31:38 pm »
This is a very important message regarding the crown links.  The users who originally posted and uploaded the crown pictures, their accounts have remained inactive for 90 days, and this does not allow people to use the crowns in codes because they only have a message saying "so and so's account has been inactive for 90 days, check account for more information," instead of the actual crown.  Please send more links for the crowns and please, if you would be so kind, as to do this, I, and many others, will thank you.

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: [Code] Adding the Runescape Admin Crown
« Reply #147 on: October 14, 2009, 03:33:26 pm »
The crown images posted in the first post in this thread all show expect one of them so they are all (except that one image) working fine.

We always suggest that you download the image and put it on your own image host so that you do not risk losing the image.

Offline alucifer

  • SMF For Free Newbie
  • *
  • Posts: 8
    • View Profile

  • Total Badges: 5
    Badges: (View All)
    Topic Starter Level 1 First Post Second year Anniversary One year Anniversary
Re: [Code] Adding the Runescape Admin Crown
« Reply #148 on: October 14, 2009, 03:36:07 pm »
Some of the codes don't work anymore because people have left their accounts inactive on photobucken :tickedoff:

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: [Code] Adding the Runescape Admin Crown
« Reply #149 on: October 14, 2009, 03:37:26 pm »
Some of the codes don't work anymore because people have left their accounts inactive on photobucken :tickedoff:

That is why we suggest you host them yourself and not use other peoples links  ;)

Otherwise you use them at your own risk.