Andrew Green |
01-25-2008 12:40 AM |
Quote:
Originally Posted by peterpigman
(Post 1428346)
I think others are thinking the same as me, an option to increase the lottery payout would be nice if it is possible. Tbh the 100% payout is far from our minds. I think he is going a bit wild with the 100000 but our lottery is running at 10,000 many members have a lot more than that. If I could make it 30, 40 or 50k a lot more would buy tickets if you see what I mean.
|
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.
|