Cycling Avatars?
Never seen that myself. Some people have .gifs that cycle on a timer, though.
53 Bots/FF/Mace Mastermind | 53 NRG/FF/Electricity Defender | 50 Time/Dual Pistols/Soul Defender | 50 Demons/FF/Mace Mastermind | 51 Necro/Dark/Soul Mastermind | 50 Thugs/Time/Mace Mastermind | 50 Ice/Ice/Arctic Tanker | 50 Plant/Rad/Earth Controller | 50 Illusion/Trick Arrow Controller | 50 Gravity/Force Field Controller
Yes, I like Force Fields.
[ QUOTE ]
Never seen that myself. Some people have .gifs that cycle on a timer, though.
[/ QUOTE ]
Leech is one of the players who's avatar does this. I'm not entirely sure how it's done. Maybe he will pop in and tell us.
It's actually fairly simple, but requires some tools not available to every person. Most importantly, you need a server host which allows server-side scripting, such as PHP. Depending on the forum software you're going to use the image on, the server might need to allow PHP (or your script of choice) files to be named as an image file, since some forums enforce linking to PNGs, GIFs, or JPGs.
Once you've got such a web host, you upload the images you want to it, and create a server-side script which will randomly pick one of those images, and then either redirect the browser from the script to the image, or print out the image data with the correct MIME type
Edit: an example script --
<font class="small">Code:[/color]<hr /><pre><?php
$fileList = array();
$handle = opendir('.');
while (false !== ($file = readdir($handle))) {
$file_info = pathinfo($file);
if (strtolower($file_info['extension']) == 'png') {
$fileList[] = $file;
}
}
closedir($handle);
$imageNumber = time() % count($fileList);
$img = $fileList[$imageNumber];
header ('Content-type: image/png');
readfile($img);
?></pre><hr />
The above reads the folder where the script is stored to find any PNG files. Then it picks a random PNG out of the list and displays it.
http://www.fimfiction.net/story/36641/My-Little-Exalt
I have a php script to display a random image as an avatar, but I could have sworn that when I tried to use it here, it didn't work... Hmm...
P.S. - I tried to make a script similar to that, except I wanted it to grab any PNG, GIF, or JPG in the directory, but it would never work. PHP hates me.

[ ProTip: The banner is a link to art refs!! | The Khellection | The HBAS Repository | Brute Guides (4/16/10) | How To Post An Image - A Quick Guide ]
Biggest Troll on the forums? I'll give you a hint:

Mine is a php script that randomizes images in a specific directory. Do a search for "PHP image randomizer" and you'll get several examples and instructions.
Nifty!
53 Bots/FF/Mace Mastermind | 53 NRG/FF/Electricity Defender | 50 Time/Dual Pistols/Soul Defender | 50 Demons/FF/Mace Mastermind | 51 Necro/Dark/Soul Mastermind | 50 Thugs/Time/Mace Mastermind | 50 Ice/Ice/Arctic Tanker | 50 Plant/Rad/Earth Controller | 50 Illusion/Trick Arrow Controller | 50 Gravity/Force Field Controller
Yes, I like Force Fields.
I've seen some people who have avatars that change repeatedly. Every time you reset the page, the Avatar changes. How do you go about doing this?
Arc ID: 348998 - Becoming a villain
Arc ID: 373341 - To Save a Hero
Got Inf?