Page 4 of 4 FirstFirst ... 2 3 4
Results 31 to 36 of 36
  1. #31
    Player
    Collin_Sky's Avatar
    Join Date
    Jun 2018
    Posts
    323
    Character
    Memento Mori
    World
    Twintania
    Main Class
    Astrologian Lv 100
    Honestly the achievements tab is the perfect counterpoint to this whole debate.
    SE are tracking so much information that 99% of the playerbase doesn't interract with.
    They track every single craft of every single crafter add it to a counter, this increases every expansion. Every single gil you make from leve quests, the number of times you clear each dungeon/Raid (which is ironic since that's also what totems do). Every single hunt you kill. Every single Frontlines victory on every map, per GC. Every single Rival Wings victory. Every single MGP you obtain from the GC, per possible source.

    SE is willing to utilise the storage necessary to track all this but not for totems/raid currency? GTFO with this defence that it would be too much character data to track these things in a currency tab.
    (4)
    Last edited by Collin_Sky; 02-01-2025 at 11:58 PM.

  2. #32
    Player
    GTK0HLK's Avatar
    Join Date
    Jul 2020
    Posts
    1,072
    Character
    Selene Halflight
    World
    Brynhildr
    Main Class
    Black Mage Lv 100
    Someone got offended.
    I didn't even say anything of negativity.

    I just didn't want to say absolutely ridiculous with words that can sound convoluted.

    point still stands, there is a way to resolve things.

    and if someone to offense to blanked out words. _______ _______ for example.

    Then you shouldn't be here trying to silence discussion as you're actively against logical and reasonable discussion.

    Whoever that was.
    (0)

  3. #33
    Player Kuroka's Avatar
    Join Date
    Aug 2016
    Location
    Limsa
    Posts
    3,702
    Character
    Ulala Ula
    World
    Shiva
    Main Class
    Reaper Lv 90
    Quote Originally Posted by Asari5 View Post
    what if i keep them if i wanna buy glam at some point? should i buy it now and... oh wait... we dont have a glamcatalogue / wardrobe / collection to safe / collect glam. buying it now so i can throw the rest away would just fill my inventory even more.
    Yeah that so much, i trashed so much gear that bite me in my but now, as i cant transform it into sets... and its easier to use one slot for tokken instead of saving 10 weapons - same for all the gear lol
    (0)

  4. #34
    Player
    BigCheez's Avatar
    Join Date
    Oct 2021
    Location
    Ul'Dah
    Posts
    631
    Character
    Cheez Whiz
    World
    Twintania
    Main Class
    Paladin Lv 100
    Quote Originally Posted by Collin_Sky View Post
    Honestly the achievements tab is the perfect counterpoint to this whole debate.
    SE are tracking so much information that 99% of the playerbase doesn't interract with.
    They track every single craft of every single crafter add it to a counter, this increases every expansion. Every single gil you make from leve quests, the number of times you clear each dungeon/Raid (which is ironic since that's also what totems do). Every single hunt you kill. Every single Frontlines victory on every map, per GC. Every single Rival Wings victory. Every single MGP you obtain from the GC, per possible source.

    SE is willing to utilise the storage necessary to track all this but not for totems/raid currency? GTFO with this defence that it would be too much character data to track these things in a currency tab.
    The crazy thing about this argument is that, if a player doesn't have any of the currency, all they need to store is the value 0 which is a single byte of data. The argument that a multi-billion dollar company can't store a couple of gigabytes of data is legitimately insane.
    (2)

  5. #35
    Player
    Mikey_R's Avatar
    Join Date
    Apr 2014
    Posts
    1,483
    Character
    Mike Aettir
    World
    Cerberus
    Main Class
    Paladin Lv 100
    Quote Originally Posted by BigCheez View Post
    The crazy thing about this argument is that, if a player doesn't have any of the currency, all they need to store is the value 0 which is a single byte of data. The argument that a multi-billion dollar company can't store a couple of gigabytes of data is legitimately insane.
    I'm not a programmer, so anyone can correct this next part, but I am about 90% sure you would still need to send the whole string of data that corresponds to the value every time, even if it is zero. If it had a max of 15, and you had 15 items in there, it would send 1111, if you had zero, it would still send 0000. It is the same amount of data being sent regardless of how much you actually have.

    As for my previous post, I never said it couldn't be done, I merely highlighted how many things could be considered a currency and whether it was worth using up data to track it all for things that could be trivial to obtain.
    (1)

  6. #36
    Player
    Shougun's Avatar
    Join Date
    Jan 2012
    Location
    Ul'dah
    Posts
    9,431
    Character
    Wubrant Drakesbane
    World
    Balmung
    Main Class
    Fisher Lv 90
    Quote Originally Posted by Mikey_R View Post
    I'm not a programmer, so anyone can correct this next part, but I am about 90% sure you would still need to send the whole string of data that corresponds to the value every time, even if it is zero. If it had a max of 15, and you had 15 items in there, it would send 1111, if you had zero, it would still send 0000. It is the same amount of data being sent regardless of how much you actually have.

    As for my previous post, I never said it couldn't be done, I merely highlighted how many things could be considered a currency and whether it was worth using up data to track it all for things that could be trivial to obtain.

    You do need to send data, maybe not every time, but sure you do. But picture this, a website- like maybe this one. SE sends you all the images and text. Now it isn't a word document but think of your last word doc, how big was it for thousands of words? Less than a mb probably. How about images on the website? Probably 500kb to maybe some mb. This is done, at least once, for all the many visitors. Not just one or two words, or images, thousands of them (sometimes), and often optimized so only what is needed is loaded right away.

    There is a lot of the backbone done already so its not a great example, setting up this stuff is fairly easy these days (and if you wait a few seconds, oh well). Yet conceptually the data being sent happens thousands and millions of times, some of them many times larger than sending an entire string of the game would take*, it just works (tm).

    In a game setting its worse because of how it all has to be ready to rip, and the game is trying to minimize overhead. But, is this idea do-able? Hell yeah. Will it smoothly work with whatever stuff they have currently or be free for SE to maintain? Who knows, but very probably not.

    *There can be optimizations to make it even smaller, but if you only stored "yes/no" for each item, it wouldn't be that large of a file. Of course size matters over scale, which is where server concerns come from. Like that funny "if everyone in the world jumps at the same time at the same point on the planet, does the planet move?", but maybe its like if everyone was a whale and we all jumped (because earth to human size scale is too large for our example).

    It's still all very do-able, we have seen these systems in motion many times in many games (and non-games). It's not "impossible", its just "does SE have the ability to invest to make it happen?" (and we can't estimate that because SE could have made a very large black-hole for themselves if they're in 'tech debt'). Personally I think we should not ever try to be SE's accountants, just ask for what you want and treat the employees as humans. If they don't do it, and it means enough to you (royal you, not specifically 'you' lol), leave the game as they don't "deserve" your money (they earn it, cause they're a business).
    (1)
    Last edited by Shougun; 02-03-2025 at 02:58 PM.

Page 4 of 4 FirstFirst ... 2 3 4

Tags for this Thread