Advertise Here

Author Topic: [Code] Change Username Across Board v7  (Read 13999 times)

0 Members and 1 Guest are viewing this topic.

Offline Agent Moose

  • Moderator
  • *****
  • Posts: 836
  • Do not PM me for Code Support or Request
    • View Profile

  • Total Badges: 32
    Badges: (View All)
    Search Level 6 Tenth year Anniversary Nineth year Anniversary Eighth year Anniversary
Re: [Code] Change Username Across Board v7
« Reply #15 on: June 14, 2009, 07:19:44 pm »
4markie, your problem has been solved :)  I updated the first post.

Check out Revolution X's Brand new Code Index!

Offline 4markie

  • SMF For Free Full Member
  • *
  • Posts: 141
    • View Profile
    • MARS- Markie's Action Replay Site

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Change Username Across Board v7
« Reply #16 on: June 15, 2009, 07:24:32 pm »
4markie, your problem has been solved :)  I updated the first post.



Thanks moosie

Offline 4markie

  • SMF For Free Full Member
  • *
  • Posts: 141
    • View Profile
    • MARS- Markie's Action Replay Site

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Change Username Across Board v7
« Reply #17 on: June 21, 2009, 12:15:04 pm »
Now it doesn't work at all  ???

Moose I think there's something wrong with the code.

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] Change Username Across Board v7
« Reply #18 on: June 21, 2009, 03:10:50 pm »
4markie - could you please post the code you are using so we can take a look?

 
EDIT

Hi 4markie,

I looked at your source code and found this as your footers:
Code: [Select]
<script>
function name_across_board(){
//Created by Agent Moose (smcodes.smfforfree3.com)
var vfour = new Array()
vfour[vfour.length] = ["4markie","4markie","FAILURE","<img src='http://i272.photobucket.com/albums/jj168/Roboticopperatingbuddy/crown_gold.gif' />"];
vfour[vfour.length] = ["UnknownToaster","UnknownToaster","FAILURE","<img src='http://i272.photobucket.com/albums/jj168/Roboticopperatingbuddy/crown_gold.gif' />"];
vfour[vfour.length] = ["Code Slasher","Code Slasher","FAILURE","<img src='http://i137.photobucket.com/albums/q232/LaundryLady1947/Runescape/mod_gold.gif' />"];
 
 
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>

The color section says "FAILURE"... does it appear that way in your footers?
« Last Edit: June 21, 2009, 03:22:07 pm by Seldom Fail »
<--- Donate to SMF For Free! :D

Offline 4markie

  • SMF For Free Full Member
  • *
  • Posts: 141
    • View Profile
    • MARS- Markie's Action Replay Site

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Change Username Across Board v7
« Reply #19 on: June 22, 2009, 07:32:22 pm »
4markie - could you please post the code you are using so we can take a look?

 
EDIT

Hi 4markie,

I looked at your source code and found this as your footers:
Code: [Select]
<script>
function name_across_board(){
//Created by Agent Moose (smcodes.smfforfree3.com)
var vfour = new Array()
vfour[vfour.length] = ["4markie","4markie","FAILURE","<img src='http://i272.photobucket.com/albums/jj168/Roboticopperatingbuddy/crown_gold.gif' />"];
vfour[vfour.length] = ["UnknownToaster","UnknownToaster","FAILURE","<img src='http://i272.photobucket.com/albums/jj168/Roboticopperatingbuddy/crown_gold.gif' />"];
vfour[vfour.length] = ["Code Slasher","Code Slasher","FAILURE","<img src='http://i137.photobucket.com/albums/q232/LaundryLady1947/Runescape/mod_gold.gif' />"];
 
 
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>

The color section says "FAILURE"... does it appear that way in your footers?


Yes. And I am aware of the "FAILURE" thing.  I did not want a color so I just put failure cause I didn't know what else to put  :P

Anyhow, I currently have that in my footers, It's a substitute for Username across board V7 until moose fixes it.  I currently do not have the Username across board V7 in my footers. Would you like me to put it back in and give you the code I'm using?

Thanks!

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] Change Username Across Board v7
« Reply #20 on: June 22, 2009, 07:39:43 pm »
You can't just put FAILURE.

Leave it blank... see if that fixes it ;)


EDIT OH OK!

You don't have the v7 in your footers... ya... I'm trying to get it to work... one second :)


« Last Edit: June 22, 2009, 08:09:31 pm by Seldom Fail »
<--- Donate to SMF For Free! :D

Offline 4markie

  • SMF For Free Full Member
  • *
  • Posts: 141
    • View Profile
    • MARS- Markie's Action Replay Site

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: [Code] Change Username Across Board v7
« Reply #21 on: July 29, 2009, 07:01:24 pm »
Forum Url: http://mars.smfforfree.com
Moosie, are you there?  For some reason the code doesn't work at all now  :-\

Offline WVaGAL

  • SMF For Free Full Member
  • *
  • Posts: 177
  • Live everyday like it's your last!
    • View Profile
    • Dezarae's Politics & More

  • Total Badges: 21
    Badges: (View All)
    Level 5 Fifth year Anniversary Fourth year Anniversary Third year Anniversary Second year Anniversary
Re: [Code] Change Username Across Board v7
« Reply #22 on: March 08, 2012, 07:17:12 am »
I probably will have a few questions about this later.I am going to make a color for each group. Newbie,Jr. etc..
http://dezaraespoliticsmore.freesmfhosting.com/index.php

Come Visit Us..We Would Love To Have You!

Offline Andrew

  • Helpers
  • *
  • Posts: 2060
  • Andrew at your service
    • View Profile
    • Alabama Weather Prediction

  • Total Badges: 32
    Badges: (View All)
    10 Poll Votes Level 6 Eighth year Anniversary Seventh year Anniversary Sixth year Anniversary
Re: [Code] Change Username Across Board v7
« Reply #23 on: March 08, 2012, 01:44:14 pm »
I saw your reply in another topic but it's relevant to this one.

You wanted to make usernames italic. Use the <em> tags.

Code: [Select]
v7[v7.length] = ["ID","<em>Username here</em>","COLOR"];
I haven't used this code personally, but I'm pretty sure you can leave the COLOR option blank.

Offline WVaGAL

  • SMF For Free Full Member
  • *
  • Posts: 177
  • Live everyday like it's your last!
    • View Profile
    • Dezarae's Politics & More

  • Total Badges: 21
    Badges: (View All)
    Level 5 Fifth year Anniversary Fourth year Anniversary Third year Anniversary Second year Anniversary
Re: [Code] Change Username Across Board v7
« Reply #24 on: March 13, 2012, 07:58:40 am »
Thanks! Sorry I posted in the wrong place. I have other questions for you on the forum. ;)



I saw your reply in another topic but it's relevant to this one.

You wanted to make usernames italic. Use the <em> tags.

Code: [Select]
v7[v7.length] = ["ID","<em>Username here</em>","COLOR"];
I haven't used this code personally, but I'm pretty sure you can leave the COLOR option blank.

http://dezaraespoliticsmore.freesmfhosting.com/index.php

Come Visit Us..We Would Love To Have You!

Offline Agent Moose

  • Moderator
  • *****
  • Posts: 836
  • Do not PM me for Code Support or Request
    • View Profile

  • Total Badges: 32
    Badges: (View All)
    Search Level 6 Tenth year Anniversary Nineth year Anniversary Eighth year Anniversary
Re: [Code] Change Username Across Board v7
« Reply #25 on: April 17, 2012, 09:45:26 am »
Why yes, you can leave the color option blank :)
Check out Revolution X's Brand new Code Index!

Offline WVaGAL

  • SMF For Free Full Member
  • *
  • Posts: 177
  • Live everyday like it's your last!
    • View Profile
    • Dezarae's Politics & More

  • Total Badges: 21
    Badges: (View All)
    Level 5 Fifth year Anniversary Fourth year Anniversary Third year Anniversary Second year Anniversary
Re: [Code] Change Username Across Board v7
« Reply #26 on: October 29, 2012, 11:20:59 pm »
Thanks everyone! :)
http://dezaraespoliticsmore.freesmfhosting.com/index.php

Come Visit Us..We Would Love To Have You!

 

Related Topics

  Subject / Started by Replies Last post
50 Replies
13013 Views
Last post July 30, 2007, 09:58:16 am
by Agent Moose
27 Replies
9594 Views
Last post May 19, 2009, 07:33:01 am
by Seldom Fail
10 Replies
15710 Views
Last post January 11, 2014, 03:05:53 am
by Lolcopte
14 Replies
6443 Views
Last post May 18, 2009, 09:32:27 pm
by Seldom Fail