Na pasta mods cria um novo arquivo e coloca isso :
<?xml version="1.0" encoding="UTF-8"?>
<mod name="peeper" version="1.0" author="slawkens" contact="slawkens@gmail.com" 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>
n testei ..










info
Grupo: Artesão
Registrado: 26/05/08
Posts: 142
Reputação: +9
Bom, não sei se é um script ou algum código na source.
Quando um cara da look no outro, só aparece em verde para o cara que deu look.
Mas queria por para aparecer em branco, pro cara que "levou look".
EX:
Aparece isso no server log, quando alguém te dar look.