function onSay(cid, words, param)
if exhaustion.get(cid, 101) then
doPlayerSendCancel(cid, 'You can use this command only once per 5 seconds.')
return true
end
exhaustion.set(cid, 101, 5)
if doPlayerRemoveMoney(cid, 10000) then
doPlayerAddItem(cid, 2173, 1)
doPlayerSendTextMessage(cid, 19...