Announcement

Collapse
No announcement yet.

Draft Discussion, Chatter, etc Thread (Files updated thru 7.21)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #61
    you can download "the gimp", which is a cheap photoshop knockoff. and by cheap i mean you can download it for free, its shareware.


    Claire, That's Disgusting - A Heroes Blog

    Comment


    • #62
      i bought my photoshop via bootleg, i bought it off some guy on craigslist. i got Adobe Creative Suite 3 (the latest one) for $100 i believe including shipping.


      Claire, That's Disgusting - A Heroes Blog

      Comment


      • #63
        Originally posted by Hell Atlantic View Post
        you can download "the gimp", which is a cheap photoshop knockoff. and by cheap i mean you can download it for free, its shareware.
        I looked into this and was going to try it but then was reading that you have download a compiler or something and the process combined with learning a new software when I'm very well versed in Creative Suite seems like just as much of a downer as paying the $680, which I'd pay at some point anyway unless....

        Originally posted by Hell Atlantic View Post
        i bought my photoshop via bootleg, i bought it off some guy on craigslist. i got Adobe Creative Suite 3 (the latest one) for $100 i believe including shipping.
        ... I can find a deal like that! That's absolutely amazing that you got that. It's a $1700 dollar suite at it's base package I believe.
        <a href="http://glb2.warriorgeneral.com/game/signup.pl?ref=10223"><img src="http://goallineblitz.com/images/game/design/glb_badge-180x60.gif" /></a>
        IFL Champions: 2011, 2013, 2022, 2023.

        Comment


        • #64
          you don't need a compiler for GIMP.. there's a Win32 installer package available

          Comment


          • #65
            Originally posted by Coder View Post
            you don't need a compiler for GIMP.. there's a Win32 installer package available
            haha I thought that was a compiler. ops:

            I've been on the Mac for a while and just remember an .exe download for everything windows in the past.
            <a href="http://glb2.warriorgeneral.com/game/signup.pl?ref=10223"><img src="http://goallineblitz.com/images/game/design/glb_badge-180x60.gif" /></a>
            IFL Champions: 2011, 2013, 2022, 2023.

            Comment


            • #66
              Draft stopped again. Guess making the list is just way more difficult then I thought.

              Comment


              • #67
                Originally posted by Jave View Post
                Draft stopped again. Guess making the list is just way more difficult then I thought.
                OH NOES!!1!!1!

                Comment


                • #68
                  Brock Heath and Ken Singleton are a hell of a pair taken so far by Tulsa. The rest of the NC South can't like that.
                  <a href="http://glb2.warriorgeneral.com/game/signup.pl?ref=10223"><img src="http://goallineblitz.com/images/game/design/glb_badge-180x60.gif" /></a>
                  IFL Champions: 2011, 2013, 2022, 2023.

                  Comment


                  • #69
                    Greene and Heath were the targets. My scout, who is excellent for OLine and VG at YT has Heath VU.
                    Sweet
                    IFL Champions-- 2016
                    NC Champions-- 2015, 2016
                    NC South Division Champions-- XI 2013-2023
                    IFL EoY-- 2013, 2016


                    Tigerhawk Hall of Fame:
                    LT Tony Esqueda, MLB Eric Jean, RDE Ted Lofton, CB Oliver McKenzie, RB Ken "DH" Singleton, WR Ken "Brick" Albriktsen, RT Brock Heath, QB Matt Sanford

                    Comment


                    • #70
                      Originally posted by Hell Atlantic View Post
                      listen, it sucks that the draft is being held up, but this is supposed to be for fun. why don't you take advantage of the lull right now and do something productive for the league, like write an article or cover the picks that have been made thus far. i'm not trying to sound all faggy and hokey, but we all knew doing the draft without a utlity would throw a monkey wrench in our shit. it's the weekend, i'm sure you got more important things to do today then sit and pout. some of you are starting to act like the girls in IHOF.

                      Have you started taking some medication HA. I'm noticing a trend where you make sense and I agree with you. Well I wouldn't know about IHOF though
                      sigpic

                      Mules of Fame
                      Otis 'Opie' Peterson

                      Comment


                      • #71
                        The clock is obviously messed up. The numbers in the ticker code were confusing the hell out of me and apparently I didn't do something right. I'll try to get that fixed tonight.
                        "Larry Deasoooooooooooooooooon" -- Phil Jenkins

                        Comment


                        • #72
                          Originally posted by jeff View Post
                          The clock is obviously messed up. The numbers in the ticker code were confusing the hell out of me and apparently I didn't do something right. I'll try to get that fixed tonight.
                          What language code?

                          Edit: Doesn't really matter. Post a snippet that I can DL somewhere (I got no email on the Windows side of things) and I'll take a look if you want. Assuming the timing code is all in one spot.
                          <a href="http://glb2.warriorgeneral.com/game/signup.pl?ref=10223"><img src="http://goallineblitz.com/images/game/design/glb_badge-180x60.gif" /></a>
                          IFL Champions: 2011, 2013, 2022, 2023.

                          Comment


                          • #73
                            The code isn't encrypted or anything. I just don't understand what all the numbers mean.

                            Code:
                            $sql = "Select p.timeofpick from ifl_dutil_picks p, ifl_teams t, ifl_dutil_class c where p.teamid = t.teamid and p.selected = 1 and p.dclassid = c.dclassid and p.pick > ($cur_pick - 2) order by p.pick ASC LIMIT 0,1";
                                $resultp2 = mysql_query($sql,$db2)or die("Bad query: ".mysql_error()); 
                                if (mysql_num_rows($resultp2) == 0 ) {
                                    $cur_pick = 1183183200;
                                       $cur_pick_time = ($cur_pick);
                                       $cur_pick_time = $cur_pick_time + 18000;
                                       $cur_pick_hour = date('G', $cur_pick_time);
                                       $cur_pick_min = date('i', $cur_pick_time);
                                       $cur_pick_sec = date('s', $cur_pick_time);
                                       $cur_pick_base = ($cur_pick_time - ($cur_pick_hour * 60 * 60) - ($cur_pick_min * 60) - $cur_pick_sec);
                                } else {        
                                    $prevpick = mysql_fetch_array($resultp2);
                                       $cur_pick_time = ($prevpick[0]);
                                    if ($cur_pick_time < 1183183200) {
                                        $cur_pick_time = 1183183200;
                                    }
                            //           $cur_pick_time = $cur_pick_time + 18000;
                                       $cur_pick_hour = date('G', $cur_pick_time);
                                       $cur_pick_min = date('i', $cur_pick_time);
                                       $cur_pick_sec = date('s', $cur_pick_time);
                                       $cur_pick_base = ($cur_pick_time - ($cur_pick_hour * 60 * 60) - ($cur_pick_min * 60) - $cur_pick_sec);
                                }
                                
                                if ($overall < 65) {
                                    if ($cur_pick_hour < 6) {
                                        $np_time = ($cur_pick_base + 32400);
                                    } else {
                                        if ($cur_pick_hour < 18) {
                                          $np_time = ($cur_pick_time + 10800);
                                        } else {
                                          $np_time = ($cur_pick_time + 32400);
                                        }
                                    }
                                } else {
                                    if ($overall < 129) {
                                      if ($cur_pick_hour < 6) {
                                          $np_time = ($cur_pick_base + 28800);
                                      } else {
                                          if ($cur_pick_hour < 20) {
                                            $np_time = ($cur_pick_time + 7200);
                                          } else {
                                            $np_time = ($cur_pick_time + 28800);
                                          }
                                      }
                                } else {
                                        if ($overall < 161) {
                                          if ($cur_pick_hour < 6) {
                                              $np_time = ($cur_pick_base + 28800);
                                          } else {
                                              if ($cur_pick_hour < 22) {
                                                $np_time = ($cur_pick_time + 7200);
                                              } else {
                                                $np_time = ($cur_pick_time + 28800);
                                              }
                                          }
                            
                                  } else {
                                     if ($overall < 193) {
                                       if ($cur_pick_hour < 6) {
                                          $np_time = ($cur_pick_base + 25200);
                                       } else {
                                          if ($cur_pick_hour < 22) {
                                            $np_time = ($cur_pick_time + 3600);
                                          } else {
                                            $np_time = ($cur_pick_time + 25200);
                                          }
                                       } 
                            
                                        } else {
                                          if ($cur_pick_hour < 6) {
                                              $np_time = ($cur_pick_base + 25200);
                                          } else {
                                              if ($cur_pick_hour < 23) {
                                                $np_time = ($cur_pick_time + 3600);
                                              } else {
                                                $np_time = ($cur_pick_time + 25200);
                            "Larry Deasoooooooooooooooooon" -- Phil Jenkins

                            Comment


                            • #74
                              taking a look now...
                              <a href="http://glb2.warriorgeneral.com/game/signup.pl?ref=10223"><img src="http://goallineblitz.com/images/game/design/glb_badge-180x60.gif" /></a>
                              IFL Champions: 2011, 2013, 2022, 2023.

                              Comment


                              • #75
                                Here's what the code looked like before I messed with it. So this code *worked* for us last year:

                                Code:
                                if ($overall < 65) {
                                        if ($cur_pick_hour < 6) {
                                            $np_time = ($cur_pick_base + 32400);
                                        } else {
                                            if ($cur_pick_hour < 18) {
                                              $np_time = ($cur_pick_time + 10800);
                                            } else {
                                              $np_time = ($cur_pick_time + 32400);
                                            }
                                        }
                                    } else {
                                        if ($overall < 129) {
                                          if ($cur_pick_hour < 6) {
                                              $np_time = ($cur_pick_base + 28800);
                                          } else {
                                              if ($cur_pick_hour < 20) {
                                                $np_time = ($cur_pick_time + 7200);
                                              } else {
                                                $np_time = ($cur_pick_time + 28800);
                                              }
                                          }
                                    } else {
                                            if ($overall < 161) {
                                              if ($cur_pick_hour < 6) {
                                                  $np_time = ($cur_pick_base + 28800);
                                              } else {
                                                  if ($cur_pick_hour < 22) {
                                                    $np_time = ($cur_pick_time + 7200);
                                                  } else {
                                                    $np_time = ($cur_pick_time + 28800);
                                                  }
                                              }
                                
                                      } else {
                                         if ($overall < 193) {
                                           if ($cur_pick_hour < 6) {
                                              $np_time = ($cur_pick_base + 25200);
                                           } else {
                                              if ($cur_pick_hour < 22) {
                                                $np_time = ($cur_pick_time + 3600);
                                              } else {
                                                $np_time = ($cur_pick_time + 25200);
                                              }
                                           } 
                                
                                            } else {
                                              if ($cur_pick_hour < 6) {
                                                  $np_time = ($cur_pick_base + 25200);
                                              } else {
                                                  if ($cur_pick_hour < 23) {
                                                    $np_time = ($cur_pick_time + 3600);
                                                  } else {
                                                    $np_time = ($cur_pick_time + 25200);
                                Some of the numbers obviously deal with the clock being "off" during the night.
                                "Larry Deasoooooooooooooooooon" -- Phil Jenkins

                                Comment

                                Working...
                                X