11.10.2017, 16:51
Hey everyone, i have a command, to break cuffs, if a player is cuffed, and i want that the player only has a 10 % chance of breaking it
if ( random ( 100 ) <= 10 ) {
// success
}
else {
// fail
}
if ( random ( 100 ) < 10 ) ...