[Request] Warn/Block People who Toast Spam you |
Author: |
Message: |
Dave
Full Member
Posts: 167 Reputation: 1
33 / /
Joined: Aug 2006
|
O.P. [Request] Warn/Block People who Toast Spam you
Would it be possible to make a script that could send someone a warning message if they were toast spamming u (repeatedly changing status), and then block them if they continued. I think it would be useful because of the scripts out there that are designed to annoy people by spamming them, and it would be nice to have a defence against them. I'm sure it must be possible, but i can't write script, so can someone else have a go?
Thanks,
Dave
PS: I cant find a script that does it, but if there is one, please post a link to it.
PC Model: HP dv9340ea
OS: Windows Vista SP 1
WLM version: 14
MP!L version: 4.81
|
|
08-18-2006 02:18 PM |
|
|
TheRealDave
New Member
Posts: 7
Joined: Jul 2006
|
RE: [Request] Warn/Block People who Toast Spam you
I was thinking of making a script that would nudge spam someone who toast spammed me. I think it'd be a treat.
|
|
08-18-2006 10:42 PM |
|
|
GiantSpider
Veteran Member
Posts: 1435 Reputation: 21
34 / /
Joined: Sep 2003
|
RE: [Request] Warn/Block People who Toast Spam you
If I remember rightly it's Hopper that does this isn't it, maybe it would be better if there was a feature that was in that limited it. Mnjul?
quote: Originally posted by TheRealDave
I was thinking of making a script that would nudge spam someone who toast spammed me. I think it'd be a treat.
Not really the solution is it.
|
|
08-18-2006 10:45 PM |
|
|
Ezra
Veteran Member
Forgiveness is between them and God
Posts: 1960 Reputation: 31
37 / /
Joined: Mar 2003
|
RE: [Request] Warn/Block People who Toast Spam you
I made a script that kinda does this, wasn't going to release it, but if you like I can post it here so you can use it.
This doesn't warn/block or anything, it simply takes over the toast function from msn. When someone goes offline, it remembers the e-mailadress for 10 seconds, if they come online within these 10 seconds no toast is shown.
Also msgplus! toasts don't have that flashy gradient or display picture. Let me know.
|
|
08-19-2006 12:24 AM |
|
|
Dave
Full Member
Posts: 167 Reputation: 1
33 / /
Joined: Aug 2006
|
O.P. RE: [Request] Warn/Block People who Toast Spam you
quote: Originally posted by Ezra
When someone goes offline, it remembers the e-mailadress for 10 seconds, if they come online within these 10 seconds no toast is shown.
Does it do the same if the switch between busy and online as well/can it be edited to do this?
PC Model: HP dv9340ea
OS: Windows Vista SP 1
WLM version: 14
MP!L version: 4.81
|
|
08-19-2006 07:24 AM |
|
|
Ezra
Veteran Member
Forgiveness is between them and God
Posts: 1960 Reputation: 31
37 / /
Joined: Mar 2003
|
RE: [Request] Warn/Block People who Toast Spam you
quote: Originally posted by Dave
quote: Originally posted by Ezra
When someone goes offline, it remembers the e-mailadress for 10 seconds, if they come online within these 10 seconds no toast is shown.
Does it do the same if the switch between busy and online as well/can it be edited to do this?
Right now it only shows a toast when somone comes online, but you could adapt it to do that too.
|
|
08-19-2006 09:48 AM |
|
|
Dave
Full Member
Posts: 167 Reputation: 1
33 / /
Joined: Aug 2006
|
O.P. RE: [Request] Warn/Block People who Toast Spam you
you say i could - bear in mind i hae no experience of programming other than copying other people's programs into visual basic. could you do it for me please?
PC Model: HP dv9340ea
OS: Windows Vista SP 1
WLM version: 14
MP!L version: 4.81
|
|
08-19-2006 11:59 AM |
|
|
Ezra
Veteran Member
Forgiveness is between them and God
Posts: 1960 Reputation: 31
37 / /
Joined: Mar 2003
|
RE: [Request] Warn/Block People who Toast Spam you
sorry, you have to try it yourself.
code: /*
* ----------------------------------------------------------------------------
* "THE BEER-WARE LICENSE":
* <ezra@tsdme.nl> wrote this file. As long as you retain this notice you
* can do whatever you want with this stuff. If we meet some day, and you think
* this stuff is worth it, you can buy me a beer in return - Ezra (Zae)
* ----------------------------------------------------------------------------
* ----------------------------------------------------------------------------
* Thanks:
*
* ----------------------------------------------------------------------------
*/
var a = new Array();
function OnEvent_Timer(TimerId)
{
for(i in a)
{
if (TimerId == a[i])
{
a[i] = undefined;
break;
}
}
}
function OnEvent_ContactSignin(Email)
{
var popup = true;
for(var i in a){
if (Email == a[i]){
popup = false;
break;
}
}
if(popup){
var Contact = Messenger.MyContacts.GetContact(Email);
MsgPlus.DisplayToastContact("Toast", Contact.Name, "Has Just Signed in","","onSignInToast_Click", Email);
}
}
function OnEvent_ContactSignout(Email)
{
var eind = a.length + 1;
for(i=0; i<eind; i++)
{
if(a[i] == undefined)
{
a[i] = Email;
break;
}
}
MsgPlus.AddTimer(Email, 10000);
}
function onSignInToast_Click(Email)
{
Messenger.openChat(Email)
}
But the Event to use is OnEvent_ContactStatusChange(
[string] Email,
[enum] NewStatus
);
|
|
08-19-2006 12:16 PM |
|
|
Dave
Full Member
Posts: 167 Reputation: 1
33 / /
Joined: Aug 2006
|
O.P. RE: [Request] Warn/Block People who Toast Spam you
right... thanks very much, i'll give it a go
edit: does this code go instead of the OnEvent initialise stuff that's already in the script when you make a new one on MP!L or doesn it go between the OnEvent initialise and OnEvent unitialise?
This post was edited on 08-19-2006 at 12:45 PM by Dave.
PC Model: HP dv9340ea
OS: Windows Vista SP 1
WLM version: 14
MP!L version: 4.81
|
|
08-19-2006 12:36 PM |
|
|
Ezra
Veteran Member
Forgiveness is between them and God
Posts: 1960 Reputation: 31
37 / /
Joined: Mar 2003
|
RE: [Request] Warn/Block People who Toast Spam you
When you create a new one, delete everything inside and put this in it.
|
|
08-19-2006 09:47 PM |
|
|
Pages: (2):
« First
[ 1 ]
2
»
Last »
|
|