diff --git a/common/locales/en/character.json b/common/locales/en/character.json index 6603f60c70..16df03bf40 100644 --- a/common/locales/en/character.json +++ b/common/locales/en/character.json @@ -70,6 +70,7 @@ "allocatePerPop": "Add a point to Perception", "allocateInt": "Points allocated to Intelligence:", "allocateIntPop": "Add a point to Intelligence", + "noMoreAllocate": "Now that you've hit level 100, you won't gain any more Attribute Points. You can continue leveling up, or start a new adventure at level 1 by using the Orb of Rebirth, available for free in the Market.", "stats": "Stats", "strength": "Strength", "strengthText": "Strength increases the chance of random \"critical hits\" and the Gold, Experience, and drop chance boost from them. It also helps deal damage to boss monsters.", diff --git a/website/views/options/profile.jade b/website/views/options/profile.jade index d5c6cebda6..b251ec978a 100644 --- a/website/views/options/profile.jade +++ b/website/views/options/profile.jade @@ -172,9 +172,11 @@ mixin profileStats table.table.table-striped tr td - strong.inline - |{{user.stats.points}}  - strong.hint(popover-trigger='mouseenter', popover-placement='right', popover=env.t('levelPopover'))=env.t('unallocated') + p(ng-if='::user.stats.lvl >= 100')!=env.t('noMoreAllocate') + p(ng-if='user.stats.points || user.stats.lvl < 100') + strong.inline + |{{user.stats.points}}  + strong.hint(popover-trigger='mouseenter', popover-placement='right', popover=env.t('levelPopover'))=env.t('unallocated') td tr td(colspan=2)