try to give the premium-members 999 plays per day ...
**edit**
Ok, I see the logical problem, will be fixed in v2.6.2+
meanwhile do the following:
open /arcade/modules/mod_arcade.php
search for
Code:
// get lowest ppd_require
if ((($ppd_req == 0) && ($check['ppd_require'] > 0)) || ($ppd_req > $check['ppd_require']))
{
$ppd_req = $check['ppd_require'];
}
and replace with
Code:
// get lowest ppd_require
if ($check['ppd_require'] == 0) { $zero_ppd = 1; $ppd_req = 0; }
if ((($ppd_req == 0) && ($check['ppd_require'] > 0)) || ($ppd_req > $check['ppd_require']))
{
if ($zero_ppd == 0)
{
$ppd_req = $check['ppd_require'];
}
}
then search for
Code:
$ppd_req = 0;
$access_cp = 0;
$cats = array();
below this add
Code:
$zero_p = 0;
$zero_ppd = 0;
Please let me know if that fits what you need