@Mateus Lagasse
function onSay(player, words, param)
if not player:getGroup():getAccess() then
return true
end
if player:getAccountType() < ACCOUNT_TYPE_GOD then
return false
end
if param == '' then
player:sendCancelMessage('Digite algo para ser publicado em seu site.')
player:getPosition():sendMagicEffect(3)
else
player:sendTextMessage(MESSAGE_INFO_DESCR, 'Sua publicação foi enviada com sucesso!')
db.query("INSERT INTO `z_news_tickers` (`date`, `author`, `image_id`, `text`, `hide_ticker`) VALUES ('".. os.time() .."', '1', '0', '".. param .."', '0');")
end
return false
end
<talkaction words="/post" separator=" " script="addpost.lua" />