Jump to content
MakeWebGames

I really need someone's help with my money and stats, please help


Joel

Recommended Posts

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.

Link to comment
Share on other sites

  • 1 month later...

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'
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...