mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
37 lines
665 B
Markdown
37 lines
665 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
||
[Home](./index.md) > [bitburner](./bitburner.md) > [Singularity](./bitburner.singularity.md) > [getStats](./bitburner.singularity.getstats.md)
|
||
|
||
## Singularity.getStats() method
|
||
|
||
> Warning: This API is now obsolete.
|
||
>
|
||
> use getPlayer
|
||
>
|
||
|
||
Returns an object with the Player’s stats.
|
||
|
||
<b>Signature:</b>
|
||
|
||
```typescript
|
||
getStats(): PlayerSkills;
|
||
```
|
||
<b>Returns:</b>
|
||
|
||
[PlayerSkills](./bitburner.playerskills.md)
|
||
|
||
Object with the Player’s stats.
|
||
|
||
## Remarks
|
||
|
||
RAM cost: 0.5 GB \* 16/4/1
|
||
|
||
## Example
|
||
|
||
|
||
```ts
|
||
res = getStats();
|
||
print('My charisma level is: ' + res.charisma);
|
||
```
|
||
|