How does the system work internally?
When you request to show an ad using the Load Ad block, we first generate a random decimal number between 0 and 1.
- If that number is higher than 0.1, the ad gets loaded as it should, using your Admob account.
- If that number is lower than 0.1, it means we have to take the commission. So, instead of loading an Admob ad using your account, we load an Unity Ad using our identifier.
And don’t worry about blocks. We made the system in a way that all blocks are totally adapted to the new ad network. So all events will be triggered in the same way as they do with the primary ad network.
What do we achieve with this?
This system works like a Binomial Distribution
If you generate a binomial distribution graph, where the sample is 100 ads and the chance of success is 0.1, you will get this probability for 10 ads being commissioned:
As you can see, the most frequent number of ads that will be displayed using Unity are 10 ads. But they can be displayed 9 and 11 as well.
The average of this distribution is 10, so we are exactly taking 10 ads every 100 ad requests (10%).
