Como eu coloco esse aki com exhaustion ? 
  
  
  
------ Script By MatheusMkalo for Xtibia.com Users -------   
local configs = {   
cobrar = "sim", ------ Use sim ou nao para cobrar. 
sovip = "nao",  ------ Se somente vip players poderam usar o comando   
price = 1000,   ------ Preço a pagar se o cobrar estiver ativado  
need_item = "nao", -- se precisa de item para usar ("yes" or "no")  
item = 2123   
}   
function onSay(cid, words, param)   
local nada = {" "}   
  
         if table.isStrIn(param, nada) or param == "" then   
            doPlayerSendCancel(cid,"Voce precisa falar alguma coisa.")       
         return TRUE   
         end   
  
if (configs.sovip == "sim") and getPlayerVipDays(cid) == 0 then    
doPlayerSendCancel(cid,"Você não possui vip.")    
return TRUE    
end  
  
if (configs.need_item == "sim") and getPlayerItemCount(cid,configs.item) < 1 then  
doPlayerSendCancel(cid,"Você não tem o item " .. getItemNameById(configs.item) .. ".")  
return TRUE  
end  
  
  
         if configs.cobrar == "sim" and not doPlayerRemoveMoney(cid,tonumber(configs.price)) then   
            doPlayerSendCancel(cid,"Você não tem dinheiro suficiente.")   
         return TRUE   
         end   
  
         doBroadcastMessage(""..getCreatureName(cid).." ["..getPlayerLevel(cid).."]: " .. param .. "", MESSAGE_INFO_DESCR)   
         return TRUE   
end 
 :XTibia_smile: