Shoutbox

[REQUEST] Put the cmd /noicon at the front of all messages - 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: [REQUEST] Put the cmd /noicon at the front of all messages (/showthread.php?tid=62511)

[REQUEST] Put the cmd /noicon at the front of all messages by Firehalk on 07-04-2006 at 02:12 PM

I think it's pretty simple, and this way the smiles wouldn't appear (like other guys wanted).

How can I do that? A cmd that after I send a message, adds at the start of it (when sending the message do the server) the command "/noicon" ?


RE: [REQUEST] Put the cmd /noicon at the front of all messages by foaly on 07-04-2006 at 02:34 PM

code:
OnEvent_ChatWndSendMessage(ChatWnd,Message){
           Message = "/noicon "+Message;
           return Message;
}


i think...
RE: [REQUEST] Put the cmd /noicon at the front of all messages by J-Thread on 07-04-2006 at 02:48 PM

Here it is, I'll also submit it to the official script database.

Edit: That works indeed, I added an option to turn it on / off in my script(Y)
Edit2: The "Official" Thread


RE: [REQUEST] Put the cmd /noicon at the front of all messages by Firehalk on 07-04-2006 at 02:56 PM

Perfect!

Thank you dude!