Author Topic: creating cmds  (Read 3906 times)

Kingston@#

  • Guest
creating cmds
« on: August 02, 2017, 03:00:43 AM »
I'm looking into creating some cmds. I like the cmd eddi has that turns text to speech every time I get a message. but the amount received, txt to sp is continually rapping on. also there is a bit of chaos between my HCS VP's.  so I would like to see if I can add something similar to my existing VA profile that will read only direct messages. can anyone point me in the right direction on how?

Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4759
  • RTFM
Re: creating cmds
« Reply #1 on: August 02, 2017, 03:51:29 AM »
Are you sure this sort of filter can't be configured within EDDI itself? It has variables that provide information on the message, including whether it came through the "direct" channel.

If not, you could likely use the VoiceAttack tokens it populates with those variables, E.G.
((EDDI message received))
Code: [Select]
Begin Text Compare : [EDDI message received channel] Equals 'direct'
    Say, '{TXT:EDDI message received message}'
End Condition