What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Nudge Blocker

Pages: (3): « First [ 1 ] 2 3 » Last »
Nudge Blocker
Author: Message:
Dethredic
New Member
*


Posts: 11
Joined: Nov 2006
O.P. Nudge Blocker
I think this is out there already.

I have used the msn msss tweak so i can send unlimited nudges as well as other things.
I have also used it to make nudges not annoying. It now makes them act like normal text (no noise/shaking/putting window to the top)

I showed it to a friend who was amazed by it (he thinks it is hacking).
Now nudges me all the time just for fun, not that it annoys me very much, but he thinks he is a hacker now too. (not saying i was one in the first place)

I need a way so that when he sends a nudge to me it doesn't go through. (like when people use other programs that don't support nudges). So when he tries to nudge me nothing happens to me, and it says: unable to send nudge or whatever. (It doesn't just have to block his nudges, could do everyones)

Is there a script or program out there that will do this?
12-01-2006 08:35 PM
Profile E-Mail PM Find Quote Report
Baggins
Full Member
***

Avatar
B000ALFAZO

Posts: 387
Reputation: 13
29 / Male / Flag
Joined: Oct 2006
RE: Nudge Blocker
Maybe change client version number when it is sent to the server.

Would other features of messenger still be avalbile though?

This post was edited on 12-01-2006 at 08:48 PM by Baggins.
12-01-2006 08:48 PM
Profile E-Mail PM Web Find Quote Report
Oxy
Veteran Member
*****

Avatar

Posts: 1368
Reputation: 24
30 / Male / Flag
Joined: Jul 2006
RE: Nudge Blocker
Just go onto Personal Settings > Messages and un-select "allow me to send/recieve nudges". He/She will no longer be able to send you a nudge!
[Image: dotlukas.gif]
12-01-2006 09:02 PM
Profile E-Mail PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: RE: Nudge Blocker
Discussed before, always search before posting....
Blocking nudges, buzzes or zumbidos [SOLVED]
[Request] Block on x nudges in x seconds
etc




quote:
Originally posted by Dethredic
I think this is out there already.
Is there a script or program out there that will do this?
CookieRevised's reply to [Request] Block on x nudges in x seconds

Though this will not block a nudge from reaching you, but it will block the contact who is flooding you with nudges so he can't nudge you anymore.

Benefits:
- you have a flood protection
- your contact is warned that he is doing something very annoying and is punished
- no other contacts are hurt
- someone who does have a legit reason to nudge you, can still do it



quote:
Originally posted by Baggins
Maybe change client version number when it is sent to the server.
Only possible if you can make a proxy which intercepts and can change protocol messages. Or if you know where to patch messenger.
quote:
Originally posted by Baggins
Would other features of messenger still be avalbile though?
Depends on what you exactly do. There might be a specific flag stating your client does or does not support nudges, in that case it wont influence anything else. However it might also be that there isn't a specific flag for only nudges and in that case you will loose more functions than simply that.



quote:
Originally posted by .OxY
Just go onto Personal Settings > Messages and un-select "allow me to send/recieve nudges". He/She will no longer be able to send you a nudge!
yes, but neither can you.

This post was edited on 12-01-2006 at 09:26 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
12-01-2006 09:14 PM
Profile PM Find Quote Report
Dethredic
New Member
*


Posts: 11
Joined: Nov 2006
O.P. RE: Nudge Blocker
Ya nothing is exactly what i want.

I want to send nudges to him, but i don't want him to send nudges to me.
The nudge flooding isn't the issue, i just don't want him to send nudges to me to show him up! (cause he thinks he is a hacker!)
Can someone write a script for that or something?
12-02-2006 02:29 AM
Profile E-Mail PM Find Quote Report
Baggins
Full Member
***

Avatar
B000ALFAZO

Posts: 387
Reputation: 13
29 / Male / Flag
Joined: Oct 2006
RE: Nudge Blocker
nudge flood protection could be modified to block all nudges from one contact.
12-03-2006 10:17 PM
Profile E-Mail PM Web Find Quote Report
Dethredic
New Member
*


Posts: 11
Joined: Nov 2006
O.P. RE: Nudge Blocker
ok i modified the values to:

var floodCount = 0;        // max amount of nudges allowed in the time period
var floodTime = 0;        // period for floodchecking, in milliseconds
var blockTime = -1;        // period the contact is being block, in milliseconds
                        // (-1 = indefinitely, aka: contacts will not be unblocked automatically)
var blockMessage = false    // true = contact will be notified that he is blocked
                        // false = contact will not be notified


This is supposed to not let anyone be able to nudge me, but it didn't work.
Did I do something wrong?

This post was edited on 12-03-2006 at 11:56 PM by Dethredic.
12-03-2006 11:56 PM
Profile E-Mail PM Find Quote Report
pollolibredegrasa
Full Member
***

Avatar
formerly fatfreechicken

Posts: 483
Reputation: 34
35 / Male / Flag
Joined: May 2005
RE: RE: Nudge Blocker
quote:
Originally posted by Dethredic
var floodTime = 0;        // period for floodchecking, in milliseconds

Erm, flood check every 0 milliseconds? That basically means it will never check....

I don't know what the default value is, but if this is used in a timer then constantly checking for stuff will probably add load to your CPU, so it's probably best to leave it as it is.

quote:
Originally posted by Dethredic
This is supposed to not let anyone be able to nudge me, but it didn't work.

No, the purpose of the script is to block people who send many nudges immediately after the other:
quote:
Originally posted by CookieRevised
Though this will not block a nudge from reaching you, but it will block the contact who is flooding you with nudges so he can't nudge you anymore.

so at least 1 nudge has to be received before it kicks in, hence

quote:
Originally posted by Dethredic
var floodCount = 0; // max amount of nudges allowed in the time period

is also wrong, as the minimum number of nudges detected can only be greather than one...

Or at least thats my understanding of this script anyway, so anyone feel free to correct me if I'm wrong ;)
;p

[Image: chickennana.gif] Vaccy is my thin twin! [Image: chickennana.gif]
12-04-2006 12:40 AM
Profile PM Find Quote Report
Dethredic
New Member
*


Posts: 11
Joined: Nov 2006
O.P. RE: Nudge Blocker
Could someone help me use this so it works as i would like it too?
12-04-2006 01:00 AM
Profile E-Mail PM Find Quote Report
xxx-jemmer-xxx
New Member
*


Posts: 5
– / Female / –
Joined: Dec 2006
Status: Away
RE: Nudge Blocker
hey i was just wondering were did u get the thing so that u can nudge ppl non stop
12-04-2006 03:59 AM
Profile E-Mail PM Web Find Quote Report
Pages: (3): « First [ 1 ] 2 3 » Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On