View Single Post
  #134  
Old 11th May 2009, 21:12
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
The wait time is located in 3 files

announce.php
details.php
\include\bittorrent.php

Just change the values to 0

Search for something like

Code:
$wait = 0;
        if ($CURUSER["class"] < UC_VIP)
        {
            $gigs = $CURUSER["uploaded"] / (1024*1024*1024);
            $ratio = (($CURUSER["downloaded"] > 0) ? ($CURUSER["uploaded"] / $CURUSER["downloaded"]) : 0);
            if ($ratio < 0.5 || $gigs < 5) $wait = 0;
            elseif ($ratio < 0.65 || $gigs < 6.5) $wait = 0;
            elseif ($ratio < 0.8 || $gigs < 8) $wait = 0;
            elseif ($ratio < 0.95 || $gigs < 9.5) $wait = 0;
            else $wait = 0;
            $elapsed = floor((gmtime() - strtotime($row["added"])) / 3600);
            if ($elapsed < $wait)
                $wait = number_format($wait - $elapsed);

        }
and then change the $wait values to zero in the files that I mentioned.
Reply With Quote