Page 1 of 1

MSP over MXP.

Posted: Thu Aug 06, 2020 10:43 pm
by breakone9r
So. My MUD implements MSP over MXP, and apparently, I can't seem to trigger on that. This is representative of what is sent when a sound is sent.

<sound FName="soundfile.*" V=100 L=1 P=50 T="misc">

But it's not 100% consistent, there are a couple of places where it's actually:

<sound fname="soundfile.*" V=100 L=1 P=50 T="misc">

The reason it uses soundfile.* is so the client can play either an MP3, or a WAV file, which is played via script, and settable.

Is there any way I can get this mxp event? The only mxp variables I'm seeing are the typical send/get/etc stuff.. it's like the sound is just completely ignored.

I've tried setting up a trigger, but it's not even firing on just fname

anyone have any ideas?

Re: MSP over MXP.

Posted: Fri Aug 07, 2020 8:22 am
by Vadi
Looks like Tamarindo started with this for you on https://github.com/Mudlet/Mudlet/pull/4012 :)

Re: MSP over MXP.

Posted: Fri Aug 07, 2020 1:43 pm
by breakone9r
Vadi wrote:
Fri Aug 07, 2020 8:22 am
Looks like Tamarindo started with this for you on https://github.com/Mudlet/Mudlet/pull/4012 :)
Yeah, I saw that in the -pulse channel on discord. Trying to decide if I want to try my hand at building it myself, or just waiting for an update. :)

Thanks!

Re: MSP over MXP.

Posted: Sat Aug 08, 2020 12:15 pm
by Tamarindo
It is https://github.com/Mudlet/Mudlet/pull/4015 now :) I'm real close, I just need to get access to the Host pointer and to figure out some compile issues. Asking for some help!

-Tamarindo