James4U,
Very cool plugin. I see that in an earlier post you talked about creating pie charts. Check out
http://www.codeguru.com/Csharp/Csharp/cs_graphics/chartsandgraphing/article.php/c6145/. I added this class to Steven's original code and got pie charts in xlobby with only a few extra lines of code. Something like:
PieChart pc = new PieChart();
decimal[] vals = new decimal[] {Convert.toDecimal(free/total),Convert.toDecimal(used/total)};
return pc.Draw(System.Drawing.Color.Black ,100,100,vals);
Then I just needed to add a check for zero values because of a divide by zero error.
Side note: I have written a couple plugins but don't have any place to upload them. Anyone know a good place to get free web space?