Esse script, feito por Yamo (otland), é uma modificação no actionscript dos dados, o que torna uma roleta (tabela)
function onUse(cid, item, fromPosition, itemEx, toPosition)
if(fromPosition.x ~= CONTAINER_POSITION) then
doSendMagicEffect(fromPosition, CONST_ME_CRAPS)
end
local value = math.random(5700, 5736) - 5700
local color = ""
if(value == 0) then
color = "green"
elseif(value <= 10 and value % 2 == 0) then
color = "black"
elseif(value >= 11 and value <= 19 and value % 2 == 1) then
color = "black"
elseif(value >= 26 and value % 2 == 0) then
color = "black"
else
color="red"
end
doCreatureSay(cid, getCreatureName(cid) .. ' rolled ' .. value .. ', ' .. color .. '!', TALKTYPE_ORANGE_1)
return true
end