Results 1 to 3 of 3

Hybrid View

  1. #1
    Player

    Join Date
    Sep 2011
    Posts
    81

    Developers: Fix item stacking today!!

    So, if I have 15 of item X (which stacks to 99) and another 25 of item X, it would be great if those items would ALWAYS automatically stack instead of taking up two inventory slots....yea....that's some bad programming....cause you know, X's add.

    One way for players to fix this is by having to put the item in the bazaar and take it back down so it autostacks again, but yea that is very annoying. Should be a really simple fix that will take someone 10 minutes to reprogram. Developers, I'm sure you won't need to have a long discussion at the whiteboard about how to fix this, so....get it done today! We would greatly appreciate it and your reward will be 7100 gil, a pair of red velveteen pants + a 0.3% increase in respect from the community.

    Thanks.
    (4)

  2. #2
    Player

    Join Date
    Jun 2011
    Posts
    32
    I don't think this would take 10 minutes to reprogram (I'm software engineer) but I agree this should be fixed as soon as possible.
    (2)

  3. #3
    Player

    Join Date
    Sep 2011
    Posts
    81
    the problem stems from the fact that, for example:
    I have 11 spoon lures equipped. Now lets say I buy 20 more. Those 20 don't automatically stacked with what I already have equipped. Fix is extremely simple:

    if(stackable item is aquired)
    {
    if(you already have that item && it's equipped)
    {
    itemCount += numberAquired;
    }
    }

    the end
    (0)
    Last edited by Fullmetal; 10-01-2011 at 01:46 PM.