--//[BCDC .403b] --//annoy when findNick chats or comes online.... --//be sure to change the ip to your internal ip... won't work if you havethe messanger service disabled or firewalled. --//but from this u shold be able to make it do something equally annoying to get your attention. dcpp:setListener( "chat", "listenfornick", function( hub, user, text ) local findNick = "NickNameHere" --//case sensitive... if user:getNick() == findNick then local executor = "net send 192.168.2.100 "..findNick.." just said: "..text.." In: "..hub:getHubName() os.execute(executor); end end ) dcpp:setListener( "userMyInfo", "nickonline", function( hub, user, msg ) local findNick = "NickNameHere" --//case sensitive... if user:getNick() == findNick then local executor = "net send 192.168.2.100 "..findNick.." just came online in: "..hub:getHubName() os.execute(executor); end end ) DC():PrintDebug("*** Annoy Me!!! loaded. ***")