This should be very simple to make, so don't worry.

Well the purpose of the RuneScape crowns code is to add a crown next to the admin's name indicating that they are a staff member right?
When you upgrade a member to a mod or admin, the crown will not be added automaticly, you must edit your headers and footers to add a crown next to their name (at least with the code I have).
Creating a new version of the code will help prevent such fuss, having to edit your headers and footers every time you upgrade a member to an admin.
I would really appreciate a new version of this code that only makes a certain member group have a crown, not a version that adds a crown depending on name.
Here is the code I am currently using:
<script>
function name_across_board(){
//Created by Agent Moose (smcodes.smfforfree3.com)
var vfour = new Array()
vfour[vfour.length] = ["4markie","4markie","FFFF49","<img src='http://i272.photobucket.com/albums/jj168/Roboticopperatingbuddy/crown_gold.gif' />"];
vfour[vfour.length] = ["UnknownToaster","UnknownToaster","FFFF49","<img src='http://i272.photobucket.com/albums/jj168/Roboticopperatingbuddy/crown_gold.gif' />"];
vfour[vfour.length] = ["Code Slasher","Code Slasher","FFFF49","<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>
Your time would be greatly appreciated, even if this is not possible to make
-Marc
http://mars.smfforfree.com/