Graal Forums  

Go Back   Graal Forums > General Forums > Graal Main Forum (English)
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 03-18-2001, 10:49 AM
Nai Nai is offline
Back!
Join Date: Mar 2001
Location: USA
Posts: 1,489
Nai is on a distinguished road
Send a message via AIM to Nai
I know this is pointless but, LYCIA! STOP CHANGING YO SIGNATURE! EVERYTIME I READ A POST AND YOU HAVE A POST YOU HAVE A DIFFERENT SIGNATURE! thanks
__________________
Reply With Quote
  #2  
Old 03-18-2001, 11:09 AM
Guest
Posts: n/a
I dont think she changes it, there are some scripts that have a random image generator
Reply With Quote
  #3  
Old 03-18-2001, 11:12 AM
BruceLee2000 BruceLee2000 is offline
TONYMONTANA
BruceLee2000's Avatar
Join Date: Mar 2001
Location: T E X A S
Posts: 1,514
BruceLee2000 will become famous soon enough
haha calm down chief its just a rotating image script
__________________
-T O N Y



much thanks to XDaKreepX for the sig
Reply With Quote
  #4  
Old 03-18-2001, 11:15 AM
Guest
Posts: n/a
I change my image each time I post too! It is a long process though!
Reply With Quote
  #5  
Old 03-18-2001, 12:32 PM
SSmutz SSmutz is offline
I hate me. :(
Join Date: Mar 2001
Posts: 2,633
SSmutz will become famous soon enough
right click the image on one of her sigs and select Properties (on ie5, i dunno about netscape) and it'll should the image name as sig.php or something like that, which makes a random image pop up there.
__________________
I hate graal.

NO! FOR THE MILLIONTH TIME, I AM NOT GOING TO PLAY GRAAL AGAIN! I HANGOUT IN THE NOT GRAAL RELATED FORUM, BECAUSE IT HAS NOTHING TO DO WITH GRAAL.
The End
Reply With Quote
  #6  
Old 03-18-2001, 12:37 PM
vergil vergil is offline
Registered User
vergil's Avatar
Join Date: Mar 2001
Posts: 1,408
vergil will become famous soon enough
Send a message via ICQ to vergil
nai that is a random image script. Like this:

<?php
header("content-type: image/gif");
srand((double)microtime()*10000000);
$randomtopic = rand(1,5);

if ($randomtopic == "1") {
include "avatar1.gif"; }

else if ($randomtopic == "2") {
include "avatar2.gif"; }

else if ($randomtopic == "3") {
include "avatar3.gif"; }

else if ($randomtopic == "4") {
include "avatar4.gif"; }

else if ($randomtopic == "5") {
include "avatar5.gif"; }

else {
echo "Error: Not found";
}
?>
Reply With Quote
  #7  
Old 03-18-2001, 01:57 PM
Crono Illusion Crono Illusion is offline
no. just no.
Crono Illusion's Avatar
Join Date: Mar 2001
Posts: 3,088
Crono Illusion will become famous soon enough
Maybe if I had more than one signature I'd do that.
__________________
NOTHING prances like a pony.
Reply With Quote
  #8  
Old 03-18-2001, 02:09 PM
FatherDante FatherDante is offline
Low res, high class!
FatherDante's Avatar
Join Date: Mar 2001
Location: Coming soon to the Super Famicon
Posts: 5,164
FatherDante will become famous soon enough
Send a message via ICQ to FatherDante Send a message via AIM to FatherDante
I have more than one.... but this is the only one I wanna use.
__________________

Take off in your Bean-with-Bacon Megarocket,
defender of the galaxy, Commander Keen!
Reply With Quote
  #9  
Old 03-18-2001, 02:47 PM
Psyker Psyker is offline
Tired Sloth
Join Date: Mar 2001
Posts: 6,217
Psyker will become famous soon enough
Send a message via AIM to Psyker Send a message via Yahoo to Psyker
Laudamus Te, Benedicimus Te, Adoramus Te.
Dante, what does that mean?
__________________
Reply With Quote
  #10  
Old 03-18-2001, 02:51 PM
FatherDante FatherDante is offline
Low res, high class!
FatherDante's Avatar
Join Date: Mar 2001
Location: Coming soon to the Super Famicon
Posts: 5,164
FatherDante will become famous soon enough
Send a message via ICQ to FatherDante Send a message via AIM to FatherDante
Hard to translate directly, cause there's no real word in english to plug in for benedicimus, but I think it means something along the lines of "We praise you, we do good for you, we adore you."
__________________

Take off in your Bean-with-Bacon Megarocket,
defender of the galaxy, Commander Keen!
Reply With Quote
  #11  
Old 03-18-2001, 02:54 PM
Psyker Psyker is offline
Tired Sloth
Join Date: Mar 2001
Posts: 6,217
Psyker will become famous soon enough
Send a message via AIM to Psyker Send a message via Yahoo to Psyker
ah, okay. I always wanted to know what that meant. Thanks Dante!
__________________
Reply With Quote
  #12  
Old 03-18-2001, 03:53 PM
FatherDante FatherDante is offline
Low res, high class!
FatherDante's Avatar
Join Date: Mar 2001
Location: Coming soon to the Super Famicon
Posts: 5,164
FatherDante will become famous soon enough
Send a message via ICQ to FatherDante Send a message via AIM to FatherDante
Yeah... I stole that from a choir piece by Vivaldi. I guess I should have put in Glorificamus Te in too.
__________________

Take off in your Bean-with-Bacon Megarocket,
defender of the galaxy, Commander Keen!
Reply With Quote
  #13  
Old 03-18-2001, 04:36 PM
galen galen is offline
Professional God
Join Date: Mar 2001
Location: Colorado, USA
Posts: 925
galen is on a distinguished road
Post Random sig script optomization

Use this one if you don't plan to keep adding more and more sigs.
NPC Code:
<?php 
header("content-type: image/gif");
srand((double)microtime()*10000000);
$randomtopic = rand(1,5);
switch ($randomtopic) {
2: include("avatar2.gif");
3: include("avatar3.gif");
4: include("avatar4.gif");
5: include("avatar5.gif");
default: include("avatar1.gif");
}
?>


Use this one if you'd going to add tons of them. This code removes the need to change the code each time you add more.
NPC Code:
<?php 
header("content-type: image/gif");
srand((double)microtime()*10000000);
$i=1;
$handle=opendir("sigs");
while ($file = readdir($handle)) {
if ($file != "." && $file != "..") {
$dirlist[$i] = $file;
$i++;
}
}
closedir($handle);
$randomtopic = rand(1,sizeof($dirlist));
include("sigs/".$dirlist[$randomtopic]);
?>

__________________
Galen S. Kant
galen "at" terraweb.net
Reply With Quote
  #14  
Old 03-18-2001, 06:29 PM
grim_squeaker_x grim_squeaker_x is offline
Retired Oldbie
grim_squeaker_x's Avatar
Join Date: Mar 2001
Posts: 3,084
grim_squeaker_x will become famous soon enough
So...

... If you put that in a usual text editor and then safe it as *.php it should work?
__________________

Reply With Quote
  #15  
Old 03-18-2001, 08:24 PM
Pago Pago is offline
Registered User
Pago's Avatar
Join Date: Mar 2001
Location: Virginia, USA
Posts: 299
Pago is on a distinguished road
Send a message via AIM to Pago
Talking

Yay! finally, someone posts the random sig script

But, uh, how do I implement it into the board? (vB Script)
__________________

Last edited by Pago; 03-18-2001 at 08:31 PM..
Reply With Quote
  #16  
Old 03-18-2001, 08:45 PM
Lycia Lycia is offline
Banned
Lycia's Avatar
Join Date: Mar 2001
Location: Over there. --->
Posts: 3,240
Lycia is on a distinguished road
Send a message via ICQ to Lycia Send a message via AIM to Lycia
You need to upload the code and your graphics to a server that has mySQL support and then you just link to the actual script file, not the graphics.
Reply With Quote
  #17  
Old 03-18-2001, 09:52 PM
grim_squeaker_x grim_squeaker_x is offline
Retired Oldbie
grim_squeaker_x's Avatar
Join Date: Mar 2001
Posts: 3,084
grim_squeaker_x will become famous soon enough
Blah.

Here's a server which supports it:

http://www.f2s.com

You'll need FTP for uploading though.
__________________

Reply With Quote
  #18  
Old 03-18-2001, 10:56 PM
Nai Nai is offline
Back!
Join Date: Mar 2001
Location: USA
Posts: 1,489
Nai is on a distinguished road
Send a message via AIM to Nai
okay...I see what it does. Sorry Lycia! (what head numbers are those in your sig?) thanx
__________________
Reply With Quote
  #19  
Old 03-18-2001, 11:12 PM
Pago Pago is offline
Registered User
Pago's Avatar
Join Date: Mar 2001
Location: Virginia, USA
Posts: 299
Pago is on a distinguished road
Send a message via AIM to Pago
So I take it that Angelfire doesn't support it

Ok...
__________________
Reply With Quote
  #20  
Old 03-19-2001, 12:40 AM
Fai Fai is offline
!!!!!!!!!!!!!!!!!!!!!!!!!
Fai's Avatar
Join Date: Mar 2001
Location: New York
Posts: 4,491
Fai will become famous soon enough
Send a message via ICQ to Fai Send a message via AIM to Fai
I don't think those are actual heads.
__________________
SIGNATURE
Reply With Quote
  #21  
Old 03-19-2001, 02:01 AM
Nai Nai is offline
Back!
Join Date: Mar 2001
Location: USA
Posts: 1,489
Nai is on a distinguished road
Send a message via AIM to Nai
I know the blue one isnt. But the Red on is. I use it sometimes on Classic.
__________________
Reply With Quote
  #22  
Old 03-19-2001, 10:06 AM
Lycia Lycia is offline
Banned
Lycia's Avatar
Join Date: Mar 2001
Location: Over there. --->
Posts: 3,240
Lycia is on a distinguished road
Send a message via ICQ to Lycia Send a message via AIM to Lycia
The blue one doesn't exist, but the red one is head1157.gif
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 08:37 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.