Joel Posted March 12, 2008 Posted March 12, 2008 How do i make my money go up to a higher limit, like it only goes up 2 a certain limit and i carnt go no higher than that and the same problem with my stats they only go up to a certain limit and wont go no higher how do i change the limits so they are higher like i want my money limit to be $9999999999999999 and my stats to be 999999999999 strenght, agility, IQ, Labour, but my bank and stats only go up to this number (4657657650) please help me i ve been tryin to figure this out for ages. Quote
whitescout Posted March 12, 2008 Posted March 12, 2008 Re: I really need someone's help with my money and stats, please help change to big int 25 in the database... This has been covered numerous times.... Please search before posting. Quote
Halo Posted April 14, 2008 Posted April 14, 2008 Re: I really need someone's help with my money and stats, please help Just Run This on phpMyAdmin: ALTER TABLE `users` CHANGE `money` `money` BIGINT( 92 ) NOT NULL DEFAULT '0' ALTER TABLE `users` CHANGE `crystals` `crystals` BIGINT( 92 ) NOT NULL DEFAULT '0' ALTER TABLE `users` CHANGE `bankmoney` `bankmoney` BIGINT( 92 ) NOT NULL DEFAULT '0' ALTER TABLE `users` CHANGE `cybermoney` `cybermoney` BIGINT( 92 ) NOT NULL DEFAULT '0' etc... And do not change STATS into bigint because stats are decimals, again run the following queries: ALTER TABLE `userstats` CHANGE `strength` `strength` DECIMAL( 65, 4 ) NOT NULL DEFAULT '0.0000', CHANGE `agility` `agility` DECIMAL( 65, 4 ) NOT NULL DEFAULT '0.0000', CHANGE `guard` `guard` DECIMAL( 65, 4 ) NOT NULL DEFAULT '0.0000', CHANGE `labour` `labour` DECIMAL( 65, 4 ) NOT NULL DEFAULT '0.0000', CHANGE `IQ` `IQ` DECIMAL( 65, 6 ) NOT NULL DEFAULT '0.000000' 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.