MCPcopy Create free account
hub / github.com/EasyRPG/Player / GetNextExpString

Method GetNextExpString

src/game_actor.cpp:648–653  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

646}
647
648std::string Game_Actor::GetNextExpString(bool status_scene) const {
649 if (GetNextExp() == -1) {
650 return (MaxExpValue() >= 1000000 || status_scene) ? "-------" : "------";
651 }
652 return std::to_string(GetNextExp());
653}
654
655int Game_Actor::GetBaseExp() const {
656 return GetBaseExp(GetLevel());

Callers 2

DrawActorExpMethod · 0.80
DrawMinMaxMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected