LUA:
-- Simulate 25 rolls of damage
local results = {}
for i = 1, 25 do
local roll = math.random(min, max)
table.insert(results, roll)
end
-- Compile the results into a string message
local...
You do not have permission to view the full content of this resource.
Log in or register now.