Quote:
Went to MUD, typed: set_msp_path C:\MUSHclient\sounds
...
!!SOUND(sound/playerhit.wav)
It joins up the path you gave with what it got from the MUD. So it is going to look for a file in:
C:\MUSHclient\sounds\sound/playerhit.wav
Apart from the problem with the slashes, the path isn't right.
Try making a directory inside C:\MUSHclient\sounds called "sound" and putting the sounds in that. You want to get to the point where the filename:
C:/MUSHclient/sounds/sound/playerhit.wav
is valid.
And since the MUD is sending a forwards slash I would do this for the path:
set_msp_path C:/MUSHclient/sounds
Notice the forwards slashes.
I think there is a bug in the plugin in the way it remembers the path you set.
Edit the plugin, and delete the following lines:
<!-- Variables -->
<variables>
<variable name="msp_path">c:\mushclient\msp\</variable>
</variables>
Then reinstall the plugin. THEN do the "set_msp_path". Then it should be OK.