====== Notify by Join User ======
===== Installation =====
- Download {{:sounds:sounds_notify.zip|}} 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 [[http://www.videolan.org/vlc/|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''
'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)