So, as you might know, doing this
PHP Code:
client_cmd("spk ^"radio/ctwin(p80)^"")
or
PHP Code:
client_cmd("spk ^"radio/ctwin(p80).wav^"")
will make the pitch lower, but this will also affect the duration of the audio to become longer. So, to fix this, I can simply change the code to
PHP Code:
client_cmd("spk ^"radio/ctwin(p80t30)^"")
or
PHP Code:
client_cmd("spk ^"radio/ctwin(p80t30).wav^"")
My question is, how can I achieve something similar to this with
emit_sound, or SVC_SOUND and other messages for that matter?