Redeems Dashboard
{% if (username and users ) %}
Your points balance |
{% for user in users %}
{{ user[0] }} |
{{ user[1] }} |
{% endfor %}
{% endif %}
{% if passive %}
Tlapbot is currently in passive mode.
You can't make any redeems, but you will receive points for watching.
{% endif %}
{% if not passive %}
{% if counters %}
Active counters |
{% for counter in counters %}
{{ counter[0] }} |
{{ counter[1] }} |
{% endfor %}
{% endif %}
{% if milestones %}
{% for milestone in milestones %}
{% endfor %}
{% endif %}
{% endif %}
Currently active redeems
If you have enough points, you can redeem those redeems by typing the command in chat.
- Counter redeems add +1 to their counter.
- List redeems get added to the list of recent redeems (without a note).
- Note redeems require you to send a message together with the redeem.
- Milestone redeems are long-term goals to which you can donate any amount of points you want.
- They will be completed once the amount of points donated reaches the goal.
{% if redeems %}
Redeem |
Price |
Type |
Description |
{% for redeem, redeem_info in redeems.items() %}
{{ prefix }}{{ redeem }} |
{{ redeem_info["price"] }} |
{{ redeem_info["type"] }} |
{% if redeem_info["info"] %}
{{ redeem_info["info"] }} |
{% endif %}
{% endfor %}
{% endif %}