I currently have a Call Pilot front ending my Master script. Option 9 is to be transferred to voicemail. I want to take that option out of Call Pilot and include the voicemail option inside of each individual script in Symposium after 30 seconds of waiting. I'd like to have a message that comes on after 30 seconds inside each script that says "stay on the line or push 9 to leave a voicemail."
After that(if they choose to hold), I'd like the message to come on every 60 seconds.
I've included one of my scripts below. Can anyone give me a quick rundown of what I need to do to accomplish this... also what items will be involved..(global variables,age of call statements, etc?)
I am relatively new at scripting, but think I can figure this out with a few pointers. Thanks TJ!
/*General Script
Variable List Variable Type
moh_gv
Script*/
IF OUT OF SERVICE AS400_sk THEN
route call 3333
ELSE
QUEUE TO SKILLSET AS400_sk
WAIT 2
END IF
GIVE MUSIC moh_gv
SECTION wait_two_loop
GIVE RAN ran_1
WAIT wait_30_gv
IF NOT QUEUED THEN
IF OUT OF SERVICE AS400_sk THEN
Route call 3333
ELSE
QUEUE TO SKILLSET AS400_sk
WAIT 2
END IF
END IF
GIVE CONTROLLED BROADCAST ANNOUNCEMENT 6500
PLAY PROMPT VOICE SEGMENT outage_vs
WAIT wait_30_gv
EXECUTE wait_two_loop
After that(if they choose to hold), I'd like the message to come on every 60 seconds.
I've included one of my scripts below. Can anyone give me a quick rundown of what I need to do to accomplish this... also what items will be involved..(global variables,age of call statements, etc?)
I am relatively new at scripting, but think I can figure this out with a few pointers. Thanks TJ!
/*General Script
Variable List Variable Type
moh_gv
Script*/
IF OUT OF SERVICE AS400_sk THEN
route call 3333
ELSE
QUEUE TO SKILLSET AS400_sk
WAIT 2
END IF
GIVE MUSIC moh_gv
SECTION wait_two_loop
GIVE RAN ran_1
WAIT wait_30_gv
IF NOT QUEUED THEN
IF OUT OF SERVICE AS400_sk THEN
Route call 3333
ELSE
QUEUE TO SKILLSET AS400_sk
WAIT 2
END IF
END IF
GIVE CONTROLLED BROADCAST ANNOUNCEMENT 6500
PLAY PROMPT VOICE SEGMENT outage_vs
WAIT wait_30_gv
EXECUTE wait_two_loop