[quote author=cavagnaro link=topic=11076.msg50348#msg50348 date=1533184938]
You just need to do this I think
Your goal actually is to do a countdown until he is answered? Right?
If so
At RP2 you have a target object, correct? At that target object you have to add a VQ, let's call it VQ1.
At this target you establish a time in queue time. Lets say you want to play a music for 45 seconds and then inform again the queue position.
So Timeout at target is 45 and the music treatment also is 45 seconds.
Then after this timeout expires, you go to the red port so you go to one play prompt block which is before the target block.
Here you Play the prompt 10, 9, 8, 7 etc. Which is actually the calls in VQ currently queued + 1.
And then over and over again.
If you want to control the max time then do a loop control counting the times each call got out of the target.
If this is not what you need then please explain better.
Using 2 RP quite makes no sense for your need
Enviado de meu E6633 usando o Tapatalk
[/quote]
Just adding some other information, since I have worked in a similar thing just yesterday

- On the TargetSelect block that goes into the loop that cavagnaro mentioned, you should UNCHECK the Clear Targets checkbox;
- Instead of using the Calls in queue + 1 (which could actually increment while the customer is waiting in queue), you should use the PositionInQueue function of IRD (assuming you are creating a strategy on IRD instead of composer - which is way better

);
- You should have the function PriorityTuning[true,false] at some point of your strategy (preferible inside this 'loop' so the customer is not placed at the end of the queue each time the treatment is applied.
Another way of doing what you want is using the SetStatUpdate function, which updates an AttachData every 60 seconds with the value of a statistic. You could use the statistic PositionInQueue to update an attach data, and then on the BusyTreatment of the target selection block (without a loop) you could play 60 seconds of music and then add another treatment that sends to an IVR that announces the content of this Attach Data.
HTH