Custom reward repeat probability is high
1540781622 opened this issue ยท 16 comments
I set the bonus value of the custom opportunity cube to
%%RND(1,99)%% But the probability of repeated occurrence is still very high A total of 30 custom rewards
Um, I use the creation of the pendant to set the 0 bonus value. Then in the custom configuration, 30 rewards are all set to 0. The repetition is reduced.
Ohhhhhh. Are you setting the Chance value to %%RND(1,99)%%? I.e does your json have the line "chance:"%%RND(1,99)%%""?
You have 30 rewards correct? Each with a chance value of 0? And is the issue that the same ones are being given over and over?
All my custom configurations are in this picture
You probably meant to do
"jz12":{
"chance":"%%[1,2,3,4,6,8,10]%%"
...
}
as chance
is the "opportunity" value that I think you are referring to. That being said, the chance value cannot accept dynamic values so %%[1,2,3,4,6,8,10]%%
will not work. It must be a number.
you have
"jz12":{
"delay":"%%[1,2,3,4,6,8,10]%%"
...
}
and also the same in the jz13 file as well.
This delay element is not supported here. On top of this, all of your rewards are missing a chance value, which is why they are defaulting to 0.