Big tits programs that have random gallery generator?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • The Duck
    Adult Content Provider
    • May 2005
    • 18243

    #1

    Big tits programs that have random gallery generator?

    Spam me

    8chars
    Skype Horusmaia
    ICQ 41555245
    Email [email protected]
  • Tempest
    Too lazy to set a custom title
    • May 2004
    • 10217

    #2
    What do you mean "random gallery generator"? I don't know of any program that creates "random" galleries... However, a bunch have links you can use to a random gallery of the day/hour/moment.

    Comment

    • The Duck
      Adult Content Provider
      • May 2005
      • 18243

      #3
      Originally posted by Tempest
      What do you mean "random gallery generator"? I don't know of any program that creates "random" galleries... However, a bunch have links you can use to a random gallery of the day/hour/moment.
      Thats what I want, gallery of the hour or moment.
      Skype Horusmaia
      ICQ 41555245
      Email [email protected]

      Comment

      • Tempest
        Too lazy to set a custom title
        • May 2004
        • 10217

        #4
        NastyDollars - gallery of the day
        TopBucks - gallery of the day
        ExtremePayChecks - gallery of the day
        FetishHits - gallery of the day
        PimpRoll - gallery of the day
        EvilGeniusCash - gallery of the moment

        and more.....

        Comment

        • SmokeyTheBear
          ►SouthOfHeaven
          • Jun 2004
          • 28609

          #5
          spacash has random hotlinkeable thumb galleries..
          hatisblack at yahoo.com

          Comment

          • SmokeyTheBear
            ►SouthOfHeaven
            • Jun 2004
            • 28609

            #6
            Example...
            hatisblack at yahoo.com

            Comment

            • The Duck
              Adult Content Provider
              • May 2005
              • 18243

              #7
              Thanks Tempest!
              Skype Horusmaia
              ICQ 41555245
              Email [email protected]

              Comment

              • The Duck
                Adult Content Provider
                • May 2005
                • 18243

                #8
                Originally posted by SmokeyTheBear
                Awesome, thanks.
                Skype Horusmaia
                ICQ 41555245
                Email [email protected]

                Comment

                • SmokeyTheBear
                  ►SouthOfHeaven
                  • Jun 2004
                  • 28609

                  #9
                  you also might want to try your own rotation script like this.

                  Basically the script chooses one random description from the list and one random link

                  You can add as many links and descriptions as you want , you can make it display more than one random gallery at the same time too.

                  like you could input 100 random galleries and make it choose to display 5 random links..
                  Code:
                  <SCRIPT LANGUAGE="Javascript">  
                    
                       var stbL = new Array(  
                         
                       "http://www.gallery1.com",   
                       "http://www.gallery2.com",  
                       "http://www.gallery3.com",   
                       "http://www.gallery4.com",  
                       "http://www.gallery5.com",   
                       "http://www.gallery6.com",  
                       "http://www.gallery7.com",   
                       "http://www.gallery8.com" 
                       ); 
                  	 
                  	  var stbT = new Array(      
                             
                       "Gallery description#1",
                       "Gallery description#2",
                       "Gallery description#3",
                       "Gallery description#4",
                       "Gallery description#5",
                       "Gallery description#6",
                       "Gallery description#7",
                       "Gallery description#8"
                             
                       );
                  	 
                   
                    
                        var intRnd = Math.floor(Math.random()*8)+1; 
                             for( intX = 0; intX < 1; intX++ ){ 
                             document.write( '<A TARGET="_blank" HREF="' + stbL[ intRnd - 1 ] + '">' + stbT[ intRnd - 1 ] + '</A>' );  
                            if( intRnd hahahaha 1 ){ intRnd = 0; }  
                            intRnd = intRnd + 1;       
                       } 
                            
                       
                    
                  </SCRIPT>
                  hatisblack at yahoo.com

                  Comment

                  • SmokeyTheBear
                    ►SouthOfHeaven
                    • Jun 2004
                    • 28609

                    #10
                    gfy parses out certain characters in the code above.. if you look where you see "HAHAHA" in the code that should read "=="
                    hatisblack at yahoo.com

                    Comment

                    • SmokeyTheBear
                      ►SouthOfHeaven
                      • Jun 2004
                      • 28609

                      #11
                      if you want to make it display more thn one gallery at a time just change "intX < 1;" to a higher number and also change "intRnd ==1" to the same number
                      hatisblack at yahoo.com

                      Comment

                      • SmokeyTheBear
                        ►SouthOfHeaven
                        • Jun 2004
                        • 28609

                        #12
                        example ....
                        hatisblack at yahoo.com

                        Comment

                        • Tempest
                          Too lazy to set a custom title
                          • May 2004
                          • 10217

                          #13
                          Javascript is ok but I don't like to have all that stuff on my pages... I actually have a php script I use that grabs galleries from files. So I can use any sponsors FHGs and have them rotate daily, hourly or be random for the moment. Pretty simple to write yet really powerful for traffic pumps etc.

                          <?php
                          $errorurl='http://www.yourdomain.com/errorpage.html';
                          $sitename=strtolower(trim($HTTP_SERVER_VARS['QUERY_STRING']));
                          $filename="../galfiles/".$sitename.".txt";
                          $utime=time()-(8*3600);
                          $updatetime=intval($utime/86400);
                          if($sitenamehahahaha"" || !file_exists($filename)){@header("Location: $errorurl");exit;}
                          $g='';$gal=array();$tmp=@file($filename);
                          for($i=0;$i<count($tmp);$i++){$t=trim(chop($tmp[$i]));if($t!=""&&strtolower(substr($t,0,7))hahahaha'h ttp://'){$gal[]=$t;}}
                          if(count($gal)<=0){@header("Location: $errorurl");exit;}
                          $g=$gal[($updatetime%count($gal))];
                          @header("Location: $g");
                          ?>

                          This one rotates once a day around midnight PST.. Change the hahahaha to 2 equal signs, i.e. = = but without the space between them.

                          The files are stored in a directory ../galfiles/<filename>.txt

                          on your page you would put /gallery.php?filename

                          if you want it every hour, change this line to

                          $updatetime=intval($utime/3600);

                          Comment

                          • Tempest
                            Too lazy to set a custom title
                            • May 2004
                            • 10217

                            #14
                            Oh yeah, I forgot to add that the file is just a plain text file with 1 url per line, no blank lines in it..

                            Comment

                            • SmokeyTheBear
                              ►SouthOfHeaven
                              • Jun 2004
                              • 28609

                              #15
                              Originally posted by Tempest
                              Javascript is ok but I don't like to have all that stuff on my pages... I actually have a php script I use that grabs galleries from files. So I can use any sponsors FHGs and have them rotate daily, hourly or be random for the moment. Pretty simple to write yet really powerful for traffic pumps etc.

                              <?php
                              $errorurl='http://www.yourdomain.com/errorpage.html';
                              $sitename=strtolower(trim($HTTP_SERVER_VARS['QUERY_STRING']));
                              $filename="../galfiles/".$sitename.".txt";
                              $utime=time()-(8*3600);
                              $updatetime=intval($utime/86400);
                              if($sitenamehahahaha"" || !file_exists($filename)){@header("Location: $errorurl");exit;}
                              $g='';$gal=array();$tmp=@file($filename);
                              for($i=0;$i<count($tmp);$i++){$t=trim(chop($tmp[$i]));if($t!=""&&strtolower(substr($t,0,7))hahahaha'h ttp://'){$gal[]=$t;}}
                              if(count($gal)<=0){@header("Location: $errorurl");exit;}
                              $g=$gal[($updatetime%count($gal))];
                              @header("Location: $g");
                              ?>

                              This one rotates once a day around midnight PST.. Change the hahahaha to 2 equal signs, i.e. = = but without the space between them.

                              The files are stored in a directory ../galfiles/<filename>.txt

                              on your page you would put /gallery.php?filename

                              if you want it every hour, change this line to

                              $updatetime=intval($utime/3600);
                              now add some matching descriptions please
                              hatisblack at yahoo.com

                              Comment

                              • Tempest
                                Too lazy to set a custom title
                                • May 2004
                                • 10217

                                #16
                                Originally posted by SmokeyTheBear
                                now add some matching descriptions please
                                he he he... I have a different set of scripts for doing that sort of listing because I want the SE benifits from the descriptions which you wouldn't get writing them with javascript.. The script I posted is to simply do random links in the same way as if he just used the links from sponsors with some "generic" text.

                                Comment

                                • abz
                                  Senior Member
                                  • Apr 2001
                                  • 4498

                                  #17
                                  Try Audrey she has big tits and a movie of the day!

                                  Got mainstream or adult blogs?
                                  Create an adsense empire with the click of a button


                                  Need Banners Galleries Logos? Reliable Designer -- ICQ -- 109-825-688

                                  Comment

                                  • okdesign
                                    ICQ 278367136
                                    • May 2002
                                    • 24773

                                    #18
                                    Gamma Cash and Extreme Pay Checks have exactly what are you looking for

                                    Comment

                                    • Markit
                                      Confirmed User
                                      • Oct 2003
                                      • 1305

                                      #19
                                      Recurring Dollars

                                      Depraved Dollars

                                      Busty.pl

                                      Silicon Free

                                      DDF Cash


                                      Comment

                                      Working...