
01-27-2008, 12:41 PM
|
|
|
Join Date: May 2006
Posts: 200
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Andrew Green
Well I don't have any plans to for anything on this, but it's easy enough to hard code it in:
LIne 183 / 184 in the includes/cron/casino_lotto.php
Code:
if(! $jackpot)
$jackpot = round($odds[$numbers] * .5 * $price);
add a multiplication factor, ex:
Code:
if(! $jackpot)
$jackpot = round($odds[$numbers] * .5 * $price) * 3;
Next time the jackpot gets reset (someone wins it or the odds get changed that will kick in. If you want it before then change the draw in the casino_lotto_draw, it will be the last one and the only one that doesn't have a result.
Cross posted to: http://vbgaming.org/forum/showthread.php?p=419 for easier reference.
|
That did nothing for me.
|