[[?{Variable|90} * (d101 + 49) / 100]] Rolls a 101-sided die, adds 49 (1 will be 50, 101 will be 150), multiplies the result by the queried number, and divides the total by 100 (so the 50-150 will be a percentage instead of a number). You can wrap the whole thing in ceil, floor, or round to make the final result only whole numbers: [[floor(?{Variable|90} * (d101 + 49) / 100)]] [[ceil(?{Variable|90} * (d101 + 49) / 100)]] [[round(?{Variable|90} * (d101 + 49) / 100)]]