Is there a way to limit this?
For example, for one post (watch event / trigger) I want him to reply 50 times, then stop and wait for the next post (watch event / trigger), reply 50 times, stop, and so on.
To create reply 50 times, need 50 comment IDs. It seems you want to reply to same comment 50 times. Is that so??
Now to the point, to reply 50 times to a comment, you need to run the module 50 times as the module doesn’t accept the limit.
Limit is for “list Calls of any API”
Below is the approach to do this. This is going to burn 50 operations for each next module.
Now to run the module 50 times, you need to pass the comment ID 50 times. And to do so, put a “List Media” module before or after GPT module and set the limit there as 50. This will generate 50 bundles and will cause each next module to run 50 times.
Before GPT, to make each comment unique.
Regards, Msquare Automation - Gold Partner of Make
The scenario works as follows:
Watch event: check if a new comment is placed.
Get Media: Check under which post the comment is placed.
Create a completion: With the info of the Get Media in mind, GPT will generate an answer and post it.
What I want, is to limit the amount of answers per post.
But I might know how to solve it based on your reply. Will let you know.