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

Pages: (2): « First [ 1 ] 2 » Last »
[RELEASE] Temp Blocker
Author: Message:
LifelesS
Full Member
***


Posts: 115
Reputation: 4
31 / Male / Flag
Joined: Dec 2006
O.P. [RELEASE] Temp Blocker
Temp Blocker

Description:


This is just a little script, with no interface, that blocks a contact for 10 seconds if he goes on and off for more than 2 times. It works up to 3 contacts at the same time. It also has 1 min timer that resets everything.

----------------------------------------------------------------------------------------------------

Thanks to Volv for remind me how the timers function actually worked :)

I dedicate this script to my cousin and all credits goes to him, because it was his idea, I just turned it into computer language ;)

If you think the script is useful, I'll make another version with an interface, just let me know!

.plsc File Attachment: Temp_Blocker.plsc (2.43 KB)
This file has been downloaded 152 time(s).

This post was edited on 12-09-2007 at 07:46 PM by Tochjo.
Best Regards,
Joćo Godinho
07-08-2007 01:43 PM
Profile E-Mail PM Find Quote Report
Volv
Skinning Contest Winner
*****

Avatar

Posts: 1233
Reputation: 31
34 / Male / Flag
Joined: Oct 2004
RE: [RELEASE] Temp Blocker
Haven't tried this yet but it definitely seems useful - I hate it when toasts stack up the screen.

quote:
Originally posted by LifelesS
Thanks to Volv for remind me how the timers function actually worked :)
No problem :D

This post was edited on 07-08-2007 at 02:02 PM by Volv.
07-08-2007 01:59 PM
Profile PM Find Quote Report
LifelesS
Full Member
***


Posts: 115
Reputation: 4
31 / Male / Flag
Joined: Dec 2006
O.P. RE: [RELEASE] Temp Blocker
:D

If you check the code, it could be A LOT smaller if I made a function, but I couldn't get it working so...

Maybe next version...:P
Best Regards,
Joćo Godinho
07-08-2007 06:59 PM
Profile E-Mail PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: [RELEASE] Temp Blocker
There is already a script which does this (without the limitation of 3 contacts, etc)...

CookieRevised's reply to [Request] Block someone if login too many times for X period of time

;)

This post was edited on 07-08-2007 at 10:02 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
07-08-2007 10:00 PM
Profile PM Find Quote Report
LifelesS
Full Member
***


Posts: 115
Reputation: 4
31 / Male / Flag
Joined: Dec 2006
O.P. RE: [RELEASE] Temp Blocker
Didn't know that it already existed... Anyway I built the script just to get the rust out a little :)
Best Regards,
Joćo Godinho
07-08-2007 10:04 PM
Profile E-Mail PM Find Quote Report
riahc4
Veteran Member
*****


Posts: 1073
Reputation: -18
– / Male / Flag
Joined: Aug 2004
Status: Away
RE: [RELEASE] Temp Blocker
Make it better;

Block for x time/day
If a contact posts the same message x times repeatedly in a period of x seconds, autoblock or blocks them for x time/day
Make a GUI for it of course

Keep up the great work :)

This post was edited on 07-17-2007 at 03:06 AM by riahc4.
07-17-2007 03:05 AM
Profile PM Find Quote Report
LifelesS
Full Member
***


Posts: 115
Reputation: 4
31 / Male / Flag
Joined: Dec 2006
O.P. RE: [RELEASE] Temp Blocker
That would be nice, but it could be done easier with a var with a limit:
The contact sent a message, it's saved inside a var and adds a timer, if he sends the same message more 3 times or so before the timer triggers, blocks for 'x' time. Something like that:D

Thanks, and thanks for the idea :)

P.S. I already made another version, with a new code and now user's able to choose some options with /command, just waiting MenthiX aproval, then if it's worth it ('cause I'm in a brainstorm and ideas can't stop coming:P), I'll make a 2.0 version with a GUI:)
Best Regards,
Joćo Godinho
07-17-2007 10:26 AM
Profile E-Mail PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: [RELEASE] Temp Blocker
quote:
Originally posted by LifelesS
That would be nice, but it could be done easier with a var with a limit:
The contact sent a message, it's saved inside a var and adds a timer, if he sends the same message more 3 times or so before the timer triggers, blocks for 'x' time. Something like that:D
That's not easier, that's more complicated than what riahc4 suggested ;)

Also, it wouldn't detect spammers who change the message from time to time. To make a flood checker which detects real flooding, you must do what riahc4 suggested (which would actually needs less code than with your suggestion ;))


PS: post the (new) script on the forums first, so people can take a look at it and test it out before submitting it to the database...

This post was edited on 07-17-2007 at 08:16 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
07-17-2007 08:14 PM
Profile PM Find Quote Report
LifelesS
Full Member
***


Posts: 115
Reputation: 4
31 / Male / Flag
Joined: Dec 2006
O.P. [RELEASE] Temp Blocker 1.1
quote:
Originally posted by CookieRevised
That's not easier, that's more complicated than what riahc4 suggested ;)


Yeah, probably :P ;)


quote:
Originally posted by CookieRevised
PS: post the (new) script on the forums first, so people can take a look at it and test it out before submitting it to the database...


ehhh... Ups:$

But here it is:)

I think there's no need to write a new thread because of that...

----------------------------------------------------------------------------------------------

Temp Blocker 1.1

New features:

- User can now choose for how many time to block contact with /tempblockertimer <Timer> (seconds - min 10<>max 300);

- User can now choose how time toasts to show before block with /tempblockerlimit <Limit> (from 2 to 5; 2 is default, so it shows 2 toasts and then blocks the third time contact goes on, so on...);

- User can reset the limit and timer with /tempblockerreset command;

- User can send link to download script with /tempblockersend command;

- Also added a about with the /tempblockerabout, it sends what's inside a text file;

- and finally, it's English and Portuguese...

I also re-wrote the code...

.plsc File Attachment: Temp_Blocker11.plsc (6.75 KB)
This file has been downloaded 107 time(s).
Best Regards,
Joćo Godinho
07-17-2007 09:38 PM
Profile E-Mail PM Find Quote Report
Bladeh
New Member
*

Avatar

Posts: 14
Reputation: -1
33 / Male / Flag
Joined: Jun 2007
Temp Blocker 1.1
I didn't make the script but when I type in some of the commands it just sends the command as a message not actually doing anything.

http://www.msgpluslive.net/scripts/view/322-Temp-Blocker/


It the following commands that don't work:-

/tempblockertimer
/tempblockerlimit

Anyone have any idea's?
07-27-2007 01:29 PM
Profile E-Mail PM Find Quote Report
Pages: (2): « First [ 1 ] 2 » 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