View Single Post
  #2  
Old 5th August 2009, 06:40
Tony's Avatar
Tony Tony is offline
Senior Member
 
Join Date: Mar 2008
P2P
Posts: 182
Default
open bittorrent , announce , details .php

and find

Code:
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 = 48;
          elseif ($ratio < 0.65 || $gigs < 6.5) $wait = 24;
          elseif ($ratio < 0.8 || $gigs < 8) $wait = 12;
          elseif ($ratio < 0.95 || $gigs < 9.5) $wait = 6;
          else $wait = 0;
  }
just change them all to $wait = 0 and bobs your uncle :)
Reply With Quote