Total Members Voted: 13
[RB]V!TaL: YOU QUOTE ME I KILL YOU
If you don't like how normal single colored brightskins look so incredibly unrealistic and flat, you might like these.
Sweet! Now my screen can stay somewhat readable even on those painfully bright JUMP maps (and apparently PakScape works great under WINE, too).
I'd recommend removing the splash page (as cool as it looks, it'll slow down users as well as confuse search engines and text browsers), and adding some alt text for the menu images. The button font could be a bit more readable, too, although many browsers will display alt text when the cursor hovers over an image.
QuoteIf you don't like how normal single colored brightskins look so incredibly unrealistic and flat, you might like these.That's like saying <--- this smiley looks more realistic than this smiley --->
In many of the pak files I have, they contain brightskins that are nothing more than one color spread over the PCX skin file. Elysium's brightskins are like the normal skins having contour shading and suit details, but with a neon color for the suit, while keeping the original heads and arms. Personally, I don't like the appearance of the single colored skins. They just look crappy. I thought Elysium's skins looked better than anything else I had ever seen, so I included them. Both of those are the only pak files I personally use. My custom pak is "pak8", I have the brightskins named "pak9" so that I can easily remove them if I don't want to use them.
Confuse search engines? How so? I could probably add some text in black at the bottom (to make it invisible) with certain search keywords. I think there's a way to encode that into the page another way, but I don't know how to do it. I'm just an html-noob.
<img src="http://focalor.tastyspleen.net/images/FocalorSigil.gif">
<img src="http://focalor.tastyspleen.net/images/FocalorSigil.gif" alt="Sigil of Focalor (enter site)">
<a href="http://focalor.tastyspleen.net/news.html"><image border="0" id='button1' src="http://focalor.tastyspleen.net/images/buttons/news1.png" alt="News"onmouseover = 'document.getElementById("button1").src = "http://focalor.tastyspleen.net/images/buttons/news2.png"'onmouseout = 'document.getElementById("button1").src = "http://focalor.tastyspleen.net/images/buttons/news1.png"'></a>
Search engines and text-mode browsers just see a bunch of linked images, with no indication of what they're linked to (except by deciphering the URL). At the very least you could turn this:Code: [Select]<img src="http://focalor.tastyspleen.net/images/FocalorSigil.gif">into this:Code: [Select]<img src="http://focalor.tastyspleen.net/images/FocalorSigil.gif" alt="Sigil of Focalor (enter site)">and likewise add alt text to the menu images:Code: [Select]<a href="http://focalor.tastyspleen.net/news.html"><image border="0" id='button1' src="http://focalor.tastyspleen.net/images/buttons/news1.png" alt="News"onmouseover = 'document.getElementById("button1").src = "http://focalor.tastyspleen.net/images/buttons/news2.png"'onmouseout = 'document.getElementById("button1").src = "http://focalor.tastyspleen.net/images/buttons/news1.png"'></a>
Also, I can't seem to find the <image> element in either HTML 4 or XHTML 1, although it works fine on both browsers I tested... I'd recommend changing it to <img>.