Jump to content

Recommended Posts

I think the reserve fund is to protect the value a little over 2billion (I can't remember it exactly) where the positive numbers roll round into negative, what basically happens is you are very very rich and suddenly find yourself over 2billion in debt after a certain point

but, to actually answer your question, yes you can though to do it via legitimate means would be tough and take a very long time

a quick look at my programming notes reveals that the value is 2,147,483,647

Link to post
Share on other sites

yes you can do it but i dont understand is why does the money become a negative after £2bn ?

It's just a programming 'limitation'. When it gets to the top of the range, it just turns negative because it can't go higher. If the value is higher - it would require more processing power. Something along those lines ;)

A programmer could probably tell you a lot better than I can :(

Link to post
Share on other sites

yes you can do it but i dont understand is why does the money become a negative after £2bn ?

Hardcoded limit in the FM core or something?

Link to post
Share on other sites

its a bit severe though, you could of finally made your club the best and have an awesome finances then suddenly your in administration lol?

surely just it stopping at £2bn and only going lower would be better?

Link to post
Share on other sites

yes you can do it but i dont understand is why does the money become a negative after £2bn ?

There are different kinds of "blocks" for storing numbers in your computer. They're using a signed 32-bit integer. In binary math, 31 bits gets you to 2,147,483,647. The last bit that would take you beyond that is reserved for the +/- sign, so when the program adds $1, rather than coming out to 2,147,483,648, it flips the +/- bit, so now you have a negative number.

Here's what +/-1 looks like in a signed 32-bit integer:

000000000 00000000 00000000 00000001 = +1

100000000 00000000 00000000 00000001 = -1

So if:

01111111 11111111 11111111 11111111 = 2,147,483,647

Then:

11111111 11111111 11111111 11111111 = -2,147,483,647

See, that magic bit at the end is what gets flipped when you try to go above 2,147,483,647, but in a signed integer you get a negative number instead of a larger value. Simple enough, eh? ;)

Link to post
Share on other sites

And they say you never learn anything at these forums :D

Play Football Manager and learn computing 101 :p

It's something you'll see in all sorts of situations in computer games: a character's level can be hacked to a maximum of 255, or health can be hacked to a max of 65,535 (or 32,767). These sorts of things sound familiar? :)

It's also something that can occasionally provide a few strange bugs on forums and so on. Due to some poorly-written hacks for a vBulletin forum I'm a moderator on, it's possible for someone to have "0" posts but still have posts on the forum, and if we delete one of those posts, their postcount jumps from 0 to 4,294,967,295 and requires an admin to manually reset their postcount to 0.

Link to post
Share on other sites

If you mean richest clubs my long term save in 10.2 Real Madrid was worth 2.49 billion US dollars.

And yes every year or 2 I get a message that they put money into a reserve fund. I have 216 million dollar turnover a year on average. Keep in mind that in that save I won practically everything.

Link to post
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...