Go Back   Tactical Gamer > General Forums > Pictures & Screenshots


Pictures & Screenshots Post your pictures and screenshots here. This is the only forum where high resolution images are acceptable to post.

Reply
 
Thread Tools
Old 07-31-2005, 01:17 AM   #1 (permalink)
 
Mishkan's Avatar
 
Join Date: Jul 2005
Location: Austin, Texas
Posts: 694
Fear the signature

Fear the ever changing signature!

And Avatar...


That I can't use here
I'll probably add on some more later.
__________________

[age-c1] [gchq-c1] [air2] [tog-c1]
[tg-c1]<victory
Quote:
Originally Posted by Arf
:icon3: - I see it and I think, "Supplies! Your Position!" but I'm not sure.
(It's a lightbulb)
Mishkan is offline   Reply With Quote
Old 07-31-2005, 01:21 AM   #2 (permalink)
 
Join Date: Aug 2004
Age: 37
Posts: 6,483
Re: Fear the signature

Quote:
Originally Posted by Mishkan
Fear the ever changing signature!

And Avatar...


That I can't use here
I'll probably add on some more later.
That's wicked.
Mateo is offline   Reply With Quote
Sponsored links
Old 07-31-2005, 01:25 AM   #3 (permalink)
 
Mishkan's Avatar
 
Join Date: Jul 2005
Location: Austin, Texas
Posts: 694
Re: Fear the signature

think you could hook up my avatar?
please
__________________

[age-c1] [gchq-c1] [air2] [tog-c1]
[tg-c1]<victory
Quote:
Originally Posted by Arf
:icon3: - I see it and I think, "Supplies! Your Position!" but I'm not sure.
(It's a lightbulb)
Mishkan is offline   Reply With Quote
Old 08-02-2005, 05:28 PM   #4 (permalink)
 
Mishkan's Avatar
 
Join Date: Jul 2005
Location: Austin, Texas
Posts: 694
Re: Fear the signature

basically it changes every minute, I have a few signatures that I made using pieces that I made previously. All from scratch btw (no outside resources)
__________________

[age-c1] [gchq-c1] [air2] [tog-c1]
[tg-c1]<victory
Quote:
Originally Posted by Arf
:icon3: - I see it and I think, "Supplies! Your Position!" but I'm not sure.
(It's a lightbulb)
Mishkan is offline   Reply With Quote
Old 08-02-2005, 06:40 PM   #5 (permalink)
 
Mishkan's Avatar
 
Join Date: Jul 2005
Location: Austin, Texas
Posts: 694
Re: Fear the signature

yah, I'll change it to every 10 seconds. Give me a minute to reprogram it

and this is the current cycle:




Edit: ok every 1 second, I'm lazy
__________________

[age-c1] [gchq-c1] [air2] [tog-c1]
[tg-c1]<victory
Quote:
Originally Posted by Arf
:icon3: - I see it and I think, "Supplies! Your Position!" but I'm not sure.
(It's a lightbulb)
Mishkan is offline   Reply With Quote
Old 08-02-2005, 06:50 PM   #6 (permalink)
 
Mishkan's Avatar
 
Join Date: Jul 2005
Location: Austin, Texas
Posts: 694
Re: Fear the signature

Ok its set to every 1 second, I'm lazy
__________________

[age-c1] [gchq-c1] [air2] [tog-c1]
[tg-c1]<victory
Quote:
Originally Posted by Arf
:icon3: - I see it and I think, "Supplies! Your Position!" but I'm not sure.
(It's a lightbulb)
Mishkan is offline   Reply With Quote
Sponsored links
Old 08-02-2005, 07:27 PM   #7 (permalink)
 
Mishkan's Avatar
 
Join Date: Jul 2005
Location: Austin, Texas
Posts: 694
Re: Fear the signature

Yah... of course...
__________________

[age-c1] [gchq-c1] [air2] [tog-c1]
[tg-c1]<victory
Quote:
Originally Posted by Arf
:icon3: - I see it and I think, "Supplies! Your Position!" but I'm not sure.
(It's a lightbulb)
Mishkan is offline   Reply With Quote
Old 08-03-2005, 02:37 AM   #8 (permalink)
Banned
 
AzzMan's Avatar
 
Join Date: May 2005
Location: Daytona Beach, FL
Age: 17
Posts: 1,774
Re: Fear the signature

Good work and such.
AzzMan is offline   Reply With Quote
Old 08-03-2005, 09:26 AM   #9 (permalink)
 
SkidMark's Avatar
 
Join Date: Apr 2005
Location: Louisville, KY
Age: 19
Posts: 459
Re: Fear the signature

I love the blue avatar, it would be awesome of you could get it to work.
__________________
|CS:S Development Team|
|CS:S Announcements, Rules, and SOP's|
SkidMark is offline   Reply With Quote
Old 08-03-2005, 01:03 PM   #10 (permalink)


 
CingularDuality's Avatar
 
Join Date: May 2003
Location: Dallas/Ft. Worth area of Texas, USA
Age: 33
Posts: 17,133
Re: Fear the signature

Quote:
Originally Posted by Mishkan
yah, I'll change it to every 10 seconds. Give me a minute to reprogram it

and this is the current cycle:
IMG]http://mishkanart.com/sig/aeolian.gif[/IMG]
IMG]http://mishkanart.com/sig/maven.gif[/IMG]
IMG]http://mishkanart.com/sig/samurai.gif[/IMG]

Edit: ok every 1 second, I'm lazy

What program are you using to do that?
CingularDuality is online now   Reply With Quote
Sponsored links
Old 08-03-2005, 04:50 PM   #11 (permalink)
 
Mishkan's Avatar
 
Join Date: Jul 2005
Location: Austin, Texas
Posts: 694
Re: Fear the signature

random scripting but mainly php


Code:
<?php
header ("Content-type: image/png");
Header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
Header('Expires: Thu, 19 Nov 1981 08:52:00 GMT');
Header('Pragma: no-cache');

$folder = "";

$exts = 'jpg jpeg gif';

$files = array(); $i = -1; // Initialize some variables
if ('' == $folder) $folder = './';
$handle = opendir($folder);
$exts = explode(' ', $exts);
//basically searches through the folder for the exts
while (false !== ($file = readdir($handle))) {
    foreach($exts as $ext) { // for each extension check the extension
        if (preg_match('/\.'.$ext.'$/i', $file, $test)) { // faster than ereg, case insensitive
            $files[] = $file; // it's good
            ++$i;
            }
        }
    }
closedir($handle); // We're not using it anymore
$rand = date('i', time())%($i+1);//this is set to every minute since the date function has i, it then gives the remainder of the time in minutes divided by the number of files +1. So this way it changes every minute
$image = imagecreatefromgif($files[$rand]); 
//creates the purty image

Imagepng($image);
imagedestroy($image);
?>
There is also an .htaccess file to make it think that its a gif

also the originals:
http://mishkanart.com/viewart.php?artid=36
http://mishkanart.com/viewart.php?artid=26
http://mishkanart.com/viewart.php?artid=29
__________________

[age-c1] [gchq-c1] [air2] [tog-c1]
[tg-c1]<victory
Quote:
Originally Posted by Arf
:icon3: - I see it and I think, "Supplies! Your Position!" but I'm not sure.
(It's a lightbulb)

Last edited by Mishkan; 08-03-2005 at 05:06 PM.
Mishkan is offline   Reply With Quote
Old 08-04-2005, 04:45 AM   #12 (permalink)


 
CingularDuality's Avatar
 
Join Date: May 2003
Location: Dallas/Ft. Worth area of Texas, USA
Age: 33
Posts: 17,133
Re: Fear the signature

Quote:
Originally Posted by Mishkan
random scripting but mainly php
OK, I'm an idiot when it comes to code like that... Is that something that I can copy and past to my TG webspace to make it work?
CingularDuality is online now   Reply With Quote
Old 08-04-2005, 06:10 PM   #13 (permalink)
 
Mishkan's Avatar
 
Join Date: Jul 2005
Location: Austin, Texas
Posts: 694
Re: Fear the signature

Not exactly...
Mishkan is offline   Reply With Quote
Old 08-05-2005, 05:08 AM   #14 (permalink)


 
CingularDuality's Avatar
 
Join Date: May 2003
Location: Dallas/Ft. Worth area of Texas, USA
Age: 33
Posts: 17,133
Re: Fear the signature

Quote:
Originally Posted by Mishkan
Not exactly...
OK, is it something that someone like Apophis could set me up with very easily? Like with only about five minutes of his time?
CingularDuality is online now   Reply With Quote
Old 08-05-2005, 01:35 PM   #15 (permalink)
 
Mishkan's Avatar
 
Join Date: Jul 2005
Location: Austin, Texas
Posts: 694
Re: Fear the signature

basically you'd have to post my code in a .png file. I don't know if all the proper libraries are installed here. And you have to put a .htacess file in the same folder
__________________

[age-c1] [gchq-c1] [air2] [tog-c1]
[tg-c1]<victory
Quote:
Originally Posted by Arf
:icon3: - I see it and I think, "Supplies! Your Position!" but I'm not sure.
(It's a lightbulb)
Mishkan is offline   Reply With Quote
Sponsored links
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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
Trackbacks are On
Pingbacks are On
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Irregulars: Want a New Signature? TychoCelchuuu Battlefield 2 - Tactical Gamer Irregulars 88 04-07-2006 04:18 PM
Fear - Multi-player TheFatKidDeath First Person Shooters (FPS) 0 02-12-2006 11:25 PM


All times are GMT -4. The time now is 04:09 PM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
©2004-2008 - Tactical Gamer - All Rights Reserved