Hello, i’d like to know how this is done as a unique condition. So my setup is i have an RG with a button that creates a ticket every button press. The condition i want is every 10 tickets created, another thing is created in another DB (So like every 10 tickets = 1 coupon)
My first approach was to create a thing if the count of tickets is 10. While it works, it only gets the first 10. Get more than that and nothing happens. Need help please! TIA!
You were close, on your Create a Coupon action, you need the condition Search for Tickets:count<-modulo->10 is 0
1 Like
Thank you!!! I seriously need to understand this modulo operator lol
1 Like
It searched for Tickets, got the count, divided it by 10, took the remainder and checked if it was 0 (meaning there was a multiple of 10 found) 
If you make it is 1
that means 10 were existing, then you need one more 11th Ticket made to trigger the coupon
1 Like
Thank you so much! You saved me hahaa
1 Like