mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-18 13:43:49 +01:00
getCharacterInformation now additionally returns stat experience
This commit is contained in:
parent
dc402bef68
commit
c2ceaa9bdd
@ -49,4 +49,10 @@ getCharacterInformation() Netscript Function
|
||||
workChaExpGain: Cha experience earned so far from work
|
||||
workRepGain: Reputation earned so far from work, if applicable
|
||||
workMoneyGain: Money earned so far from work, if applicable
|
||||
hackingExp: Total hacking experience
|
||||
strengthExp: Total strength experience
|
||||
defenseExp: Total defense experience
|
||||
dexterityExp: Total dexterity experience
|
||||
agilityExp: Total agility experience
|
||||
charismaExp: Total charisma experience
|
||||
}
|
||||
|
@ -236,6 +236,7 @@ export let CONSTANTS: IMap<any> = {
|
||||
regardless of if the player has bought augmentations or not.
|
||||
* getAugmentationStats is a new netscript function that returns the stats of
|
||||
an augmentation.
|
||||
* getCharacterInformation now additionally returns exp
|
||||
|
||||
Misc.
|
||||
* Fixed an issue where SF3 was listed as infinitly repeatable and SF12 as
|
||||
|
@ -2743,6 +2743,12 @@ function NetscriptFunctions(workerScript) {
|
||||
workChaExpGain: Player.workChaExpGained,
|
||||
workRepGain: Player.workRepGained,
|
||||
workMoneyGain: Player.workMoneyGained,
|
||||
hackingExp: Player.hacking_exp,
|
||||
strengthExp: Player.strength_exp,
|
||||
defenseExp: Player.defense_exp,
|
||||
dexterityExp: Player.dexterity_exp,
|
||||
agilityExp: Player.agility_exp,
|
||||
charismaExp: Player.charisma_exp,
|
||||
};
|
||||
},
|
||||
isBusy: function() {
|
||||
|
Loading…
Reference in New Issue
Block a user