▪️Activity: Add Points / Add Gems & Diamonds



Last updated
Was this helpful?
Was this helpful?
(function () {
var result = 0;
if (state.acc_total_deposit_amount >= 1000) {
result = event.acc_last_deposit_amount * 0.10;
} else {
result = event.acc_last_deposit_amount * 0.05
}
return Math.ceil(result);
})()