Page 2 of 5 FirstFirst 1 2 3 4 ... LastLast
Results 11 to 20 of 41
  1. #11
    Player
    KingOfAbyss's Avatar
    Join Date
    Apr 2014
    Posts
    996
    Character
    Abyss King
    World
    Gilgamesh
    Main Class
    Paladin Lv 60
    For Tanks though, for some it can be a nice boost, but I do hope you like the dress and will use it as glamour, since you cannot upgrade it, Noct Lorica would be a better fit.

    On our server and times we got in, my FC mate had a few piece already.. so yeah pure luck, although I see more caster drops lol
    (0)

  2. #12
    Player
    Kydi's Avatar
    Join Date
    Jun 2014
    Posts
    300
    Character
    Dani Wah
    World
    Odin
    Main Class
    Samurai Lv 70
    Is the drop rate pure RNG or is it weighted based on classes in the dungeon at the time? For instance, if there were 0 melee, would it still drop melee dps gear?

    Personally, having only just started looking into endgame I'm a bit surprised it isn't token based loot as a lot of other MMOs are - there's still an rng element (beating everyone else's roll) but it's much less harsh.
    (0)

  3. #13
    Player
    Ashkendor's Avatar
    Join Date
    Mar 2014
    Posts
    4,659
    Character
    Ashkendor Zahirr
    World
    Balmung
    Main Class
    Paladin Lv 90
    Quote Originally Posted by Kydi View Post
    Is the drop rate pure RNG or is it weighted based on classes in the dungeon at the time? For instance, if there were 0 melee, would it still drop melee dps gear?
    It's 100% pure RNG. I've seen a party full of BLM/BRD/SMN get nothing but MNK/DRG drops. If you have no tank (we had one that looted and bailed and wasn't replaced before the next boss), it will still drop tank gear.
    (1)

  4. #14
    Player
    mythicrose's Avatar
    Join Date
    Aug 2013
    Location
    Gridania
    Posts
    480
    Character
    Mythic Rose
    World
    Cactuar
    Main Class
    Lancer Lv 50
    Quote Originally Posted by Kydi View Post
    Is the drop rate pure RNG or is it weighted based on classes in the dungeon at the time? For instance, if there were 0 melee, would it still drop melee dps gear?
    Drops are random. Cactuar server did a full DRG dps alliance and had caster drops.
    (0)
    Error 3102 Survivor

  5. #15
    Player
    Vaer's Avatar
    Join Date
    Oct 2011
    Posts
    1,803
    Character
    Ein Vaer
    World
    Excalibur
    Main Class
    Scholar Lv 90
    Quote Originally Posted by RiceisNice View Post
    That inconsistency is something I never really understood since afaik MNK and DRG desire the same stats more or less... And I'm further confused by the fact they have jewelries appropriate for both classes (Slaying).
    It's mostly just defense/magic defense on the gear. DRG has terrible magic def but higher def, MNK has average of both. Accessories don't have much DEF/MDEF so I guess it doesn't matter in that respect.
    (1)

  6. #16
    Player
    Cutie_McSnuggles's Avatar
    Join Date
    Aug 2013
    Posts
    738
    Character
    Cutie Mcsnuggles
    World
    Masamune
    Main Class
    White Mage Lv 60
    I shall direct you to this dev post: http://forum.square-enix.com/ffxiv/t...=1#post2310334

    Hello,

    Since this was brought up in the UI forum, even though I’m not in charge of it I will go ahead and comment about this a general discussion point.

    I checked up with our main programmer “K”, and for FFXIV it seems like we are using 3 famous random algorithms different depending on the application. Naturally, everything is processed server-side, and the random seed differs for each process.

    So in response to the question if there is a bug with the coding that generates the same random number if you continuously press an action, the answer is that the system implemented is such that this type of problem will not occur.

    There were older games where you could use certain patterns to your advantage to beat the game, but in recent days there aren’t any games like this anymore. Probably.

    However, the rate (random) process in games from very long ago and up until now -- not only for FFXIV -- have continued to be doubted by players.

    From my perspective it’s just a clear cut case of chance, but this alone may not be convincing enough, so I will try to explain about this a bit.

    This discussion is not particular to FFXIV and it is more about why random number programs are easily doubted.
    (Of course there have been a number of cases where there were bugs…)

    So to start off, I’ll lay out the essential points quickly.

    A. The standard random number programs used by FFXIV, and other modern games, generate practical “true random numbers”.
    B. With a range of trial numbers that can be understood by a person, because it’s a true random number bias arises.
    C. Since our brains are very adept in their capability to detect bias as abnormal or a singularity, we perceive true random numbers as abnormal.

    I’ll explain about each point above individually.

    First, I’ll start with the program for generating random numbers.

    FFXIV and other modern games use a random number algorithm (properly known as a pseudorandom number generator), which was contrived by some really good mathematicians and computer science people, and it was tested for a number of fields and is used as a solid algorithm.

    As an example, I’ll explain a little snippet about the periodicity of the random number algorithm known as Mersenne twister.
    “The algorithm provides a super astronomical period of 2^19937 – 1 and 623 dimensional equidistribution up to 32 bits accuracy.”

    Got it? No? That’s okay.

    Random number algorithms are part of a field that was built by the results of pure mathematics. As long as we the users understand that the random numbers generated are correct and practical that is more than enough.

    ★Those of you who know about random number algorithms and examples of problems in the past that arose in games, you’re probably wondering about something I didn’t touch on above. I will add an explanation to the end of this post.


    Next is about “true random numbers”.

    When it comes to random numbers there are two different types with different distribution patterns: uniform random numbers and normal random numbers. As the number of trials increase, we start to converge on the ideal condition.

    Conversely, if the number of trials (sampling number) is low, bias arises in random numbers.

    As humans, when it comes to the number of trials in games and such that we are able to grasp, it’s normal for us to perceive bias in the random numbers.

    In other words, the premise that it’s strange that there is bias in random numbers is mistaken.

    Of course, with hundreds and thousands or billions of trials, we will approach a distribution that is uniformly random and the bias will disappear. Unfortunately, this is impossible for a human to actually observe and experience.

    Due to this, every time you observe bias arising from a limited number of trials you can’t help but think that something’s wrong.

    Finally, onto our cognitive fallacies.

    Humans are able to instantly determine and intuit various things. It’s often said that our brains are really good at this but computers have trouble. On the other hand though, there is an aspect to this ability that is weak, and when this is exploited it opens us up to tricks and deceit.

    The pattern of deviation in judgment and illogical interpretation is known as cognitive bias.

    A leading example of where cognitive bias arises is the Gambler's fallacy.

    This states that when a person observes multiple events over the course of time, they will begin to expect that the results in the future will be affected by what happened in the past, and will either feel convinced that the results were due to a cause-and-effect relationship, or have a feeling of strangeness.

    When you flip a coin 5 times in a row, the rate in which you land either heads or tails for the 6th flip will be 50%. However, our gut feeling says “this time for sure!” and we modify this with an expected value, and as a result when it lands heads we think “No way!” or when it lands tails we think “Just as I thought!” This is cognitive bias.

    As I stated in b) above, the feeling that something is strange even though it is not is our brains are trying to create a cause-and-effect relationship that we anticipate, but the rate behaves in a completely unrelated manner.

    (I’m writing this in a definitive matter, but please be aware that I am regurgitating what I read from a book.)

    Cognitive bias is similar to a bug in humans’ cognitive capability, but it seems like it’s a system that was acquired for our survival to decide things efficiently in times of emergency.

    The whole topic of cognitive bias is really fascinating, so if you are interested I recommend reading
    this book.
     
    This pretty much sums up why we often think something is up with the probability we encounter in games.
     
    Bonus info: An aspect I didn’t touch on earlier in regards to random number algorithms.

    Amongst the random number algorithms, one method that is often adopted that has a high cost to efficiency ratio is the linear congruential method; however, it’s well known by implementers that there is an issue where large bias arises.

    In fact, there was a game that mistook the use of this function, and as the sample size grew larger the more bias increased. Meaning that just because it’s a well-known method doesn’t necessarily mean that it’s proof of it being accurate.

    Additionally, even if a random number sequence is generated properly, depending on how the application uses this value, ultimately there may be cases where strange patterns arise.

    So with all of this said, this is not one big post about the evidence of the accuracy of XIV’s various probability calculations. As I mentioned that the beginning of this post, the latter portion of this long comment is mainly just chitchat, but in response to the question as to whether there is something wrong with the probability in XIV, the answer is no, there is nothing wrong.
    (0)

  7. #17
    Player Tiggy's Avatar
    Join Date
    Aug 2013
    Posts
    2,645
    Character
    Tiggy Te'al
    World
    Balmung
    Main Class
    Marauder Lv 53
    What do you guys expect to happen? Do you think the game should keep a tally of all your personal runs and then tailor design a drop just for you? What about the 7 other people in your party? Is it supposed to keep track of their runs and tailor it for them instead? Is it supposed to compare the lists and drop something that isn't seen often? What if player Monk A see's nothing but tank look, but Player Paladin B see's nothing but monk loot. Would neither drop because two players see too much of it?

    Seriously guys. The game will not keep a history of your drops to tailor make you a drop you want.
    (2)

  8. #18
    Player Kayo's Avatar
    Join Date
    Aug 2013
    Posts
    326
    Character
    Kayo Vedo
    World
    Adamantoise
    Main Class
    Archer Lv 50
    I like RNG and prefer it to grinding some unique currency for end game gear, but some RNG seems worse in some games than others. This game in particular seems to be pretty crappy at it. I know "random is random" but it seems to me like im facepalming more than usual at runs in this game. Too many dungeon runs end up dropping the same gear type the entire run, sometimes even for classes/jobs that arent present at the time. Seriously, is it that hard to just remove gear from the draw pool if the freakin class isnt present at the time?
    (1)

  9. #19
    Player
    Ashkendor's Avatar
    Join Date
    Mar 2014
    Posts
    4,659
    Character
    Ashkendor Zahirr
    World
    Balmung
    Main Class
    Paladin Lv 90
    Quote Originally Posted by Kayo View Post
    Seriously, is it that hard to just remove gear from the draw pool if the freakin class isnt present at the time?
    This has its own down side in limiting what useful drops a player can reasonably access. Plenty of people are willing to take drops for one of several classes, depending on what turns up. This especially applies right before reset.
    (0)

  10. #20
    Player Tiggy's Avatar
    Join Date
    Aug 2013
    Posts
    2,645
    Character
    Tiggy Te'al
    World
    Balmung
    Main Class
    Marauder Lv 53
    Quote Originally Posted by Kayo View Post
    Seriously, is it that hard to just remove gear from the draw pool if the freakin class isnt present at the time?
    What happens if my FC is putting a group together. I really want to play BLM but I'm one of the only tanks in the group. So I'm asked to go tank. Meanwhile the group doesn't have a single caster at all. Now the caster loot will never drop despite the group being a greed group, and that loot being the only thing I wanted.

    This type of system has downsides too.
    (2)

Page 2 of 5 FirstFirst 1 2 3 4 ... LastLast