2021-03-31 06:45:21 +02:00
|
|
|
calculateSkill() Netscript Function
|
|
|
|
===================================
|
|
|
|
|
|
|
|
.. js:function:: calculateSkill(exp[, mult])
|
|
|
|
|
|
|
|
:RAM cost: 0 GB
|
|
|
|
:param number exp: ``exp`` to convert to skillLevel.
|
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: skillLevel that ``exp`` would reach 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
|
|
|
|
|
|
|
This function calculates the skillLevel that the given amount of ``exp`` would reach.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
.. code-block:: javascript
|
|
|
|
|
|
|
|
skillLevel = formulas.basic.calculateSkill(1000);
|
|
|
|
tprint("1000 exp would reach level " + skillLevel);
|