
Originally Posted by
ThinkLiveLife
afk: youre reported for skying and hacking, good luck
Last Message 12:15 PM
Lawl.
Anyways I would say I did this 20-22 times to get this win. Died on the 12th pull twice, 11th once, 10th once. The rest were all 9 or lower but Every one of them was 5 or more. I don't think its random..
-edit
If I was smarter I would not have gone for 100 point games. But I feel that just adds to the feat.
Pure speculation but based on your statistics I can think of one way it could be programed to behave that way.
int segments = 100 / rounds;
int currentSegment = 100;
int shot = 0;
while(shot < currentSegment){
currentSegment -= segments;
wait(); *waits for play to pull trigger
shot = randomInt(100);
}
eliminate.currentPlayer();
Basically with this you start with a low probability that increases with each trigger pull until you have a 100% chance of getting shot.