• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
Resource icon

spell damage roller

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.
Back
Top