ChatWnd.SendMessage stops - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4) +---- Forum: Scripting (/forumdisplay.php?fid=39) +----- Thread: ChatWnd.SendMessage stops (/showthread.php?tid=64371) ChatWnd.SendMessage stops by H-J on 08-02-2006 at 05:30 PM
Hello, RE: ChatWnd.SendMessage stops by absorbation on 08-02-2006 at 05:32 PM
quote: Yeh, there is a limit of what you can send . RE: ChatWnd.SendMessage stops by H-J on 08-02-2006 at 05:37 PM
Great.... I love scripting... RE: ChatWnd.SendMessage stops by rob_botch on 08-02-2006 at 05:41 PM
AFAIK the only way to send messages again is if the contact sends a message, or the user sends one manually. RE: ChatWnd.SendMessage stops by H-J on 08-02-2006 at 06:07 PM
Thx but no option. RE: ChatWnd.SendMessage stops by foaly on 08-02-2006 at 06:12 PM can't you send in one message?? RE: ChatWnd.SendMessage stops by rob_botch on 08-02-2006 at 06:23 PM
As foaly said, sending the list in one message would probably be the best way to solve this. You can send a lot of lines in one message. The "\n" string introduces a new line. I believe that this has been discussed on these forum in passing in connection with the Fileserver script. RE: ChatWnd.SendMessage stops by Patchou on 08-02-2006 at 06:53 PM What you're experiencing is the flood protection mechanism. It prevents scripts to send more than 15 messages within 20 seconds. If you add a timer to send your messages one after the other in a short interval( let's say 1 second) then it should work fine. RE: ChatWnd.SendMessage stops by alexp2_ad on 08-02-2006 at 06:58 PM
Is there really a need for flood protection? Is it just in case people make infinite loops by accident or is it just to stop people making flooders? RE: ChatWnd.SendMessage stops by Plik on 08-02-2006 at 07:02 PM
Wouldn't it be possible to simulate the user sending a message by putting your message in the edit box with your script, then simulating and enter keypress? RE: ChatWnd.SendMessage stops by Patchou on 08-02-2006 at 07:06 PM Well, think about it another way: 20 messages within 15 seconds... I do think that if you send more in such a short period of time, you'll be most likely annoying people. RE: RE: ChatWnd.SendMessage stops by alexp2_ad on 08-02-2006 at 07:09 PM
quote:True enough. That said, if you send 1 nudge you'll be most likely annoying people. RE: RE: ChatWnd.SendMessage stops by H-J on 08-02-2006 at 07:11 PM
quote: Yeah, That is what i want to do. But if I juse setTimeout("RSSong.moveNext()", 600) I get the error: Object expected. (Code: -2146823281) Do I use the function setTimeout wrong or is it not supported? RE: ChatWnd.SendMessage stops by deAd on 08-02-2006 at 07:30 PM It means that setTimeout is not a function. You can use a Plus! timer though RE: RE: ChatWnd.SendMessage stops by H-J on 08-02-2006 at 07:32 PM
quote: RE: ChatWnd.SendMessage stops by R4000 on 10-01-2006 at 08:28 PM
Im making a 'bot' as such using msgplus, but it stops after 15 msg... even if the user types... RE: ChatWnd.SendMessage stops by CookieRevised on 10-01-2006 at 08:46 PM
quote:read the thread and especially Patchou's answer... quote:you're comparing two different things though. Your script which records all that stuff must be run by the user. A flooder doesn't need to be run by the user in order to flood him. in other words: I have a choice to install/run your malicious script and as such it would be my own responsebility and I can do something about it/prevent it from happening, but I don't have a choice and I can't prevent it from happening if you start to flood me with a script you're running. RE: ChatWnd.SendMessage stops by matty on 10-01-2006 at 09:07 PM
The way around this would be get the handle of the Chat Window (really easy as its a property of the ChatWnd object). |