2021-03-31 06:45:21 +02:00
|
|
|
calculateExp() Netscript Function
|
|
|
|
=================================
|
|
|
|
|
|
|
|
.. js:function:: calculateExp(skillLevel[, mult])
|
|
|
|
|
|
|
|
:RAM cost: 0 GB
|
|
|
|
:param number skillLevel: ``skillLevel`` to convert to exp.
|
2021-04-10 00:12:31 +02:00
|
|
|
:param number mult: Assume a specific skill multipler (not exp multiplier).
|
2021-03-31 06:45:21 +02:00
|
|
|
:returns: number of exp required to reach given ``skillLevel`` with that multiplier.
|
|
|
|
|
2021-07-02 23:27:59 +02:00
|
|
|
If you are not in BitNode-5, then you must have Source-File 5-1 in order to
|
|
|
|
use this function.
|
2021-03-31 06:45:21 +02:00
|
|
|
|
2021-07-02 23:27:59 +02:00
|
|
|
This function calculates the amount of experience needed to reach the given
|
|
|
|
``skillLevel``.
|
2021-03-31 06:45:21 +02:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
.. code-block:: javascript
|
|
|
|
|
2021-07-02 23:27:59 +02:00
|
|
|
player = getPlayer();
|
|
|
|
nextHacking = player.hacking_skill+1;
|
2021-03-31 06:45:21 +02:00
|
|
|
nextExp = formulas.basic.calculateExp(nextHacking);
|
2021-07-02 23:27:59 +02:00
|
|
|
missingExp = nextExp - player.hacking_exp;
|
2021-03-31 06:45:21 +02:00
|
|
|
tprint("Missing " + missingExp + " to reach next hacking level");
|