não testei
--Talkaction 100% by Dragonlordez--
function onSay(cid, words, param)
function ausente(cid)
doSendAnimatedText(getCreaturePosition(cid), "Ausente!", 215)
var=addEvent(ausente, 3000, cid)
doSendMagicEffect(getCreaturePosition(cid),12)
doPlayerSendTextMessage(cid,24,"Para parar diga !ausente stop.")
end
function stopAusente(cid)
stopEvent(var)
doSendMagicEffect(getCreaturePosition(cid),2)
end
if(param == '') then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.")
return true
end
if param == 'on' then
if getPlayerGroupId(cid) >= 6 then
ausente(cid)
else
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você não tem acesso para este comando.")
end
elseif param == 'stop' then
stopAusente(cid)
end
return TRUE
end