Avatar
- 486 player
- Gaming Demi-god
- Posts: 1222
- Joined: Wed Sep 18, 2002 6:32 am
- Location: Europe
- GAMER
- Gaming Demi-god
- Posts: 1527
- Joined: Sun Sep 22, 2002 4:55 am
- Location: chasing chikeds in the snow!
what is an open node? I need a new avatar...any suggestions?
GAMER
GAMER
<img src="http://thumbs.deviantart.com/300W-96A09 ... rs_Sig.jpg">
i have a chik magnet...observe!
<MARQUEE BEHAVIOR="slide"><font color="crimson">
[MAGNET]-------------------- </marquee>
i have a chik magnet...observe!
<MARQUEE BEHAVIOR="slide"><font color="crimson">
[MAGNET]-------------------- </marquee>
- johpower
- Way too much free time
- Posts: 428
- Joined: Mon Jan 06, 2003 6:59 pm
- Location: Colorado North 40
DB: I DID see that image but it didn't look much like an example for you but if you can shrink it or take out an appropo chunk, more power to ya'.
Gamer: interesting avs can be searched in the Google image search. Give a keyword and you'll usually find a few (zillion). Copy the image when you are satisfied (and it's the right max size), then copy to your drive. In your DOS Games personal info, go to the bottom, delete current image, then upload the new one from the stored location on your drive (enter the path). You could just give the URL from the site it was from, but if the site goes down you may loose the av. All us thralls will be awaiting the new you with baited breath (we're bettin' you ace Chk-M8's!).
Gamer: interesting avs can be searched in the Google image search. Give a keyword and you'll usually find a few (zillion). Copy the image when you are satisfied (and it's the right max size), then copy to your drive. In your DOS Games personal info, go to the bottom, delete current image, then upload the new one from the stored location on your drive (enter the path). You could just give the URL from the site it was from, but if the site goes down you may loose the av. All us thralls will be awaiting the new you with baited breath (we're bettin' you ace Chk-M8's!).
Sig: "The Universe is change... but it is not exact change." -Fusco Bros.
- johpower
- Way too much free time
- Posts: 428
- Joined: Mon Jan 06, 2003 6:59 pm
- Location: Colorado North 40
DB: interesting.... If I change avatars, all of my old posts change avatar to the most recent choice. You change them and they are almost random. I've found the rodentia on some, a cat on some, a b&w poochie on some, etc. And the old ones don't stick to the messages they were made with. (See the 3 pics I found note... where's the rodent?) You waving the Magic Wand of Sysop or something?
Sig: "The Universe is change... but it is not exact change." -Fusco Bros.
-
- Way too much free time
- Posts: 558
- Joined: Wed Apr 23, 2003 10:28 pm
- Location: Nowhere.
- Dogbreath
- Admin
- Posts: 4620
- Joined: Sat Sep 14, 2002 7:02 pm
- Location: In the back of a jacked-up Ford.
php, and it's hardly magic.
It'll give you a different image every time you load a page. (Note that it's set to microtime() * 10000000 so wait about a second before re-reloading)
Code: Select all
<?php
header ("Content-Type: image/jpeg");
$pics = array (
"image",
"image",
"image",
//replace "image" with name of file, copy as many times as necessary
);
srand ((double) microtime() * 10000000);
shuffle ($pics);
$pic = $pics["0"];
$CLynePic = imageCreateFromJPEG($pic);
ImageJPEG($CLynePic);
?>
Right click on my avatar and click "properties... what other types of files end in ".php"?Oz wrote:it doesn't have to be php.
-
- Way too much free time
- Posts: 558
- Joined: Wed Apr 23, 2003 10:28 pm
- Location: Nowhere.
-
- Way too much free time
- Posts: 558
- Joined: Wed Apr 23, 2003 10:28 pm
- Location: Nowhere.