vote up 68 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
36  
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
5  
+1 to above. One characteristic of random numbers is that you get outliers. – ConcernedOfTunbridgeWells May 26 at 12:07
25  
@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
5  
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 0 vote down

That IS how it should be, it's probability, you shouldn't expect a critical hit 1ce every 5 battles.. try it with a coin or a dice and see for yourself. But that's just me. GB

link|flag
vote up 0 vote down

alt text

this one is really predictable... but you can never be sure.

link|flag
vote up 0 vote down

I've also tried to solve this problem. The best I could come up with was dynamically changing the probabilities if the numbers based on how often they have come up in the immediate past. Something like (for a dice, in matlab):

probabilities = [1 1 1 1 1 1];
unrandomness = 1;
while true
    cumprob = cumsum(probabilities) ./ sum(probabilities);
    roll = find(cumprob >= rand, 1)
    probabilities = probabilities + unrandomness;
    probabilities(roll) = probabilities(roll) - 6*unrandomness;
    if min(probabilities) < 0
        probabilities = probabilities - min(probabilities);
    end
end

Sorry for lack of indentation. The unrandomness parameter can be adjusted as desired. True random output (unrandomness=0):

2 3 1 1 4 1 3 3 4 5 1 5 5 2 6 1 1 1 6 1 1 3 5 6 6 1 4 2 4 6 3 6 5 1 1 6 2 5 6 4 3 5 2 4 6 5 5 5 4 4 3 4 1 2

unrandomness=1:

3 2 4 5 6 2 6 2 4 1 5 5 1 6 4 3 1 4 2 1 3 2 6 5 3 6 5 3 1 4 1 6 5 3 4 2 1 6 5 4 1 4 3 1 6 6 5 4 3 1 5 2 3 2

Looks better I think. Especially if you plot the gaps between numbers.

link|flag
show 1 more comment
vote up 0 vote down

I think you need to generate random numbers out of a Poisson Distribution.

link|flag
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 -2 vote down

The problem with bozo sort, it that it has the potential to take forever.

link|flag
vote up -3 vote down
static int crit = 0;

public bool isCritical()
{
   crit = crit++ % 5;
   return (crit==0);
}

if you still want some randomness, alter the modulus using another static variable each time a crit is performed. varying it will equal probability from 3 to 7 should keep the average time between crits at 1 in 5, but never less than 3 or more than 7 hits between them.

link|flag
2  
The OP already is doing that sort of thing. He misunderstands 'random' and actually wants a non-random generator that takes into account past rolls. – ceejayoz May 26 at 11:55
1  
this is not random at all, its just every 5th hit is a critical, he still wants some randomness, he justs wants it to be "fair" to the player (i.e. doesn't want the player getting annoyed that they haven't got a hit in over 50 attacks, or something like that, which is entirely possible when using a standard PRNG) – Grant Peters May 26 at 12:24
show 1 more comment
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.