Go Back   Gaming Gutter > Non-Gaming > Programming > Source Code


Source Code - Have a source code/project files you want to post? Do so here.

» Site Navigation
» Home
» FAQ
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Advertisement
» GG Stuff

Follow us on Twitter!

Get the GG toolbar today (for firefox only)
» Recent Threads
How do i upload...
Today 05:44 AM
by kapa
Last post by kapa
Today 06:04 AM
4 Replies, 5 Views
Neopets 10th Birthday...
11-16-2009 07:29 AM
by limacon
Last post by limacon
Today 05:54 AM
8 Replies, 918 Views
Go to first new post What neopets programs do...
11-19-2009 04:03 AM
by slurf
Last post by slurf
Today 05:54 AM
6 Replies, 101 Views
[PHP] MD5 List Cracker
11-19-2009 05:00 PM
by tWi
Last post by mehike
Today 04:43 AM
12 Replies, 192 Views
Go to first new post Journaling
11-17-2009 06:53 PM
by Cody!
Last post by Charger
Today 04:40 AM
5 Replies, 64 Views
Reply
 
LinkBack Thread Tools Display Modes

 [Repared MsgPlus Script] Brb Status
Old 08-16-2009, 12:15 PM   #1 (permalink)
AutoIt Programmer

Male Personoid xX is offline
 
Personoid xX's Avatar
 
Join Date: Sep 2008
Location: In SciTe
Posts: 1,257
GPoints: 13,103
iTrader: 0 / 0%
Personoid xX Is a Lord of AwesomenessPersonoid xX Is a Lord of AwesomenessPersonoid xX Is a Lord of Awesomeness
Rep Power: 8
[Repared MsgPlus Script] Brb Status

I didn't make it. I found it on the msgplus site.
It didn't work with the newest msn. Now it does.

Code:
function OnEvent_Initialize(MessengerStart)
{
        Old_Status = 0;
        isGone = false;
}
function OnEvent_ChatWndSendMessage(ChatWnd, Message)
{
        if (Message.substr(0,3).toLowerCase() == "brb" ){
                if (isGone == false){
                        if (Messenger.MyStatus == STATUS_INVISIBLE){
                                return;
                        }
                        Old_Status = Messenger.MyStatus;
                        Messenger.MyStatus = STATUS_AWAY isGone = true;
                }
        }else if (Message.substr(0,3).toLowerCase() == "afk" ){
                if (isGone == false){
                        if (Messenger.MyStatus == STATUS_INVISIBLE){
                                return;
                        }
                        Old_Status = Messenger.MyStatus;
                        Messenger.MyStatus = STATUS_AWAY isGone = true;
                }
        } else if (Message.substr(0,4).toLowerCase() == "back"){
                if (isGone == true){
                        Messenger.MyStatus = Old_Status;
                        isGone = false;
                }
        }
        return Message;
}
Use: Type brb or afk to change your status to away. back changes it to whatever it was before.
It is not case sensitive.
__________________





Quote:
Originally Posted by Cake
Quote:
Originally Posted by Fork
is it hot in here or is it just me?
no that's personoid

Last edited by Personoid xX; 08-16-2009 at 12:39 PM..
  Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Powered by vBadvanced CMPS v3.1.0

All times are GMT -7. The time now is 06:10 AM.


vBulletin skin developed by: eXtremepixels
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The contents of this webpage are copyright © 2006-2008 GamingGutter.com. All Rights Reserved.

Page generated in 0.21328497 seconds (100.00% PHP - 0% MySQL) with 21 queries