What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » Search » Results

Search Results
Subject Author Forum Time
RE: Can someon make a script for speellchecking?
How would you like it to be checked. Could you be bothered clicking the SpellCheck Button Everytime u send a message? If u checked it for spelling wen you sent the message wouldnt you every want to not check for spelling? This could get a very annoyi...
leachy08Scripting08-29-2006 at 03:21 PM
RE: Can't Import Scripts
No Problem sorry i couldn't solve it for you :(
leachy08WLM Plus! Help08-14-2006 at 02:26 PM
RE: Which Browser Do You Like?
Love firefox but a lot of websites look naf in it. Use firefox unless i get problems with a website in that case i use ie for backup.
leachy08Tech Talk08-14-2006 at 02:21 PM
RE: Can't Import Scripts
is all of your script directory clear?
leachy08WLM Plus! Help08-13-2006 at 11:38 AM
RE: Can't Import Scripts
Yeh you could try to move all folders out of the scripts directory and then copy a folder at a time each time opening msgplus to see if it makes a difference.
leachy08WLM Plus! Help08-11-2006 at 08:11 PM
RE: Can't Import Scripts
Take all folders out of c:\program file\messenger plus live\scripts (guess) and then import one at a time
leachy08WLM Plus! Help08-11-2006 at 03:35 PM
RE: Can't Import Scripts
Take all folders out reinstall msgplus and then put the folders back there... If there is still a problem then move all folders out and place one in at a time to see if they work. It is likely then that one is corrupt in some way. What Operating syst...
leachy08WLM Plus! Help08-11-2006 at 03:25 PM
RE: Can't Import Scripts
Therefore it is many different scripts not the same one... On WLM Click the Plus! Meu then click preferences. Then click the script tab on the left. Give a list of the scripts there that are not running. Also define what you mean by you try to "ope...
leachy08WLM Plus! Help08-11-2006 at 03:21 PM
RE: [Idea] space replacement to emoticon.
function OnEvent_ChatWndSendMessage(ChatWnd, Message) { do { Message.replace(" ", "emoshortcut") strpos = Message.indexOf(" ") } while (strpos != -1) ) That should do it. I think... Replace emoshortcut with your emotion like :)
leachy08Scripting08-11-2006 at 03:03 PM
RE: [IDEA] PM Sender
I believe it is very simple [code] function OnEvent_ChatWndSendMessage (ChatWnd, Message) { Msg = Message.split(" ") if (Msg[0] == "/sendpm") { if (Msg[1].length != 0 && Msg[2].length != 0) { Messenger.OpenChat(Msg[1]); var Windows = Me...
leachy08Scripting08-11-2006 at 02:44 PM
RE: 911 version 2 prevented?
Some facts - All 24 of the people arrested were british. People with babies and babies bottles need to taste the drink before they get on. The Ministry of defence has been tracking this group for over 7 months. This date was not linked in anyway to ...
leachy08General Chit Chat08-11-2006 at 07:55 AM
RE: Bug in MsgPluslive.net voting
just been thinking about what i said. Man i was tired complete nonesense. The recordset is nearly a million but i do not cycle through it and add values in a running total. That would totally screw the server load up :p silly me :P
leachy08Forum & Website08-10-2006 at 10:13 AM
RE: Bug in MsgPluslive.net voting
I work at Co-Op bank and i run queries with just uner 1 million records at a time and are usually reuturned within in a few seconds on a normal windows nt box. Therefore on a server like this one this will not be a problem. Or maybe just store the i...
leachy08Forum & Website08-10-2006 at 09:13 AM
RE: [REQUEST] would like a /clear script
You can do it by closing the window and then reopening it but this will clear the last message. This however can be changed in WLM where WLM can show the last few posted items. I will have a look tonight to see if it possible
leachy08Scripting08-10-2006 at 08:02 AM
RE: Chat window open
Your Welcome :)
leachy08Scripting08-10-2006 at 08:00 AM
RE: Bug in MsgPluslive.net voting
You should just store 1 vote as one record in mysql. This will slow things down but shouldnt be that bad. Then this would be near enough impossible to break. Same with downloads. Therefore it would be harder to replicate and the same ip would not be ...
leachy08Forum & Website08-10-2006 at 07:59 AM
RE: Delay a function
To add a timer you can use this code to start the timer: [code]MsgPlus.AddTimer("atimername", 1000)[/code] And then this code to find when the timer's time interval is reached. [code] function OnEvent_Timer(TimerId) { if (TimerId == "atimer...
leachy08Scripting08-10-2006 at 07:29 AM
RE: Bug in MsgPluslive.net voting
intval This will work. Simply takes the interger value of the $_POST['vote'] and checks if it is the same as the normal value. If its not then there is a point. if ($_POST['vote'] < 0 || $_POST['vote'] > 5 || intval($_POST['vote']) != $_POST[...
leachy08Forum & Website08-09-2006 at 02:37 PM
RE: Bug in MsgPluslive.net voting
I was going to add that but thought that it may have already been handled. [code]is_int if ($_POST['vote'] < 0 || $_POST['vote'] > 5 || !is_int($_POST['vote'])) { echo "Error with voting"; die(); } [/code]
leachy08Forum & Website08-09-2006 at 02:03 PM
RE: Bug in MsgPluslive.net voting
Ahh so you will need to find each vote which is corrupt and clear it. I know id80 need clearing cuz thats mine i tested it on. To fix the flaw is easy though simple if statement... [code] if ($_POST['vote'] < 0 || $_POST['vote'] > 5) { echo ...
leachy08Forum & Website08-09-2006 at 12:44 PM
RE: Chat window open
Ahh i thought that at first but didnt understand lol :) I think you got confused when using the Contacts and the Contact object which are 2 different objcects. Contacts holding all the contacts from the chatwnd and Contact holding all info for a cont...
leachy08Scripting08-09-2006 at 12:39 PM
RE: Bug in MsgPluslive.net voting
nope its not. There's an exploit in the actual code of the voting. There is no check on the value that is being passed to the script. Therefore the user can send a vote of 1,000,000 instead of 5 if they wanted to.
leachy08Forum & Website08-09-2006 at 08:52 AM
RE: Bug in MsgPluslive.net voting
lol i seen a few then at top of highest votes with 362/5 lol
leachy08Forum & Website08-09-2006 at 07:50 AM
RE: Chat window open
Should work... or didnt i understand that then? lol
leachy08Scripting08-09-2006 at 07:49 AM
RE: Chat window open
6 minutes... WOW that was fast :) Dont thank just me. Most of the new code was written by Marat Levit and Intosia. I just created some new code to check if the contact had a window open with a person who is about to get blocked. If it did i didnt blo...
leachy08Scripting08-08-2006 at 09:10 PM
[Hide Excerpts] Pages: (2): « First [ 1 ] 2 » Last »