View Single Post
  #4  
Old 11th February 2009, 01:01
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default
in announce,bittorrent,details,or even download.php look for this

PHP 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;
  } 
change to

PHP 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 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;
  } 
Reply With Quote