ta ae..
function onSay(cid, words, param, channel)
local montarias = {2, 3, 13, 19} --aki vc poe as montarias q o player pode receber
local qntdade = 2 --aki vc poe qnts ele pode receber
for i = 1, qntdade do
local x = math.random(#montarias)
doPlayerAddMount(cid, montarias[x])
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você Recebeu "..montarias[x])
table.remove(montarias, table.find(montarias, montarias[x]) or -1)
end
return true
end