{% extends "tablepage.html" %} {% block head %} {{ super() }} {{ player_name }}'s Tracker {% endblock %} {% block body %} {% include "header/dirtHeader.html" %}
🡸 Return to Multiworld Tracker {% if game_specific_tracker %} Game-Specific Tracker {% endif %}
This tracker will automatically update itself periodically.
{% for id, count in inventory.items() if count > 0 %} {%- endfor -%}
Item Amount Last Order Received
{{ item_id_to_name[game][id] }} {{ count }} {{ received_items[id] }}
{%- for location in locations -%} {%- endfor -%}
Location Checked
{{ location_id_to_name[game][location] }} {% if location in checked_locations %}✔{% endif %}
{%- for hint in hints -%} {%- endfor -%}
Finder Receiver Item Location Game Entrance Found
{% if hint.finding_player == player %} {{ player_names_with_alias[(team, hint.finding_player)] }} {% elif get_slot_info(team, hint.finding_player).type == 2 %} {{ player_names_with_alias[(team, hint.finding_player)] }} {% else %} {{ player_names_with_alias[(team, hint.finding_player)] }} {% endif %} {% if hint.receiving_player == player %} {{ player_names_with_alias[(team, hint.receiving_player)] }} {% elif get_slot_info(team, hint.receiving_player).type == 2 %} {{ player_names_with_alias[(team, hint.receiving_player)] }} {% else %} {{ player_names_with_alias[(team, hint.receiving_player)] }} {% endif %} {{ item_id_to_name[games[(team, hint.receiving_player)]][hint.item] }} {{ location_id_to_name[games[(team, hint.finding_player)]][hint.location] }} {{ games[(team, hint.finding_player)] }} {% if hint.entrance %}{{ hint.entrance }}{% else %}Vanilla{% endif %} {% if hint.found %}✔{% endif %}
{% endblock %}