Batch Chat (WeChat) Project 09-27-2013, 07:08 PM
#1
Hello guys, I'm working in a project, i already spend many hours on this, because im kinda newbie in batch scripting.
I've made a chat, I will let it BELLOW for you guys download it!
How does it work?
Take a look
![[Image: ZEjGg.png]](http://i.epvpimg.com/ZEjGg.png)
This is how it looks like
![[Image: BeyCg.png]](http://i.epvpimg.com/BeyCg.png)
I hope you guys like it, it have some bugs, im trying to fix it and add it more commands...
I hope to help some people!
Btw, if someone here knows some batch scripting and wants to help with this project, send me a PM
Download:
Download WeChat Project ( Click Me! )
VirusTotal: [/color]3/10 (False Alarm)
https://www.virustotal.com/pt/file/9b25c...380304916/
Script:
Chatter:
Reader:
I've made a chat, I will let it BELLOW for you guys download it!

How does it work?
Take a look
![[Image: ZEjGg.png]](http://i.epvpimg.com/ZEjGg.png)
This is how it looks like

![[Image: BeyCg.png]](http://i.epvpimg.com/BeyCg.png)
I hope you guys like it, it have some bugs, im trying to fix it and add it more commands...
I hope to help some people!

Btw, if someone here knows some batch scripting and wants to help with this project, send me a PM

Download:
Download WeChat Project ( Click Me! )
VirusTotal: [/color]3/10 (False Alarm)
https://www.virustotal.com/pt/file/9b25c...380304916/
Script:
Chatter:
Code:
@echo off
Title WeChat
echo Welcome to WeChat
echo.
echo ##################################
echo Commands:
echo /cleanchat (delete chat data)
echo ##################################
echo.
set /p username=Enter Your Name:
echo %username% has joined the chat! >> join.txt
:MESSAGE
set /p message=Say:
if %message%== /cleanchat DEL log.txt
:SEND
echo %username%: %message% >> log.txt
goto MESSAGEReader:
Code:
@echo off
Tittle WeReader
:read
cls
type join.txt
echo.
type log.txt
echo.
ping localhost n l -w 100 > nul
goto read

![[+]](https://sinister.li/images/modern/collapse_collapsed.png)