RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

BOD & [Gendoc's WEB LINKS

FingersMcSteal

Sorceror
BOD & [Gendoc's WEB LINKS

I'm updating my servers BOD system.
The server documentation command creates the bod tables (along with all the other server documents)... but this is part of the generate doc's command, i've highlighted a couple of broke links in there but you should get the idea...

Code:
private static void WriteTailorBODHeader( StreamWriter html, string title )
{
	html.WriteLine( "      <table width=\"850\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" );
	html.WriteLine( "      <tr><td class=\"tbl-border\">" );
	html.WriteLine( "      <table border=\"0\" width=\"850\" cellpadding=\"0\" cellspacing=\"1\">" );
	html.WriteLine( "         <tr>" );
	html.WriteLine( "            <td width=\"250\" rowspan=\"2\" class=\"entry\"><center>{0}</center></td>", title );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><a href=\"[COLOR="Red"]http://www.runuo.com/images/bodreward_cloth_full.jpg[/COLOR]\"><img src=\"[COLOR="red"]http://www.runuo.com/images/bodreward_cloth_1.jpg[/COLOR]\" alt=\"Colored Cloth (Level 1)\" border=\"0\"></a></center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><a href=\"[COLOR="red"]http://www.runuo.com/images/bodreward_cloth_full.jpg[/COLOR]\"><img src=\"http://www.runuo.com/images/bodreward_cloth_2.jpg\" alt=\"Colored Cloth (Level 2)\" border=\"0\"></a></center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><a href=\"[COLOR="Red"]http://www.runuo.com/images/bodreward_cloth_full.jpg[/COLOR]\"><img src=\"http://www.runuo.com/images/bodreward_cloth_3.jpg\" alt=\"Colored Cloth (Level 3)\" border=\"0\"></a></center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><a href=\"[COLOR="red"]http://www.runuo.com/images/bodreward_cloth_full.jpg[/COLOR]\"><img src=\"[COLOR="red"]http://www.runuo.com/images/bodreward_cloth_4.jpg[/COLOR]\" alt=\"Colored Cloth (Level 4)\" border=\"0\"></a></center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><a href=\"[COLOR="red"]http://www.runuo.com/images/bodreward_cloth_full.jpg[/COLOR]\"><img src=\"http://www.runuo.com/images/bodreward_cloth_5.jpg\" alt=\"Colored Cloth (Level 5)\" border=\"0\"></a></center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><a href=\"http://www.runuo.com/images/bodreward_sandals_full.jpg\"><img src=\"http://www.runuo.com/images/bodreward_sandals.jpg\" alt=\"Colored Sandals\" border=\"0\"></a></center></td>" );
	html.WriteLine( "            <td width=\"100\" colspan=\"4\" class=\"entry\"><center>Power Scrolls</center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><img src=\"http://www.runuo.com/images/bodreward_smallhides.jpg\" alt=\"Small Stretched Hide\"></center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><img src=\"http://www.runuo.com/images/bodreward_mediumhides.jpg\" alt=\"Medium Stretched Hide\"></center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><img src=\"http://www.runuo.com/images/bodreward_lighttapestry.jpg\" alt=\"Light Flower Tapestry\"></center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><img src=\"http://www.runuo.com/images/bodreward_darktapestry.jpg\" alt=\"Dark Flower Tapestry\"></center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><img src=\"http://www.runuo.com/images/bodreward_brownbearrug.jpg\" alt=\"Brown Bear Rug\"></center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><img src=\"http://www.runuo.com/images/bodreward_polarbearrug.jpg\" alt=\"Polar Bear Rug\"></center></td>" );
	html.WriteLine( "            <td width=\"25\" rowspan=\"2\" class=\"entry\"><center><img src=\"http://www.runuo.com/images/bodreward_clothingbless.jpg\" alt=\"Clothing Bless Deed\"></center></td>" );
	html.WriteLine( "            <td width=\"75\" colspan=\"3\" class=\"entry\"><center>Runic Kits</center></td>" );
	html.WriteLine( "         </tr>" );
	html.WriteLine( "         <tr>" );
	html.WriteLine( "            <td width=\"25\" class=\"entry\"><center><small>+5</small></center></td>" );
	html.WriteLine( "            <td width=\"25\" class=\"entry\"><center><small>+10</small></center></td>" );
	html.WriteLine( "            <td width=\"25\" class=\"entry\"><center><small>+15</small></center></td>" );
	html.WriteLine( "            <td width=\"25\" class=\"entry\"><center><small>+20</small></center></td>" );
	html.WriteLine( "            <td width=\"25\" class=\"entry\"><center><img src=\"http://www.runuo.com/images/bodreward_runic_spined.jpg\" alt=\"Runic Sewing Kit: Spined\"></center></td>" );
	html.WriteLine( "            <td width=\"25\" class=\"entry\"><center><img src=\"http://www.runuo.com/images/bodreward_runic_horned.jpg\" alt=\"Runic Sewing Kit: Horned\"></center></td>" );
	html.WriteLine( "            <td width=\"25\" class=\"entry\"><center><img src=\"http://www.runuo.com/images/bodreward_runic_barbed.jpg\" alt=\"Runic Sewing Kit: Barbed\"></center></td>" );
	html.WriteLine( "         </tr>" );
}

Basically the links to the images are broke now, is there any chance Ryan or someone over there could fix the link please... or if someone's got these images somewhere for a download it would be a great help.

This is giving me a few problems while i setup the layout for my BOD tables.

I've wipped IE's history and offline files so i'm stuck, and i enjoy HTML code at the best of times :(
 
Top