skeetzoo
Banned User
skeetzoo submitted a new resource:
spell damage roller - spells
Read more about this resource...
spell damage roller - spells
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 resultMessage = "Damage Rolls: " .. table.concat(results, ", ") player:sendTextMessage(MESSAGE_INFO_DESCR, resultMessage)
this will auto generate 25 times the damage spell will cause just put it in your getFormula value
great for creating...
Read more about this resource...