Welcome to Tactical Gamer

+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 20
Discussion: General Forums / Pictures & Screenshots - Fear the signature - Fear the ever changing signature! And Avatar... That I can't use here I'll probably add
  1. #1

    Mishkan's Avatar

    Join Date
    Jul 2005
    Location
    Austin, Texas
    Posts
    706

    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)

  2.  
  3. #2


    Join Date
    Aug 2004
    Age
    40
    Posts
    6,210

    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.

  4.  
  5. #3

    Mishkan's Avatar

    Join Date
    Jul 2005
    Location
    Austin, Texas
    Posts
    706

    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)

  6.  

     
  7. #4

    Mishkan's Avatar

    Join Date
    Jul 2005
    Location
    Austin, Texas
    Posts
    706

    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)

  8.  
  9. #5

    Mishkan's Avatar

    Join Date
    Jul 2005
    Location
    Austin, Texas
    Posts
    706

    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)

  10.  
  11. #6

    Mishkan's Avatar

    Join Date
    Jul 2005
    Location
    Austin, Texas
    Posts
    706

    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)

  12.  

     
  13. #7

    Mishkan's Avatar

    Join Date
    Jul 2005
    Location
    Austin, Texas
    Posts
    706

    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)

  14.  
  15. #8

    AzzMan's Avatar

    Join Date
    May 2005
    Location
    Daytona Beach, FL
    Age
    21
    Posts
    1,774

    Re: Fear the signature

    Good work and such.

  16.  
  17. #9

    SkidMark's Avatar

    Join Date
    Apr 2005
    Location
    Louisville, KY
    Age
    22
    Posts
    459

    Re: Fear the signature

    I love the blue avatar, it would be awesome of you could get it to work.

  18.  

     
  19. #10

    CingularDuality's Avatar

    Join Date
    May 2003
    Location
    Dallas/Ft. Worth area of Texas, USA
    Age
    37
    Posts
    18,761

    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?

  20.  
  21. #11

    Mishkan's Avatar

    Join Date
    Jul 2005
    Location
    Austin, Texas
    Posts
    706

    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
    Last edited by Mishkan; 08-03-2005 at 05:06 PM.

    [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)

  22.  
  23. #12

    CingularDuality's Avatar

    Join Date
    May 2003
    Location
    Dallas/Ft. Worth area of Texas, USA
    Age
    37
    Posts
    18,761

    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?

  24.  

     
  25. #13

    Mishkan's Avatar

    Join Date
    Jul 2005
    Location
    Austin, Texas
    Posts
    706

    Re: Fear the signature

    Not exactly...

  26.  
  27. #14

    CingularDuality's Avatar

    Join Date
    May 2003
    Location
    Dallas/Ft. Worth area of Texas, USA
    Age
    37
    Posts
    18,761

    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?

  28.  
  29. #15

    Mishkan's Avatar

    Join Date
    Jul 2005
    Location
    Austin, Texas
    Posts
    706

    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)

  30.  

     

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts


  
 

Back to top