float valuefloat breakChancefloat breakRollshort bComplexshort playerSecurity; This constant produces a ~4% base break chancelet breakChance := -79.5; This setting makes break chance dynamic according to several factorsif bComplex; GetLockDifficulty should return the Oblivion lock level, range 1..99 let breakChance += (call GetLockDifficulty); This block correctly adjusts Security skill by Luck. let value := player.GetAV Luck let value *= GetGameSetting iActorLuckSkillMult let value += GetGameSetting iAcorLuckSkillBase let playerSecurity := player.GetAV Security let value += playerSecurity if value <= 0 let playerSecurity := 0 elseif value > 100 if playerSecurity < 100 let playerSecurity := 100 endif else let playerSecurity := floor value endif; "GetPickQuality" should return the values you use, e.g. Master = 1.3, except Skeleton Key should return 1.0; The 0.84 allows a tiny chance of Apprentice/Skeleton breakage vs. 99 lock at 99 skill, but none at 100 let playerSecurity /= (call GetPickQuality) * 0.84 let breakChance -= playerSecurityendif; Finally, the actual calculation. Same technique I used in Lock Bash Omega.; Two separate percentile rolls are made, one modified, and the two compared.let breakRoll := (rand 0 1) * 99let breakRoll += breakChancelet value := (rand 0 1) * 99if value < breakRoll (call BrokenPick)endif
scn blaBegin Menumode RemoveMeEnd