Maviarab:
I have the same problem with my Hal. I always have to adjust the pitch and speed of the TTS voice after restarting Hal. As far as I know, Hal saves the voice you are using, but not the custom settings.
Darius:
Try;
"\Pit=" & Round(Pitch, 0) & "\\Spd=" & Round(Speed, 0) & "\\Vol=" & Round(Volume, 0) & "\"
(you need a "\" before and after every speech output tag)
If that still does not do it, try;
"\\Pit=" & Round(Pitch, 0) & "\\\\Spd=" & Round(Speed, 0) & "\\\\Vol=" & Round(Volume, 0) & "\\"
(sometimes you need to double certain symbols to "escape" them through command filtering)
Hope this helps [

]