Login Register






Chat with Friends through Command Prompt filter_list
Author
Message
Chat with Friends through Command Prompt #1
Hello friends Now U Can Chat With Command Prompt THrough So Here IS A Trick.....
1) All you need is your friend's IP Address and your Command Prompt.

2) Open Notepad and write this code as it is.....!

@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A


3) Now save this as "Messenger.Bat".

4) Open Command Prompt.

5) Drag this file (.bat file) over to Command Prompt and press Enter.

6) You would then see something like this:

[Image: imessenger.gif]

7) Now, type the IP Address of the computer you want to contact and press enter
You will see something like this:
[Image: imessenger2.gif]

8) Now all you need to do is type your message and press Enter.
Start Chatting.......!

[Image: imessenger3.gif]
DONE....ENJOY.~!!

Reply

RE: Chat with Friends through Command Prompt #2
Now fuc.k IM's this is a revolution Biggrin

Reply

RE: Chat with Friends through Command Prompt #3
i saw this , but never checked .. , is it Works with Dynamic IP ?
[Image: Wfxdx.png]

Reply

RE: Chat with Friends through Command Prompt #4
Sorry , but m not sure of that .

Reply

RE: Chat with Friends through Command Prompt #5
Why do you need to pause all the way through the loop? :huh: You should only need to define the user once too.

Code:
@echo off set /p n=User: :A set /p m=Message: net send %n% %m% Goto A

It works with a dynamic IP address, that doesn't even matter, it's your local network IP address that you're sending this to anyways, so as long as you have the proper one then it's all fine and good.

Also this is very outdated anyways, net send is a command that became obsolete in Vista and Windows 7 and replaced with MSG.
ArkPhaze
"Object oriented way to get rich? Inheritance"
Getting Started: C/C++ | Common Mistakes
[ Assembly / C++ / .NET / Haskell / J Programmer ]

Reply

RE: Chat with Friends through Command Prompt #6
this is just another mask for net send. i tried the net send too but it never work... seems like a little bit difficult to use...
[Image: ap8g35.jpg]

Reply

RE: Chat with Friends through Command Prompt #7
This thread was originally posted by me in coderscentral.exofire.net and HEX is using it without acknowledging me !!
[Image: mrawesome.gif]

Reply

RE: Chat with Friends through Command Prompt #8
(03-22-2012, 03:41 PM)MR.AWESOME Wrote: This thread was originally posted by me in coderscentral.exofire.net and HEX is using it without acknowledging me !!

So you're going to put a copyright on a Windows system file being called by syntax through batch scripting on a few lines? Ok.

(I'm pretty sure this had been posted by many people, so it's nothing to complain about in my opinion)
ArkPhaze
"Object oriented way to get rich? Inheritance"
Getting Started: C/C++ | Common Mistakes
[ Assembly / C++ / .NET / Haskell / J Programmer ]

Reply

RE: Chat with Friends through Command Prompt #9
I've seen it when I googled it the first thing that came up was this code :-)

Reply

RE: Chat with Friends through Command Prompt #10
(03-24-2012, 04:25 AM)ArkPhaze Wrote:
(03-22-2012, 03:41 PM)MR.AWESOME Wrote: This thread was originally posted by me in coderscentral.exofire.net and HEX is using it without acknowledging me !!

So you're going to put a copyright on a Windows system file being called by syntax through batch scripting on a few lines? Ok.

(I'm pretty sure this had been posted by many people, so it's nothing to complain about in my opinion)


doesnt matter if its 20 lines or 2000... plagiarists are thiefs/losers.

Reply