Oops . . . almost forgot to include the script for stop.bat and stop.vbs. These will ensure music from a prior zone stops before starting music for the current zone (otherwise, both will play at the same time).
Stop.vbs
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.run "%comspec% /c C:\EQEmu\quests\music\stop.bat",0
Set WshShell = Nothing
Stop.bat
@echo off
pskill sndrec32
pskill comes stock with pstools. They are free; just google and download.
Otherwise, just use tskill (tskill sndrec32).
|