Character Level: Difference between revisions

From The Walkscape Walkthrough
Content added Content deleted
mNo edit summary
(Added toolbelt and step bank leveling increases along with cleaned up wording.)
Line 1: Line 1:
Character Level impacts many parts of the game of WalkScape. It is leveled up with every step you take, regardless of the activity you are engaged in.
Character Level impacts many parts of the game of WalkScape. It is leveled up with every step you take, regardless of the activity you are engaged in.


The main returns from progressing your character level are in unlocking more slots on your [[toolbelt]] and increasing your [[step bank]] amount. At the start of the game, your character will have 3 slots for your toolbelt unlocked and a step bank of 6000 steps.
Initial plans have your character requiring just over 13 million steps to hit character level 99. At 10,000 steps a day, this would take just over three and a half years to reach the maximum level.


== Character Experience Function ==
The main returns from progressing your character level is in unlocking more slots on your [[toolbelt]] and increasing your step bank amount. At the start of the game, you have three slots for tools unlocked. As you progress, you can unlock three more slots by leveling up your character to levels 20, 50, and 80.

== Function ==
<pre>
<pre>
/// Calculates the experience needed to level up character level
/// Calculates the experience needed to level up character level
Line 22: Line 20:
</pre>
</pre>


== Toolbelt Increases ==
{| class="wikitable"
!Character
Level
!Toolbelt
Slots
|-
|1
|3
|-
|20
|4
|-
|50
|5
|-
|80
|6
|}

== Step Bank Increases ==
{| class="wikitable"
!Character
Level
!Step Bank
Maximum
|-
|1
|6000
|-
|10
|8000
|-
|20
|11000
|-
|30
|14000
|-
|40
|18000
|-
|50
|22000
|-
|70
|26000
|-
|80
|30000
|-
|99
|40000
|}
[[Category:Game]]
[[Category:Game]]

Revision as of 22:29, 15 February 2024

Character Level impacts many parts of the game of WalkScape. It is leveled up with every step you take, regardless of the activity you are engaged in.

The main returns from progressing your character level are in unlocking more slots on your toolbelt and increasing your step bank amount. At the start of the game, your character will have 3 slots for your toolbelt unlocked and a step bank of 6000 steps.

Character Experience Function

/// Calculates the experience needed to level up character level
double xpToLevelCharacter(int level) {
  double xp = 0;
  for (var i = 1; i < level + 1; i++) {
    xp += xpEquate(i.toDouble());
  }
  return (xp / 4).floor().toDouble() * 4.6;
}

/// XP equation algorithm
int xpEquate(double level) {
  return (level + 300 * pow(2, level / 7)).floor();
}

Toolbelt Increases

Character

Level

Toolbelt

Slots

1 3
20 4
50 5
80 6

Step Bank Increases

Character

Level

Step Bank

Maximum

1 6000
10 8000
20 11000
30 14000
40 18000
50 22000
70 26000
80 30000
99 40000