@model List @{ ViewBag.Title = "Sales Packages"; }

@ViewBag.Title

All purchasable benefits, such as class skills, are in a constant state of balance, ensuring our plugins are of the highest quality possible.
If a benefit you have purchased is modified, you may be entitled a refund. If you are unhappy with a change, message us for a refund.
Deleted benefits will be automatically refunded.

Click a package below and then enter your player name.

Thank you for supporting us!!


Credit Packages

    @foreach (var salesPackage in Model.Where(x => x.Rank.RankId == 1).OrderBy(x => x.Price)) { @Html.Partial("_WritePackage", salesPackage) }

Ranks - Monthly Subrcription

    @foreach (var salesPackage in Model.Where(x => x.Rank.RankId != 1 && !x.RankPerm).OrderBy(x => x.Rank.RankId)) { @Html.Partial("_WritePackage", salesPackage) }

Ranks - Permanent

    @foreach (var salesPackage in Model.Where(x => x.Rank.RankId != 1 && x.RankPerm).OrderBy(x => x.Rank.RankId)) { @Html.Partial("_WritePackage", salesPackage) }