Vanama wrote:
Ok, I was try it and really I can accept a challenge when I have'nt points.
I was look to code and found a bug.
Here is quick fix.
Find the following code in rps.html.php and blackjack.html.php
if (($mystats->points < $game->bet) && !$game->bet) {
echo "<span class='alert'>".RPS_NO_POINTS."</span></div>";
return;
}
and change it to
if (($mystats->points < $game->bet) && $game->bet) {
echo "<span class='alert'>".RPS_NO_POINTS."</span></div>";
return;
}
It will be fixed in new release.
It's OK!
No problem.
Language file is not defined:(RPS_NO_POINTS)or BANK_NO_POINTS
DEFINE("RPS_NO_POINTS", "XXXXXXXXXXXXXXX");
another :
DEFINE("RPS_NEED_LOGIN", "XXXXXXXXX!");
Thank you for your reply.