Mod Download OXPUS
Inviato: 02/05/2014, 1:28
Salve,
praticamente questa mod oltre ai permessi di download upload vedere etc.. per gruppo, cè un limite sopratuttto per il minimo di totali messaggi inviati in tot tempo.
ecco vorrei cambiare questa variabile messaggi inviati invece con i punti totali di un utente (senza la questione del tempo, ho ultimate points che ho gia funzionante sul mio forum)
il codice dove fa questo controllo dei totale messaggi inviati è questo
mentre il totale punti nel database stanno nella tabella phpbb_users campo user_points
ho provato varie combinazioni possibili ma non riesco ad uscirene (non sono un programmatore ma ad intuito ci provo eehhe)
spero qualcuno che è sicuramente piu bravo di me, può risolvermi questo problema, disponibile per un bel caffe + cornetto
praticamente questa mod oltre ai permessi di download upload vedere etc.. per gruppo, cè un limite sopratuttto per il minimo di totali messaggi inviati in tot tempo.
ecco vorrei cambiare questa variabile messaggi inviati invece con i punti totali di un utente (senza la questione del tempo, ho ultimate points che ho gia funzionante sul mio forum)
il codice dove fa questo controllo dei totale messaggi inviati è questo
Codice: Seleziona tutto
* Block downloads for users who must have at least the given number of posts to download a file
* and tries to download after spamming in the forum more than the needed number of posts in the last 24 hours
*/
if ($user->data['user_posts'] >= $config['dl_posts'] && !$dl_file['extern'] && !$dl_file['free'] && $config['dl_antispam_posts'] && $config['dl_antispam_hours'])
{
$sql = 'SELECT COUNT(post_id) AS total_posts FROM ' . POSTS_TABLE . '
WHERE poster_id = ' . $user->data['user_id'] . '
AND post_time >= ' . (time() - ($config['dl_antispam_hours'] * 3600));
$result = $db->sql_query($sql);
$post_count = $db->sql_fetchfield('total_posts');
$db->sql_freeresult($result);
if ($post_count >= $config['dl_antispam_posts'])
{
$status = false;
}
}
mentre il totale punti nel database stanno nella tabella phpbb_users campo user_points
ho provato varie combinazioni possibili ma non riesco ad uscirene (non sono un programmatore ma ad intuito ci provo eehhe)
spero qualcuno che è sicuramente piu bravo di me, può risolvermi questo problema, disponibile per un bel caffe + cornetto
