Looking at You
Fala galera do TK, faz tempo que não posto nada, aí vou postar um sistema simples aqui, que ainda não tem no fórum e vejo membros procurando.
DESCRIÇÃO DO SISTEMA: Quando um player der look em você aparecerá em branco uma mensagem no canto inferior da tela: "Nome do Player" is looking at you.
1° - Acesse a pasta MODS e crie um arquivo chamado lookingatyou.xml, coloque isso dentro do arquivo:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="peeper" version="1.0" author="" contact="" enabled="yes">
<config name="peeper-config"><![CDATA[
-- anonymously or display peeper name?
anonymous = "no"
-- ignore players with access (will not show message when they look on someone)
hiddenAccess = 3
-- message color (type)
messageType = MESSAGE_STATUS_DEFAULT
]]></config>
<event type="look" name="peeper-event" event="script"><![CDATA[
domodlib('peeper-config')
local config = {
anonymous = getBooleanFromString(anonymous),
hiddenAccess = hiddenAccess,
messageType = messageType
}
function onLook(cid, thing, position, lookDistance)
if(isPlayer(thing.uid) and getPlayerAccess(cid) < config.hiddenAccess) then
doPlayerSendTextMessage(thing.uid, config.messageType, (config.anonymous and "Someone" or getPlayerName(cid)) .. " is looking at you.")
end
return true
end
]]></event>
<event type="login" name="peeper-login" event="buffer"><![CDATA[
registerCreatureEvent(cid, "peeper-event")
_result = true
]]></event>
</mod>
Bom galera este é o sistema.
Créditos:
EddyHavoc
Slawkens
Testado e funcionando 100%