{% extends "base.html.twig" %} {% block title %} {{ parent() }} - Home {% endblock %} {% set transactions = transactions().findAllLatest(8) %} {% set users = users|default([]) %} {% macro sidebar_content(player, transactions, users) %} {% if player and player.creditBalance > 0 %}
You have ${{ player.creditBalance|number_format(2) }} of account credit.
Browse Store
{% endif %}
Recent Buyers
{# {% if transactions|length > 0 %}
{{ users[0].username }}
{{ users[0].username }}
Latest Purchase
{% if transactions|length > 1 %}
Previous Buyers
{% for i in 0..(transactions|length-1) %} {% endfor %}
{% endif %} {% else %}

No purchases yet

{% endif %} #}
Disclaimer
Before purchasing, please read the Terms of Service. Not affiliated with Valve Corporation. Steam and the Steam logo are trademarks and/or registered trademarks of Valve Corporation in the U.S. and/or other countries. Please do not contact Steam Support for issues related to this service.
{% endmacro %} {% block content %}
{{ _self.sidebar_content(player, transactions, users) }}

Server Store

Aid the cause and unlock elite ranks, supply caches, force boosts, XP holocrons, legendary hilts, and other rare galactic treasures.

Browse the Outpost Bazaar
Ranks

Ascend through the galactic hierarchy and unlock unique powers and privileges.

Crate Keys

Open encrypted supply crates to reveal rare tech, gear, and artifacts.

Bundles

Strategic supply packs filled with boosters, gear, and galactic-grade value.

Ready to Join the Fight?

Your support strengthens the forces across the galaxy.

Begin Your Saga!
{% endblock %} {% block scripts %} {% endblock %}