Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Maplestory Myths - know any?
#21
Go to any mob that drops any equip with 4+ different lines of stats, and try to get an item that's a copy of the first. obviously there is the chance of people getting the same item twice of course it is really low, but when the only occurrence of this, is when people gach so fast you see the XXX gained item from gach at the same second, there is obviously some flaw in nexon's rng and it is exploitable.
Reply
#22
Fiel Wrote:snip

I'd thank you for this, but it will solve nothing. There's no point in arguing with irrational people.
Reply
#23
GMs are myths


 Spoiler
Reply
#24
yo72 Wrote:Go to any mob that drops any equip with 4+ different lines of stats, and try to get an item that's a copy of the first. obviously there is the chance of people getting the same item twice of course it is really low, but when the only occurrence of this, is when people gach so fast you see the XXX gained item from gach at the same second, there is obviously some flaw in nexon's rng and it is exploitable.

That does not prove that dummy scrolling is possible, which was you're original argument. I have no idea what you're trying to argue now.
Reply
#25
Fiel Wrote:That does not prove that dummy scrolling is possible, which was you're original argument. I have no idea what you're trying to argue now.
The whole reason behind bait scrolling is to get a feel of nexon's RNG you can see when xx scroll is likely to fail/pass by using bait scrolls you can see in real time what number the rng is on, and if ur fast enough you can get lucky and copy previous results.
Reply
#26
yo72 Wrote:The whole reason behind bait scrolling is to get a feel of nexon's RNG you can see when xx scroll is likely to fail/pass by using bait scrolls you can see in real time what number the rng is on, and if ur fast enough you can get lucky and copy previous results.

That's still not an argument for why bait scrolling is possible. That's basing chance on an emotion, and emotion is not part of logic. How you feel at the current moment would not affect a pair of dice. How you feel at the moment does not affect a RNG.

Here, if you want to prove that bait scrolling works, I'll help you out:

PREMISE: {Put your premise here}
PREMISE: {Put your premise here}
THEREFORE: Bait scrolling works.

Feel free to add more premises.
Reply
#27
yo72 Wrote:The whole reason behind bait scrolling is to get a feel of nexon's RNG you can see when xx scroll is likely to fail/pass by using bait scrolls you can see in real time what number the rng is on, and if ur fast enough you can get lucky and copy previous results.

This is so...
Ugh, no dude. You can't "guess" a random number not even in programming where pseudo random numbers are used.
You can't say that because your friend passed a scroll at 9:30 a.m. you will also pass a scroll at 9:30 a.m.
Seriously dude... no.
Reply
#28
Double Post. Laggy. Sad
Reply
#29
Except it is far from emotion, daily I use this knowledge of the RNG to help get drops/mine ores/pass scrolls, like I said it isnt 100% but I get much better results then something that is completely "random". Latest example without having a full set-up constantly getting 15+ C rank nebs in a row.
Reply
#30
yo72 Wrote:Except it is far from emotion, daily I use this knowledge of the RNG to help get drops/mine ores/pass scrolls, like I said it isnt 100% but I get much better results then something that is completely "random". Latest example without having a full set-up constantly getting 15+ C rank nebs in a row.

"It works for me" still is not proof for bait scrolling. Give me something testable and verifiable.

Until you prove in a logical argument that bait scrolling works, I have no reason to accept your argument and therefore dismiss it. I would encourage others to do the same.
Reply
#31
Fiel Wrote:"It works for me" still is not proof for bait scrolling. Give me something testable and verifiable.

Until you prove in a logical argument that bait scrolling works, I have no reason to accept your argument and therefore dismiss it. I would encourage others to do the same.
Its something proven time and time again in game....thru gach messages, making unigue gear back to back, getting lots of rare drops in a row. Yes on their own coincidence but when you look at the common factor of time you begin to see how crappy/predictable nexon's rng is.
Reply
#32
pro double...
Reply
#33
yo72 Wrote:Its something proven time and time again in game....thru gach messages, making unigue gear back to back, getting lots of rare drops in a row. Yes on their own coincidence but when you look at the common factor of time you begin to see how crappy/predictable nexon's rng is.

Give me something testable and verifiable.
Give me something testable and verifiable.
Give me something testable and verifiable.

Show me how to test it. Show me how crappy/predictable Nexon's RNG is. Give me a method. Give me something to work with.

All you're saying now is: "Nexon's random number generator is crappy. Therefore, bait scrolling works." The premises do not support the conclusion. Personal experience does not support a conclusion. Your premise that "Nexon's RNG is crappy" is unsupported. I doubt you've ever looked at their RNG code. Have you? I can show it to you. I'll provide it to you upon request. Then you can show me why it sucks so bad.

My purpose here is not to prove you wrong. I would love to learn something new (and actually, I'd love it if you would prove yourself right). But until you do, I feel like you're wasting people's time with personal experience and "it works for me" mantras that don't support your conclusion of bait scrolling working than any other time you've said it. You might as well believe that eating macaroni and cheese will improve drop rates because one time you got an 30% GFA when you did it.
Reply
#34
Best test for urself make a whole bunch of low lv equips and you should be able to see a pattern of what is potential and what is not, and sometimes even get 2 unique in a row. Or even better yet go mineing at purple veins I guess I'll ask a friend of mine to follow me next time I mine and record.
Reply
#35
I still can't believe every fucking time bait scrolling is brought there is someone adamantly defending it.

 Spoiler
Reply
#36
you have no idea how HRRRGGHNNNGH i'm going at this thread right now, mainly because i feel that yo is... well, you figure it out.

especially by the fact that fiel has asked thrice (or four times already?) for a what to do->what to expect, his modus operandi, "how does this pomegranate works for you", what a re the cues for X result, etcetera, and all yo says is "go mine and you'll notice the feel.
Reply
#37
Fiel Wrote:I call bull on the scrolls failing to pass.

100% agree.
For anyone not clear on the code there, the relevant part is;

Code:
iSuccess = rankdom 32 bit number;
if (iSuccess % 101 > Scroll->SuccessRate)
{
   /* fail and do similar test for destruction if it has a Scroll->CurseRate */
}
{
   /* succeed */
}

Regardless of what the random number that comes back as, it will never be greater than 100, because it's being modded by 101.
The highest value it can achieve is a 100, and since it's > not >=, it'd still succeed.

This logic has been around since the dawn of time, even MUDs typically used;
Code:
int number_percent( void )
{
    return (number_mm() % 100)+1;
}

To do their probability tests since the early days.
It's not having what you want - It's wanting what you've got.
Reply
#38
I can think up a few.

1. The old free haircut quest. supposedly if you stood on certain parts of the map it would give the "premium" hair (i.e antagonist for males and the black and blonde one for girls)

2. Wearing red skullcap increases scroll success rates.

3?. This is my own myth (ik it's bs) but I have a certain area in the FM entrance that I have always had greater luck whilst using scrolls.

In fact i know all of them are BS, and can prolly be proven wrong very easily.
Reply
#39
DON'T KILL THE SLIMES AT KPQ, WE GET BAD REWARDS.

Who remembers this? Biggrin
Reply
#40
Unleashing Wrote:DON'T KILL THE SLIMES AT KPQ, WE GET BAD REWARDS.

Who remembers this? Biggrin

Holy fucking pomegranate! I remember that one. I got so many boots for killing the slimes. Ironically we got bad rewards! Bwahahaha!
Reply


Forum Jump:


Users browsing this thread: