Shoutbox

StuffPlug Talker: UCase - 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)
+----- Forum: Plug-Ins (/forumdisplay.php?fid=28)
+------ Thread: StuffPlug Talker: UCase (/showthread.php?tid=37970)

StuffPlug Talker: UCase by Mike on 02-05-2005 at 07:21 PM

Hello.

When you are using this talker, every first letter in your message will become capital.
This can make your message look more "professional".
The bad thing is that when you send something short that it isn't usually capitalized like "ok", "lol" etc it will be capitalize it...
Well this is easily fixed but I'm too lazy to fix it... :P
Now, if you use WDZ's word filter list file (search the forums for it) you can make your messages more "professional" !

To install this talker:
1) Download talker.ucase.zip
2) Extract the file inside the zip into the folder of your StuffPlug talkers. This is usually located in "C:\Program Files\Messenger Plus! 3\Plugins\StuffPlug-NG\Talkers"

Please tell me what you think... :)


RE: StuffPlug Talker: UCase by _Humphreys on 02-05-2005 at 07:28 PM

Thanks this is very useful as I do come out with some drabble at times. It works perfectly. :)


RE: StuffPlug Talker: UCase by jameslives on 02-05-2005 at 07:40 PM

handy plugin
thanks


RE: StuffPlug Talker: UCase by _Humphreys on 02-05-2005 at 07:41 PM

quote:
Originally posted by jameslives
handy plugin

Sorry to be a smart arse but it's a SPNG Talker not a plug-in. :P
RE: StuffPlug Talker: UCase by Mike on 02-07-2005 at 03:31 PM

Ok....
Here is the updated version.
Go to your StuffPlug NG folder of your talkers (usually "C:\Program Files\Messenger Plus! 3\Plugins\StuffPlug-NG\Talkers")
Locate the file named talker.ucase.vbs
Right click on it and click "Edit"

Find the line that says

code:
Function talker(ByVal strinput)
(first line)
Paste the following under it:
code:
if left(strinput, 2) = "ok" or left(strinput, 7) = "http://" or left(strinput, 3) = "lol" or left(strinput, 3) = "www" then
     talker = strinput 
     exit function
end if
So it should look like this:
code:
Function talker(ByVal strinput)

if left(strinput, 2) = "ok" or left(strinput, 7) = "http://" or left(strinput, 3) = "lol" or left(strinput, 3) = "www" then
     talker = strinput 
     exit function
end if

talker = "" & UCase(Left(strinput, 1)) & Mid(strinput, 2)
End Function

Click File -> Save

By doing this, words like "lol", "www", "http" wont be capitalized :)
RE: StuffPlug Talker: UCase by _Humphreys on 02-07-2005 at 04:34 PM

Thanks again Mike 2 I guess this screwed up links in msn right?