πCONFIGURATION FILE
Config = Config or {}
Config.Debug = false
Config.DefaultApp = false
Config.DefaultLanguage = "en" -- The phone will display the language corresponding to the language users select on their phone. However, please remember to select a language in case of any unforeseen circumstances.
Config.Games = {
plinko = {
minBet = 10,
maxBet = 10000,
rtp = 98,
-- ====================================================================
-- PLINKO MULTIPLIER SYSTEM (Index 0 = Left edge, Max = Right edge)
-- ====================================================================
multipliers = {
[8] = {
-- LOW RISK: Safe, low volatility
low = {
5.6, -- 0: Left edge
2.1, -- 1
1.1, -- 2
1.0, -- 3
0.5, -- 4: Center (Lowest)
1.0, -- 5
1.1, -- 6
2.1, -- 7
5.6 -- 8: Right edge
},
-- MEDIUM RISK: Balanced
medium = {
13.0, -- 0: Left edge (High win)
3.0, -- 1
1.3, -- 2
0.7, -- 3
0.4, -- 4: Center (Loss)
0.7, -- 5
1.3, -- 6
3.0, -- 7
13.0 -- 8: Right edge (High win)
},
-- HIGH RISK: High volatility
high = {
29.0, -- 0: Left edge (Mega win)
4.0, -- 1
1.5, -- 2
0.3, -- 3
0.2, -- 4: Center (Big loss)
0.3, -- 5
1.5, -- 6
4.0, -- 7
29.0 -- 8: Right edge (Mega win)
}
},
[10] = {
low = {
5.6, 2.0, 1.6, 1.4, 1.1, 1.0, 1.1, 1.4, 1.6, 2.0, 5.6
},
medium = {
8.9, 3.0, 1.6, 1.2, 1.1, 1.0, 1.1, 1.2, 1.6, 3.0, 8.9
},
high = {
18.0, 4.0, 1.9, 1.3, 1.0, 0.5, 1.0, 1.3, 1.9, 4.0, 18.0
}
},
[12] = {
low = {
10.0, -- 0: Left edge
3.0, -- 1
1.6, -- 2
1.4, -- 3
1.1, -- 4
1.0, -- 5
0.5, -- 6: Center (Loss)
1.0, -- 7
1.1, -- 8
1.4, -- 9
1.6, -- 10
3.0, -- 11
10.0 -- 12: Right edge
},
medium = {
11.0, -- 0: Left edge
4.0, -- 1
2.0, -- 2
1.4, -- 3
1.2, -- 4
0.9, -- 5
0.5, -- 6: Center (Big loss)
0.9, -- 7
1.2, -- 8
1.4, -- 9
2.0, -- 10
4.0, -- 11
11.0 -- 12: Right edge
},
high = {
22.0, -- 0: Left edge (Jackpot)
5.0, -- 1
2.0, -- 2
1.5, -- 3
1.1, -- 4
0.5, -- 5
0.2, -- 6: Center (Huge loss)
0.5, -- 7
1.1, -- 8
1.5, -- 9
2.0, -- 10
5.0, -- 11
22.0 -- 12: Right edge (Jackpot)
}
},
[14] = {
low = {
7.5, 4.0, 1.9, 1.4, 1.3, 1.1, 1.0, 0.7, 1.0, 1.1, 1.3, 1.4, 1.9, 4.0, 7.5
},
medium = {
8.1, 4.0, 2.0, 1.6, 1.3, 1.1, 0.7, 0.5, 0.7, 1.1, 1.3, 1.6, 2.0, 4.0, 8.1
},
high = {
16.0, 9.0, 2.0, 1.4, 1.1, 1.0, 0.5, 0.2, 0.5, 1.0, 1.1, 1.4, 2.0, 9.0, 16.0
}
}
},
-- ====================================================================
-- PLINKO WEIGHT SYSTEM (Probability Distribution)
-- Higher weight = Higher chance
-- ====================================================================
weights = {
[8] = {
low = {
2, -- 0: 5.6x (VERY RARE - 0.1%)
15, -- 1: 2.1x (RARE - 1%)
120, -- 2: 1.1x (MEDIUM - 8%)
350, -- 3: 1.0x (HIGH - 23%)
600, -- 4: 0.5x (HIGHEST - 40%) β LOSS BUT MOST COMMON
350, -- 5: 1.0x (HIGH - 23%)
120, -- 6: 1.1x (MEDIUM - 8%)
15, -- 7: 2.1x (RARE - 1%)
2 -- 8: 5.6x (VERY RARE - 0.1%)
},
medium = {
1, -- 0: 13.0x (EXTRA RARE - 0.08%)
10, -- 1: 3.0x (VERY RARE - 0.8%)
80, -- 2: 1.3x (RARE - 6.5%)
280, -- 3: 0.7x (MEDIUM - 23%) β LOSS
500, -- 4: 0.4x (HIGHEST - 40%) β BIG LOSS
280, -- 5: 0.7x (MEDIUM - 23%) β LOSS
80, -- 6: 1.3x (RARE - 6.5%)
10, -- 7: 3.0x (VERY RARE - 0.8%)
1 -- 8: 13.0x (EXTRA RARE - 0.08%)
},
high = {
0.5, -- 0: 29.0x (MEGA RARE - 0.04%)
5, -- 1: 4.0x (VERY RARE - 0.5%)
50, -- 2: 1.5x (RARE - 5%)
200, -- 3: 0.3x (MEDIUM - 20%) β LOSS
400, -- 4: 0.2x (HIGHEST - 40%) β HUGE LOSS
200, -- 5: 0.3x (MEDIUM - 20%) β LOSS
50, -- 6: 1.5x (RARE - 5%)
5, -- 7: 4.0x (VERY RARE - 0.5%)
0.5 -- 8: 29.0x (MEGA RARE - 0.04%)
}
},
[10] = {
low = {
2, 12, 80, 180, 320, 450, 320, 180, 80, 12, 2
},
medium = {
1, 8, 60, 150, 280, 400, 280, 150, 60, 8, 1
},
high = {
0.5, 4, 40, 120, 230, 350, 230, 120, 40, 4, 0.5
}
},
[12] = {
low = {
1, -- 0: 10.0x
8, -- 1: 3.0x
50, -- 2: 1.6x
120, -- 3: 1.4x
240, -- 4: 1.1x
350, -- 5: 1.0x
450, -- 6: 0.5x (HIGHEST - loss in middle)
350, -- 7: 1.0x
240, -- 8: 1.1x
120, -- 9: 1.4x
50, -- 10: 1.6x
8, -- 11: 3.0x
1 -- 12: 10.0x
},
medium = {
0.5, -- 0: 11.0x (VERY RARE)
5, -- 1: 4.0x
40, -- 2: 2.0x
100, -- 3: 1.4x
200, -- 4: 1.2x
310, -- 5: 0.9x (LOSS but common)
400, -- 6: 0.5x (BIG LOSS - most common)
310, -- 7: 0.9x (LOSS but common)
200, -- 8: 1.2x
100, -- 9: 1.4x
40, -- 10: 2.0x
5, -- 11: 4.0x
0.5 -- 12: 11.0x (VERY RARE)
},
high = {
0.3, -- 0: 22.0x (MEGA RARE)
2, -- 1: 5.0x
30, -- 2: 2.0x
80, -- 3: 1.5x
170, -- 4: 1.1x
270, -- 5: 0.5x (LOSS)
360, -- 6: 0.2x (HUGE LOSS - most common)
270, -- 7: 0.5x (LOSS)
170, -- 8: 1.1x
80, -- 9: 1.5x
30, -- 10: 2.0x
2, -- 11: 5.0x
0.3 -- 12: 22.0x (MEGA RARE)
}
},
[14] = {
low = {
1, 6, 40, 100, 180, 290, 380, 450, 380, 290, 180, 100, 40, 6, 1
},
medium = {
0.5, 4, 30, 80, 150, 250, 340, 410, 340, 250, 150, 80, 30, 4, 0.5
},
high = {
0.2, 1, 20, 60, 130, 220, 310, 380, 310, 220, 130, 60, 20, 1, 0.2
}
}
}
},
mines = {
minBet = 10,
maxBet = 5000,
houseEdge = 0.03,
minMines = 1,
},
spinwheel = {
minBet = 10,
maxBet = 1000,
multipliers = {
grey = 2,
red = 3,
blue = 5,
gold = 20
}
},
blackjack = {
minBet = 10,
maxBet = 50000,
},
dice = {
minBet = 10,
maxBet = 5000,
},
crash = {
minBet = 10,
maxBet = 10000,
rtp = 97,
maxMultiplier = 500,
}
}
Config.SocialNotifications = {
enabled = true,
intervalMinutes = 60,
}
4.0, -- 1
2.0, -- 2
1.4, -- 3
1.2, -- 4
0.9, -- 5
0.5, -- 6: Center (Big loss)
0.9, -- 7
1.2, -- 8
1.4, -- 9
2.0, -- 10
4.0, -- 11
11.0 -- 12: Right edge
},
high = {
22.0, -- 0: Left edge (Jackpot)
5.0, -- 1
2.0, -- 2
1.5, -- 3
1.1, -- 4
0.5, -- 5
0.2, -- 6: Center (Huge loss)
0.5, -- 7
1.1, -- 8
1.5, -- 9
2.0, -- 10
5.0, -- 11
22.0 -- 12: Right edge (Jackpot)
}
},
[14] = {
low = {
7.5, 4.0, 1.9, 1.4, 1.3, 1.1, 1.0, 0.7, 1.0, 1.1, 1.3, 1.4, 1.9, 4.0, 7.5
},
medium = {
8.1, 4.0, 2.0, 1.6, 1.3, 1.1, 0.7, 0.5, 0.7, 1.1, 1.3, 1.6, 2.0, 4.0, 8.1
},
high = {
16.0, 9.0, 2.0, 1.4, 1.1, 1.0, 0.5, 0.2, 0.5, 1.0, 1.1, 1.4, 2.0, 9.0, 16.0
}
}
},
-- ====================================================================
-- PLINKO WEIGHT SYSTEM (Probability Distribution)
-- Higher weight = Higher chance
-- ====================================================================
weights = {
[8] = {
low = {
2, -- 0: 5.6x (VERY RARE - 0.1%)
15, -- 1: 2.1x (RARE - 1%)
120, -- 2: 1.1x (MEDIUM - 8%)
350, -- 3: 1.0x (HIGH - 23%)
600, -- 4: 0.5x (HIGHEST - 40%) β LOSS BUT MOST COMMON
350, -- 5: 1.0x (HIGH - 23%)
120, -- 6: 1.1x (MEDIUM - 8%)
15, -- 7: 2.1x (RARE - 1%)
2 -- 8: 5.6x (VERY RARE - 0.1%)
},
medium = {
1, -- 0: 13.0x (EXTRA RARE - 0.08%)
10, -- 1: 3.0x (VERY RARE - 0.8%)
80, -- 2: 1.3x (RARE - 6.5%)
280, -- 3: 0.7x (MEDIUM - 23%) β LOSS
500, -- 4: 0.4x (HIGHEST - 40%) β BIG LOSS
280, -- 5: 0.7x (MEDIUM - 23%) β LOSS
80, -- 6: 1.3x (RARE - 6.5%)
10, -- 7: 3.0x (VERY RARE - 0.8%)
1 -- 8: 13.0x (EXTRA RARE - 0.08%)
},
high = {
0.5, -- 0: 29.0x (MEGA RARE - 0.04%)
5, -- 1: 4.0x (VERY RARE - 0.5%)
50, -- 2: 1.5x (RARE - 5%)
200, -- 3: 0.3x (MEDIUM - 20%) β LOSS
400, -- 4: 0.2x (HIGHEST - 40%) β HUGE LOSS
200, -- 5: 0.3x (MEDIUM - 20%) β LOSS
50, -- 6: 1.5x (RARE - 5%)
5, -- 7: 4.0x (VERY RARE - 0.5%)
0.5 -- 8: 29.0x (MEGA RARE - 0.04%)
}
},
[10] = {
low = {
2, 12, 80, 180, 320, 450, 320, 180, 80, 12, 2
},
medium = {
1, 8, 60, 150, 280, 400, 280, 150, 60, 8, 1
},
high = {
0.5, 4, 40, 120, 230, 350, 230, 120, 40, 4, 0.5
}
},
[12] = {
low = {
1, -- 0: 10.0x
8, -- 1: 3.0x
50, -- 2: 1.6x
120, -- 3: 1.4x
240, -- 4: 1.1x
350, -- 5: 1.0x
450, -- 6: 0.5x (HIGHEST - loss in middle)
350, -- 7: 1.0x
240, -- 8: 1.1x
120, -- 9: 1.4x
50, -- 10: 1.6x
8, -- 11: 3.0x
1 -- 12: 10.0x
},
medium = {
0.5, -- 0: 11.0x (VERY RARE)
5, -- 1: 4.0x
40, -- 2: 2.0x
100, -- 3: 1.4x
200, -- 4: 1.2x
310, -- 5: 0.9x (LOSS but common)
400, -- 6: 0.5x (BIG LOSS - most common)
310, -- 7: 0.9x (LOSS but common)
200, -- 8: 1.2x
100, -- 9: 1.4x
40, -- 10: 2.0x
5, -- 11: 4.0x
0.5 -- 12: 11.0x (VERY RARE)
},
high = {
0.3, -- 0: 22.0x (MEGA RARE)
2, -- 1: 5.0x
30, -- 2: 2.0x
80, -- 3: 1.5x
170, -- 4: 1.1x
270, -- 5: 0.5x (LOSS)
360, -- 6: 0.2x (HUGE LOSS - most common)
270, -- 7: 0.5x (LOSS)
170, -- 8: 1.1x
80, -- 9: 1.5x
30, -- 10: 2.0x
2, -- 11: 5.0x
0.3 -- 12: 22.0x (MEGA RARE)
}
},
[14] = {
low = {
1, 6, 40, 100, 180, 290, 380, 450, 380, 290, 180, 100, 40, 6, 1
},
medium = {
0.5, 4, 30, 80, 150, 250, 340, 410, 340, 250, 150, 80, 30, 4, 0.5
},
high = {
0.2, 1, 20, 60, 130, 220, 310, 380, 310, 220, 130, 60, 20, 1, 0.2
}
}
}
},
mines = {
minBet = 10,
maxBet = 5000,
houseEdge = 0.03,
minMines = 1,
},
spinwheel = {
minBet = 10,
maxBet = 1000,
multipliers = {
grey = 2,
red = 3,
blue = 5,
gold = 20
}
},
blackjack = {
minBet = 10,
maxBet = 50000,
},
dice = {
minBet = 10,
maxBet = 5000,
},
crash = {
minBet = 10,
maxBet = 10000,
rtp = 97,
maxMultiplier = 500,
}
}
Config.SocialNotifications = {
enabled = true,
intervalMinutes = 60,
}
Last updated