Когда вы становитесь хиро, вам даются нублес поинтс. Вы можете изменить ихнее количество следующим образом: olympiad.java :
Code
protected void giveHeroBonus()
{
if (_heroesToBe.size() == 0)
return;
for (StatsSet hero : _heroesToBe)
{
int charId = hero.getInteger(CHAR_ID);
StatsSet noble = _nobles.get(charId);
int currentPoints = noble.getInteger(POINTS);
currentPoints += 300;
noble.set(POINTS, currentPoints);
_nobles.remove(charId);
_nobles.put(charId, noble);
}
}
По стандарту стоит 300:
Code
currentPoints += 300;