Add files via upload

This commit is contained in:
Somdev Sangwan
2025-01-15 02:36:41 +05:30
committed by GitHub
parent 8d72d06b08
commit 9534bda278
9 changed files with 281 additions and 30 deletions

View File

@@ -0,0 +1,4 @@
function SuccessChance(threshold)
local random_num = math.random(0,99)
return ConditionResult(random_num < threshold)
end