BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

slaves.class.php 492B

12345678910111213141516
  1. <?php
  2. class Slaves
  3. {
  4. public static function get_level($SlaveID)
  5. {
  6. G::$DB->query("
  7. SELECT u.Uploaded, u.Downloaded, u.BonusPoints, COUNT(t.UserID)
  8. FROM users_main AS u
  9. LEFT JOIN torrents AS t ON u.ID=t.UserID
  10. WHERE u.ID = $SlaveID");
  11. list($Upload, $Download, $Points, $Uploads) = G::$DB->next_record();
  12. return intval(((($Uploads**0.35)*1.5)+1) * max(($Upload+($Points*1000000)-$Download)/(1024**3), 1));
  13. }
  14. };