Home
last modified time | relevance | path

Searched refs:_skill_points_periodic_growth (Results 1 – 3 of 3) sorted by last modified time

/dports/games/allacrost/allacrost-1.0.2/src/common/global/
H A Dglobal_actors.cpp838 for (uint32 i = 0; i < _skill_points_periodic_growth.size(); i++) in _CheckForGrowth()
839 _skill_points_growth += _skill_points_periodic_growth[i].second; in _CheckForGrowth()
840 _skill_points_periodic_growth.clear(); in _CheckForGrowth()
882 if (_skill_points_periodic_growth.empty() == false) { in _CheckForGrowth()
883 if (_character_owner->GetExperiencePoints() >= _skill_points_periodic_growth.front().first) { in _CheckForGrowth()
945 while (_skill_points_periodic_growth.begin() != _skill_points_periodic_growth.end()) { in _CheckForGrowth()
946 if (_character_owner->GetExperiencePoints() >= _skill_points_periodic_growth.begin()->first) { in _CheckForGrowth()
947 _skill_points_growth += _skill_points_periodic_growth.begin()->second; in _CheckForGrowth()
948 _skill_points_periodic_growth.pop_front(); in _CheckForGrowth()
1024_skill_points_periodic_growth.push_back(make_pair(_experience_for_next_level, _skill_points_growth… in _ConstructPeriodicGrowth()
H A Dglobal_actors.h690 std::deque<std::pair<uint32, uint32> > _skill_points_periodic_growth; variable
H A Dglobal.cpp915 for (uint32 i = 0; i < growth->_skill_points_periodic_growth.size(); i++) { in _SaveCharacter()
920 file.WriteLine("[" + NumberToString(growth->_skill_points_periodic_growth[i].first) + "] = " in _SaveCharacter()
921 + NumberToString(growth->_skill_points_periodic_growth[i].second), false); in _SaveCharacter()
1157 …growth->_skill_points_periodic_growth.push_back(make_pair(growth_keys[i], file.ReadUInt(growth_key… in _LoadCharacter()