vote up 67 vote down star
37

I'm a web-game developer and I got a problem with random numbers. Let's say that a player has 20% chance to get a critical hit with his sword. That means, 1 out of 5 hits should be critical. The problem is I got very bad real life results -- sometimes players get 3 crits in 5 hits, sometimes none in 15 hits. Battles are rather short (3-10 hits) so it's important to get good random distribution.

Currently I use PHP mt_rand(), but we are just moving our code to C++, so I want to solve this problem in our game's new engine.

I don't know if the solution is some uniform random generator, or maybe to remember previous random states to force proper distribution.

flag
35  
There is about a 0.5% chance of exactly 3 critical hits and 2 non-critical ones and a 3.5% chance of 15 non-critical hits in a row, assuming true random numbers. – Nixuz May 26 at 11:53
4  
+1 to above. One characteristic of random numbers is that you get outliers. – ConcernedOfTunbridgeWells May 26 at 12:07
23  
@Nixus: No, it's approx 5% chance of 3 critical hits and 2 non-critical ones, you are forgetting to multiply with (5! / (3!*2!)) = 10. With 95% confidence level, it is not statistically unlikely for 3 critical hits to happen in 5 strikes. – erikkallen May 26 at 12:09
2  
+1 for generating such a good discussion! – nickf May 26 at 13:23
4  
At first I thought this was a silly question...once again, I'm humbled by SO. – SergioL May 27 at 15:01

37 Answers

prev 1 2
vote up 6 vote down

Your best solution might be play-testing with multiple different nonrandom schemes and pick the one that makes players happiest.

You might also try a back-off policy for the same number in a given encounter, e.g., if a player rolls a 1 on their first turn accept it. To get another 1 they need to roll 2 1s in a row. To get a third 1 they need 3 in a row, ad infinitum.

link|flag
vote up 6 vote down

Over such a small number of tests you should expect results like that:

True randomness is only predictable over a huge set size, such that it's quite possible to flip a coin and get heads 3 times in a row first time, however over a few million flips you will end up with apporximately 50-50.

link|flag
6  
Though there is still a chance that after a few million flips, you still will have only seen one side of the coin. Though if this ever happens, you're probably sitting too close to an infinite improbability drive :P – Grant Peters May 26 at 12:18
show 1 more comment
vote up -2 vote down

For C++ random-number generators, use rand or boost::random

Whenever a player is hit, you just check whether a random number in [0; 1] is less than 0.2. This implies that someone can get no critical hits in 15, but that's improbable.

This will give you natural random numbers according to the laws of a binomial distribution (p = 0.2)

link|flag
1  
Wait, an answer suggesting boost::something gets downvoted? I'm shocked! – tstenner May 26 at 12:36
show 3 more comments
vote up 8 vote down

Surely any random number generation has the chance of producing such runs? You're not going to get a big enough sample set in 3-10 rolls to see appropriate percentages.

Maybe what you want is a mercy threshold ... remember the last 10 rolls, and if they haven't had a critical hit, give them a freebie. Smooth out the slings and arrows of randomness.

link|flag
vote up 8 vote down

Unfortunately what you are asking for is effectively an non-random number generator - because you want previous results to be taken into account when determining the next number. This isn't how random number generators work I'm afraid.

If you want 1 out of every 5 hits to be a critical then simply pick a number between 1 and 5 and say that that hit will be a critical.

link|flag
1  
he wants game friendly random, if you use strict random generated numbers in some cases you end up having "korean random" results. Those are random results that make players get angry and frustrated way too often (ask any lineage 2 player) ;) – SinneR May 26 at 13:38
show 1 more comment
vote up 0 vote down

How about weighting the value?

For example, if you have a 20% chance to critical hit, generate a number between 1 and 5 with one number representing a critical hit, or a number between 1 and 100 with 20 numbers being a critical hit.

But as long as you are working with random or pseudorandom numbers, there's no way to potentially avoid the results you are currently seeing. It's the nature of randomness.

link|flag
1  
Not for what he wants. He wants a non-random number generator, even if he thinks that's called a random number generator. – ceejayoz May 26 at 11:54
show 4 more comments
vote up 46 vote down

First, define "proper" distribution. Random numbers are, well, random - the results you're seeing are entirely consistent with (pseudo) randomness.

Expanding on this, I assume what you want is some feeling of "fairness", so the user can't go 100 turns without a success. If so, I'd keep track of the number of failures since the last success, and weight the generated result. Let's assume you want 1 in 5 rolls to "succeed". So you randomly generate a number from 1 to 5, and if it's 5, great.

If not, record the failure, and next time, generate a number from 1 to 5, but add on say, floor(numFailures / 2). So this time, again, they have a 1 in 5 chance. If they fail, next time the winning interval is 4 and 5; a 2 in 5 chance of success. With these choices, after 8 failures, they are certain to succeed.

link|flag
22  
+1 for seeing the problem behind the request instead of telling the OP he misunderstands random. – boris callens May 26 at 11:49
3  
Note that if you do this, then their overall proportion of successes will be greater than 1 in 5. A way around that is to (for example) choose 20 different numbers at random from the range 1..100, and predetermine that those will be their criticals. It's a bunch more bookkeeping, though. – Steve Jessop May 26 at 11:52
show 3 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.