I'd wanted to know the exact formulas for gift chance in all possible cases:
1)
# of hours since last check >= 1
and
battles won since last gift > 0
is this example correct:
# of hours since last check = 24
battles won since last gift = 4
gift chance = 4 * 24 = 96%
2)
# of hours since last check >= 1
and
battles won since last gift = 0
is this example correct:
# of hours since last check = 24
battles won since last gift = 0
gift chance = 1%
[proof]3)
# of hours since last check < 1
and
battles won since last gift > 0
is this example correct:
# of hours since last check = 0.5
battles won since last gift = 1
gift chance = 0.5 * 1 = 0.5% (I have a proof that it's not zero)
4)
# of hours since last check < 1
and
battles won since last gift = 0
is this example correct:
# of hours since last check = 0.5
battles won since last gift = 0
gift chance = 1%
[proof] (but it's obviously must be less than in previous case)