Winning chances

Here you can find informations on how to change winning chances.

Go to config/config.lua and find Config.Chance

Here is how it works on simple example:

[1]= {
    min = 1.01,
    max = 1.70,
    globalChance = 70
},
[2] = {
    min = 1.71,
    max = 2.50,
    globalChance = 30
}

When player places a bet, system is choosing a float at which aviator will crash. With example above: - 70% that aviator will crash between number 1.01 and 1.70 - 30% that aviator will crash between number 1.71 and 2.50 With this settings aviator can go as high as 2.50. Can't be higher than that. If you want to make it harder to win, simply change globalChance for lower min/max numbers.

Last updated