What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Request] Warn/Block People who Toast Spam you

Pages: (2): « First [ 1 ] 2 » Last »
1 votes - 5 average   [Request] Warn/Block People who Toast Spam you
Author: Message:
Dave
Full Member
***


Posts: 167
Reputation: 1
33 / Male / Flag
Joined: Aug 2006
O.P. Undecided  [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
Profile E-Mail PM Find Quote Report
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
Profile E-Mail PM Find Quote Report
GiantSpider
Veteran Member
*****

Avatar

Posts: 1435
Reputation: 21
34 / Male / Flag
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
Profile PM Find Quote Report
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
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.
[Image: 1-0.png]
             
08-19-2006 12:24 AM
Profile PM Web Find Quote Report
Dave
Full Member
***


Posts: 167
Reputation: 1
33 / Male / Flag
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
Profile E-Mail PM Find Quote Report
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
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.
[Image: 1-0.png]
             
08-19-2006 09:48 AM
Profile PM Web Find Quote Report
Dave
Full Member
***


Posts: 167
Reputation: 1
33 / Male / Flag
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
Profile E-Mail PM Find Quote Report
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
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
);
[Image: 1-0.png]
             
08-19-2006 12:16 PM
Profile PM Web Find Quote Report
Dave
Full Member
***


Posts: 167
Reputation: 1
33 / Male / Flag
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
Profile E-Mail PM Find Quote Report
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
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.
[Image: 1-0.png]
             
08-19-2006 09:47 PM
Profile PM Web 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