Re: Money cap..
when i changed my cap awhile back, i was was told to goto into the db and change the int(11) to BIGINT(15) or what ever i wanted it at and then go into the file for example
bank.php
then find the lines that contain this
=abs((int)
and take the (int) completely out, so for example in my bank.php to remove to cap on my withdraw amount i changed
$_POST['withdraw']=abs((int) $_POST['withdraw']);
to
$_POST['withdraw']=abs($_POST['withdraw']);
im still new at all this php shit and i dont know if what i did was done correct but it seemed to work so i left it at that lol
hope it helpz you some :-D