mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-20 13:15:48 +01:00
47 lines
1.0 KiB
Markdown
47 lines
1.0 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [Singularity](./bitburner.singularity.md) > [getFactionInviteRequirements](./bitburner.singularity.getfactioninviterequirements.md)
|
|
|
|
## Singularity.getFactionInviteRequirements() method
|
|
|
|
List conditions for being invited to a faction.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
getFactionInviteRequirements(faction: string): string[];
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| faction | string | Name of the faction. |
|
|
|
|
**Returns:**
|
|
|
|
string\[\]
|
|
|
|
Array of strings describing conditions for receiving an invitation to the faction.
|
|
|
|
## Remarks
|
|
|
|
RAM cost: 3 GB \* 16/4/1
|
|
|
|
## Example
|
|
|
|
|
|
```js
|
|
ns.singularity.getFactionInviteRequirements("The Syndicate")
|
|
[
|
|
"Located in Aevum or Sector-12",
|
|
"Not working for the Central Intelligence Agency",
|
|
"Not working for the National Security Agency",
|
|
"-90 karma",
|
|
"Have $10.000m",
|
|
"Hacking level 200",
|
|
"All combat skills level 200"
|
|
]
|
|
```
|
|
|