Slashdot Mirror


World of Warcraft Gold Limit Reached, It's 2^31

Mitch writes "Blizzard apparently used signed integers for their World of Warcraft gold values as some people have recently hit the limit of 2^31. "Apparently that amount is 214,748 gold, 36 silver, 48 copper. After you reach that lofty sum, you'll no longer be able to receive money from any source in the game. While some responses to the original posts claim that this exact limit had previously been theorized to exist, there have been no reports of anyone in the game actually achieving this amount via legal means." I guess Blizzard didn't expect anyone to ever get close to that much gold in game."

27 of 479 comments (clear)

  1. Duh by hcdejong · · Score: 5, Funny

    2^31 should be enough for anyone...

    1. Re:Duh by mysidia · · Score: 5, Informative

      Signed integers are used all the time for strictly positive values. For most purposes it is more convenient to just utilize the standard signed integer, and perform range checking to ensure it's positive.

      (You need to range check unsigned integers too, it's not as if switching to an unsigned integer relieves you of any problems, other than that it increases the 2^31-1 limit to a 2^32-1 limit.)

      The player should be thankful that the only consequence is they can't receive more gold from other players, rather than finding they have a _VERY_ negative amount of gold (less than zero).

      In many C based programs, your gold would overflow and drop to (-2^31+1), -2147483647, since the C programming language doesn't offer the programmer any exception handling mechanism for overflow detection (overflows are silently allowed to happen), and game developers don't necessarily anticipate such extremes.

  2. News for nerds, stuff that matters by Anonymous Coward · · Score: 5, Funny

    Somehow I think only 'News for nerds' apply for this one.

  3. So, how does one accumulate that much gold? by Eggplant62 · · Score: 5, Interesting

    On three level 70s and one level 61, I still have trouble breaking 3,000 gold between them. How does one get that much gold together in the first place?

    1. Re:So, how does one accumulate that much gold? by -noefordeg- · · Score: 5, Interesting

      At level 8, my char, Lardbutt, had around 3500 gold -and- almost all the Epics/Rares you could trade. This would probably amount to 10.000+ in total gold value.
      I played him until I got to Ironforge, after that he NEVER left the auction house. Just bought up things I thought were cheap and put them back in with a more expensive price. Most people don't check the market price for an item and when they found a rare/epic item they didn't need, would just sell it to the highest bidder at their first attempt to sell it. The ignorance of a weapons true worth was also something to take advantage of. Like the value of Julie's Dagger and Hanzo Sword, which on paper didn't really have über stats, but were perfect weapons for some types of warrior and rogue classes. Buying them for 10-20gold was quite possible, earning a profit of 50+ gold whenever you sold them to someone who "knew" their real price.

      After a while I could by everything of some specific item and control the price. I often did this with the better types of bags :)

      It took me about 3 months of regular playing to get there. This was the three first months after the release. I don't think you can pull it off that easily now, because most items are no Bind of Pickup, instead of Bind on Equip as they were earlier and the economy for items more or less crashed after 5-6 months.

      I stopped playing after about 3-4 months.
        Then I had probably a 100 complains posted against me, because people was 100% sure that I cheated and every time I logged on I got 15+ tells from people talking trash about how I cheated them/the system/the auction house/etc. Almost wish I kept on playing a little longer. =P

    2. Re:So, how does one accumulate that much gold? by Onetus · · Score: 5, Funny

      I pity your bitter lonely life.

      At least that's what my wife tells me to do.

  4. Could be worse by Metasquares · · Score: 5, Funny

    It could have rolled over :)

  5. Fiat money causes inflation in WoW? by dada21 · · Score: 5, Interesting

    Since the money is fiat, i.e. not backed by a fixed standard in the game, have people seen monetary inflation causing price increases in the game, or has the population of players offset any growth in money?

    I don't play WoW (played it a few times and have watched some addicts^H^H^H^H^H^H^Hfriends play it), so I'm not familiar with how pricing works.

    I would assume, though, that if money growth exceeds population/player growth, prices would tend to rise. Is this the case?

    Are there any online games that have a relatively fixed amount of money in the game?

    1. Re:Fiat money causes inflation in WoW? by Merkuri22 · · Score: 5, Informative

      There's not a real economy in WoW, per say. You get most of your money from quests and kills, which is pretty well-regulated (in the sense that lower level mobs and quests give lower amounts of money, and there's a limit to what you can kill and loot), and you spend most of it in NPC shops. The only semblance of an economy is the auction house and trade channels.

      The fact that most of your money disappears into NPC shops with set prices keeps inflation from happening.

  6. Thats worth around 6500$ by ArcticCelt · · Score: 5, Interesting

    At market value of 1000G for 31$ he can sell that amount for 6657.188$.

    http://sparter.com/web/shop.jsp#market=WWU01A&quantity=500

    --

    Yahh, hiii haaaaa! -Major Kong, from Dr. Strangelove
  7. Civilization I by blind+biker · · Score: 5, Funny

    Reminds me of when I was using a hex editor to "help myseslf" to some extra gold in Civilization I - I remember I could only up my gold to 3000 pieces, that was the Civ Is upper limit. Very off-putting, when you have to leave the game and start the hex editor just to replenish your reserves!

    How short-sighted of Sid ;o)

    --
    "The agriculture ministry is not in charge of Gundam" - Japanese ministry official.
  8. Re:Get a life by Anonymous Coward · · Score: 5, Funny

    Dude, I'm sure he didn't mean to hurt you. Take it easy.

  9. This is good! by unbug · · Score: 5, Funny

    At least it means there won't be a "Who wants to be a millionaire" in WOW.

  10. SIgned ints for cash by Ciggy · · Score: 5, Interesting

    This isn't the first time a signed integer has been used to store the amount of money a player has (and I suspect it won't be the last, either) - years ago when I played MicroProse's Railroad Tycoon, I found an interesting bug (feature) with the way cash was stored:

    For the game, a negative cash made a small bit of sense (overdraft) and so a signed integer was used. If you just bought up >50% of the shares in your railroad company (to ensure that you couldn't be fired), and then ensured that you had lots of expenditure but no income every financial period, you would end each financial period with more negative cash until it eventually overflowed and became positive. Once positive, with lots of income, it refused to overflow back negative.

    I found it interesting, that although a positive overflow was checked a negative one wasn't. The assumption must be that the programmer never really expected the limit condition to be met and so only put a cursory check in - checking for a positive overflow to prevent sudden negative cash (in both games) and the problems that could cause the program and game play, but in MicroProse's case, not bothering with the negative overflow as it was an extreme case not expected - the game play was possibly meant to prevent it and I found the 1 in a whatever chance to get it to happen (I was trying to see how negative a rating I could achieve without being "fired").

    --

    A rose by any other name would smell as sweet;
    A chrysanthemum by any other name would be easier to spell
  11. Re:Get a life by BrentH · · Score: 5, Funny

    Euh.... get a life?

  12. Re:Get a life by Aladrin · · Score: 5, Insightful

    It used to just annoy me until someone suggested I should actually go take a hike instead of playing games. Not like 'get lost, loser' but actually take a hike. Like that's somehow better for -anyone- if I do. That's when I realized that entertainment is entertainment, no matter what the form. (Assuming it doesn't actively hurt others, of course.) Why should some hiker feel special because he hikes instead of playing video games?

    FWIW: I played D&D twice and found both groups to be complete morons. (I know there are non-moron D&D players out there, but I have yet to actually see them play.) I played WoW for about 2 months before I got bored of it. I'm a gamer, but I can't stand to sit in front of the same game for months at a time grinding. The game has to be interesting, not just a time-sink.

    I'm just bloody sick of people getting all high and mighty because they don't play games, and then going and sitting in front of the TV and watching Friends or football.

    --
    "If you make people think they're thinking, they'll love you; But if you really make them think, they'll hate you." - DM
  13. Re:GuildWars Limit: 1000p + 100p per Character by Imsdal · · Score: 5, Insightful

    It took me > 2400 hours of casual gaming to (...)

    I'm not sure spending 2400 hours on any one activity can be referred to as "casual"...

  14. Re:Get a life by gEvil+(beta) · · Score: 5, Funny

    If you think WoW is better than making babies then you clearly need to get out more.

    --
    This guy's the limit!
  15. Game Economics by ajgeek · · Score: 5, Interesting

    Warning: Geekish Post Ahead

    If you put a lot of emphasis in controlling inflation in your game then you can keep a game going with the ability to bring new players in cold and they have a better chance of staying. Economics of a game needs to have more of a priority than just killing mobs, crafting new items and completing the quest. Here's why.

    I've been an avid gamer for a long time and have always found that economics within the game are never up to par with any standard, let alone a true economic standard. While I understand that there would be too much work in maintaining a true economy in many cases, the fact that the developers of each game don't bother to put in enough money sinks to keep the flow of money in game vs. out of game in check is astounding, especially in the case of WoW with n million players.

    One exception to this rule is CCP Games "EVE Online". The game is fundamentally an economics simulator in a space setting. While this sounds about as fun as counting grains of sand on a beach on a windy day, don't knock the premise until you try it. The whole game revolves around the flow of money into and out of wallets via new ships, replacement equipment, massive costs for new skills and upkeep costs for space stations etc. CCP even has an economist on staff to give reports on how the game economics is doing.

    Again, this sounds like no fun at all, but EVE has been running for over 4 years, is still increasing in population (albeit slowly) and I still did not have trouble getting started in the game and buying new equipment without it being ungodly hard to make the money to buy it. Oh and it's a fun space simulator too.

  16. What kind of person... by dominious · · Score: 5, Funny

    Blizzard Exec #2: What kind of person would do this?
    Blizzard Exec #1: Only one kind... Whoever this person is, he has played world of warcraft nearly ever hour, of every day, for the past year and a half. Gentlemen we are dealing with someone here who has absolutely no life.

  17. I don't get it by bvimo · · Score: 5, Funny

    What is the War of Worldcraft thing? I've seen it mentioned here a few times, but nobody actually explains what it does.

    Is it a book?

    --
    In either case, here at Microsoft, we feel standards are important. And we have fun, too. Doug Mahugh, Microsoft
  18. Re:Get a life by Anonymous Coward · · Score: 5, Funny

    clearly you've never played a gnome...

  19. Re:Umm by Anonymous Coward · · Score: 5, Funny

    i know someone who will buy your baby for 214,748 gold

  20. Kids are overrated by uuxququex · · Score: 5, Funny
    I'm a parent of a 1 year old boy. Let me tell you that I'd rather be gaming (or anything, really) than change his diaper or try to keep some food in him while he thinks it's funny to spit it through the whole room. Having a kid changes your life drastically.

    If I fully realized the impact of kids on my life, I would never have had him. I'd cut off my dick with rusty scissors first.

    Not kidding, either.

  21. Re:Umm by Tony+Hoyle · · Score: 5, Funny

    Well yeah, it's illegal for a start...

  22. Re:Umm by Dun+Malg · · Score: 5, Funny

    Ob: None of you guys are parents, are you? I have a 2-year old son, and yeah, kids are expensive, and you lose sleep. but I wouldn't trade him for anything in the world Bah! That's just your biological programming telling you to protect the next iteration of your genes. The rest of us can see that the little monster is just a stinky, screaming terror that that you think the rest of us should go out of our way to protect!

    Now, my precious little spawn, she's important...
    --
    If a job's not worth doing, it's not worth doing right.
  23. Re:Get a life by Major+League+Gamer · · Score: 5, Insightful

    Will WoW take care of you when you are old? Will our kids?