Quote:
Originally Posted by sickstrings
I think I got it, but try at your own risk.
Part 1
AdminCP --> Languages & Phrases --> Phrase Manager --> Add New Phrase
Product: vBookie
Varname: vbookie_max_bet_exceeded
Text: Whoops! Looks like you bet more than 100 bucks. Try again but make sure you bet no more than 100 bucks.
Part 2
In vbookie.php
Find this
PHP Code:
if ($total_stake > vbookie_get_user_cash())
{
eval(standard_error(fetch_error('vbookie_not_enough_cash')));
}
After the above, add the following
PHP Code:
if ($total_stake > 100)
{
eval(standard_error(fetch_error('vbookie_max_bet_exceeded')));
}
Save vbookie.php
That should do it!
|
FOR SOME REASON, It cant find the phrase vbookie_max_bet_exceeded
any ideas why?