RazorBladerz Posted April 3, 2009 Posted April 3, 2009 Make Max Money more than the existing amount. how?? Quote
Carnage Posted April 3, 2009 Posted April 3, 2009 Re: Maximum amt If the max is 147483647 you need to change INT in your database to BIG INT this should give you a larger max amt Quote
Lithium Posted April 3, 2009 Posted April 3, 2009 Re: Maximum amt in which file?? http://dev.mysql.com/doc/refman/5.0/en/ ... types.html Quote
Faz` Posted April 3, 2009 Posted April 3, 2009 Re: Maximum amt The money caps are annoying, as are the money formatters. Go into the database and change what you want. Most things are in the table 'users'. There are a few other files you may want to edit. Quote
Faz` Posted April 3, 2009 Posted April 3, 2009 Re: Maximum amt I use float, with BIG INT, can the number absolutely massive? So say if you use BIG INT (1000) could you get a number with 1000 digits? Quote
Magictallguy Posted April 4, 2009 Posted April 4, 2009 Re: Maximum amt I use float, with BIG INT, can the number absolutely massive? So say if you use BIG INT (1000) could you get a number with 1000 digits? The highest BIGINT will hold is 9.2 quint (9,223,372,036,854,775,807 to be exact) Quote
RazorBladerz Posted April 6, 2009 Author Posted April 6, 2009 Re: Maximum amt theres no bigger stats than that?? Quote
Lithium Posted April 6, 2009 Posted April 6, 2009 Re: Maximum amt theres no bigger stats than that?? hmmm, they are pretty low indeed... maybe you need a bigint^15... Tht ought to be enough no? :| Quote
MaKaVeLLi Posted April 8, 2009 Posted April 8, 2009 Re: Maximum amt theres no bigger stats than that?? hmmm, they are pretty low indeed... maybe you need a bigint^15... Tht ought to be enough no? :| Yes you can use decimal (65,0) which will obviously give you money values with 65 places before the zero. You really need to be careful and make sure you files are coded correctly to not start buggin out if you want values that high. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.