View Single Post
  #2  
Old 5th January 2009, 13:22
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default
in bittorrent/announce or even details.php 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