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

Search Results
Subject Author Forum Time
RE: FFXIII
Apparently FFXIII takes ages to get into. I'm about 4 hours in, and it still sucks eggs.... I personally wouldn't recommend. However, when it does pick up it might turn out to be awesome.... As for any other games, I can't think of any decent ones...
stoshrocketGeneral Chit Chat03-19-2010 at 06:43 PM
RE: March desktops!
Here's my mac mini: [URL=http://imgur.com/aaCHF.jpg][IMG]http://imgur. com/aaCHFl.jpg[/IMG][/URL] I'll post my laptop in a few days when I find a decent wallpaper, had the same one for 3 months now :P
stoshrocketGeneral Chit Chat03-12-2010 at 12:53 PM
RE: Dynamically changing text box, based on a form input?
Sorry, didn't realised you wanted it to calculate on the fly (should've guessed from the title...). As a note, the ceil(..) will produce a rounded value after the calculation. As for the javascript, shouldn't "result" be either an input as your...
stoshrocketTech Talk02-08-2010 at 12:36 AM
RE: Dynamically changing text box, based on a form input?
[code=php] $am = $_POST['amount']; $ret = ceil($am/0.05); [/code] EDIT: NB: ceil rounds up to nearest integer value, which I assumed from your post. However, if you needed to round up such that you end up to the nearest pence/cent, you'd have to u...
stoshrocketTech Talk02-07-2010 at 10:14 PM
RE: February Desktops!
[URL=http://img43.imageshack.us/i/wobudesk.png/][I MG]http://img43.imageshack.us/img43/9383/wobudesk. th.png[/IMG][/URL] :cheesy: PS: What's with the cookie monster craze? [URL=http://img218.imageshack.us/i/cookiej.png/][I MG]http://img218.imageshack.u...
stoshrocketGeneral Chit Chat02-03-2010 at 01:08 AM
RE: [RESOLVED] Need help with JavaScript replace()
the replace function is using [url=http://www.w3schools.com/jsref/jsref_obj_rege xp.asp]Regular Expressions[/url], in the format of /pattern/modifiers. In this example, everything between the "/"s are the characters to replace and the ig are the mo...
stoshrocketTech Talk01-28-2010 at 12:18 PM
RE: What code editor do you use??
Neither had I until Nana made me look for it. Had it on ever since :P (Y)
stoshrocketTech Talk01-25-2010 at 06:10 PM
RE: Views on Religion
Personally I don't know. How could you? What I believe is a different matter, and although I do not attatch myself to any particular sect of religion(**), I do believe in something. My opinion in religion is very different from what the typical "go...
stoshrocketGeneral Chit Chat01-20-2010 at 10:07 AM
RE: Messenger Plus! and me
Thank Patch! Clears up a few questions which have been floating around. Glad to hear you're still playing a large role.
stoshrocketWLM Plus! General01-20-2010 at 09:48 AM
RE: Question about "MyStatus"
The variable automsg is the return value for "Message.search("AutoMessage :")". search() returns the position what is searched for, or -1 if it can't be found. Therefore, that line checks if "AutoMessage :" is in the message sent, if it is t...
stoshrocketScripting01-19-2010 at 07:52 PM
RE: Question about "MyStatus"
When the auto message is sent, messenger appears to see it as it being sent in the format "AutoMessage: <automessage>" (test it yourself by creating a toast to popup with every message you send, when "you" send an automessage, it comes up in thi...
stoshrocketScripting01-19-2010 at 02:55 PM
RE: What code editor do you use??
How are you getting along with that? I know the languages and syntax are stored as xml files, [s]but never really tried altering one.[/s] EDIT: Scratch that, just decided to try and make one to see how you'd do it. Created language using language c...
stoshrocketTech Talk01-18-2010 at 05:14 PM
RE: What code editor do you use??
Yeah, I code mostly in php, never used the auto-complete feature before, but you prompted me to search about. Typing in start of function brings up suggested functions, then when you are doing parameters it brings up the lay out... [img]http://shout...
stoshrocketTech Talk01-18-2010 at 03:37 PM
RE: What code editor do you use??
It does, just not directly called intellisense... Settings -> Preferences -> Auto Completion... :P Been using Notepad++ as long as I can remember, clean, simple, powerful :happy:
stoshrocketTech Talk01-18-2010 at 03:23 PM
RE: Did, in your honest opinion, Patchou sell out?
[url=http://maps.google.co.uk/maps?q=43+boul.+Sams on+Suite+270+Laval,+Quebec+H7X+3R8&oe=utf-8&client =firefox-a&ie=UTF8&hq=&hnear=43+Boulevard+Samson,+ Laval,+Qu%C3%A9bec,+Canada&gl=uk&ei=XaJTS4v3LZ380w SDz7WzDQ&ved=0CAgQ8gEwAA&ll=45.521922,-73.789359&. ..
stoshrocketWLM Plus! General01-17-2010 at 11:56 PM
RE: Auto Responding Answering Machine Script (based on timeout not keywords)
Indeed, but if I suck at Javascript I'm not going to be much better in JScript am I? :P
stoshrocketScripting01-17-2010 at 08:25 PM
RE: Question about "MyStatus"
Much better solution Matti, thanks :P
stoshrocketScripting01-17-2010 at 08:10 PM
RE: Question about "MyStatus"
Use a loop and a couple of arrays to replace the number? [code=javascript] function OnEvent_ChatWndCreated(ChatWnd) { var Message = "Your current status is " + Messenger.MyStatus + "!"; var number = new Array("2","3","4","5"....)...
stoshrocketScripting01-17-2010 at 06:29 PM
RE: MySQL and PHP - using 2 tables in one query?
Ah. Then the only way I could see it would be to use 2 separate queries :undecided: One to reteive the id, then query the next table for the results. Although, I'm not saying it isn't possible, but quite frankly I don't understand MeEtc's soluti...
stoshrocketTech Talk01-17-2010 at 05:23 PM
RE: Greasemonkey message box / redirect
Ah, I've just taken a look at the game. I see what you mean about it not actually being in the source, but I can see where the text is meant to appear in the source, it's just been hidden. Hmm... I'm not too sure at the moment, if I think of a me...
stoshrocketTech Talk01-17-2010 at 05:23 PM
RE: MySQL and PHP - using 2 tables in one query?
Is there any particular reason for using two separate tables? It just all sounds like trying to work around something that isn't needed. Why not just merge the steam id's, names and details into one table? It would make things a lot easier than hav...
stoshrocketTech Talk01-17-2010 at 04:41 PM
RE: Auto Responding Answering Machine Script (based on timeout not keywords)
Looking over the database I don't think it's been done yet, but it is certainly possible. However, I'm in the middle of my exams and suck at javascript, so I don't think I'd be the right person to try and code it. With a little knowledge and som...
stoshrocketScripting01-17-2010 at 04:34 PM
RE: Is there a script that can respond line-by-line...
I doubt there's a script that's out there, but with a little help from the [url=http://www.msgplus.net/scripts/view/13-Offici al-Scripting-Documentation/]scripting documentation[/url] I'm sure it's certainly possible. You could have a look at how ...
stoshrocketScripting01-17-2010 at 04:13 PM
RE: Greasemonkey message box / redirect
I don't actually get what you're trying to do tbh, I understand about looking for a word in a page source, but when would you find, or even look, for a word outside of that? Example of where you're trying to find the word?
stoshrocketTech Talk01-17-2010 at 03:52 PM
RE: Greasemonkey message box / redirect
To prevent alert spamming you could just build in a variable in place of the alert that is changed to 1 when a word is found, then after the search has been made, check the variable, if = 1, alert... [code=js] // ==UserScript== // @name ...
stoshrocketTech Talk01-17-2010 at 11:44 AM
[Hide Excerpts] Pages: (30): « First [ 1 ] 2 3 4 5 » Last »