Tweets from pichat
| Two songs from the year I created my first web sites. http://t.co/8eHrOA9K + http://t.co/AuWb2etI #video #retro About 1 day ago from pichat (Mark Seuffert) |
Tweets from 600infos
| I HAVE NYANED FOR 888.4 SECONDS! http://t.co/JQYOZebv via @nyannyancat About 1 week, 5 days ago from 600infos (Wolf) |
Trace: » Featurerequests (en) » Application-Logos » Pichat as Service » Using HTTPS for Pichat with stunnel » type_formated_text » Notify by Join User
You are here: Pichat Wiki (en) » Manuals » Notify by Join User
Table of Contents
Notify by Join User
Installation
- Download sounds_notify.zip (74.28 KiB, 1y ago, 13 downloads) und extrahiere es nach c:\Progra~1\Pichat
- modifiziere die GUI Sounds-Section in der pichat.ini
[notepad.exe %appdata%\pichat\pichat.ini] - restart Pichat
[GUI Sounds] EnableSoundEffects=1 SoundEffect1=CHAT_PING, *, default SoundEffect2=CHAT_PONG, *, default SoundEffect3=CHAT_JOIN, <9, c:\Progra~1\Pichat\dong.wav SoundEffect4=CHAT_SERVER_USERADD, *, c:\Progra~1\Pichat\kling.wav
Alternative
- Install VLC-Player
pichat.ini Section
[Server Actions] ExternalProgram=C:\Progra~1\VideoLAN\VLC\vlc.exe ChatAction1=CHAT_SERVER_USERADD, *, c:\Progra~1\Pichat\kling.wav
Messagescript
pichat.ini modify Section [Server Actions]
[Server Actions] ExternalProgram=c:\Progra~1\Pichat\wolf_msg.vbs ChatAction1=CHAT_SERVER_USERADD, *, "New User in the Chat"
VB Script download and save to c:\Progra~1\Pichat\wolf_msg.vbs
- wolf_msg.vbs
'Script: wolf_msg.vbs 'Version 0.0.1 Mark Wolfgruber 09.11.2010 dim args, i, disp, msg, title set args = wscript.Arguments if args.Count >0 then title = "Message" for i = 0 to ( args.Count - 1) msg = msg & args(i) & chr(13) next else title = "Attention" msg = "no Message" end if disp=MsgBox(msg,0,title)