2022-10-21 17:16:00 +02:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [CodingContract](./bitburner.codingcontract.md) > [attempt](./bitburner.codingcontract.attempt.md)
|
|
|
|
|
|
|
|
## CodingContract.attempt() method
|
|
|
|
|
2022-11-28 15:15:09 +01:00
|
|
|
Attempts a coding contract, returning a reward string on success or empty string on failure.
|
2022-10-21 17:16:00 +02:00
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Signature:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
```typescript
|
2022-11-28 15:15:09 +01:00
|
|
|
attempt(answer: string | number | any[], filename: string, host?: string): string;
|
2022-10-21 17:16:00 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
2022-11-28 15:15:09 +01:00
|
|
|
| answer | string \| number \| any\[\] | Attempted solution for the contract. |
|
2022-10-21 17:16:00 +02:00
|
|
|
| filename | string | Filename of the contract. |
|
2023-02-11 19:18:50 +01:00
|
|
|
| host | string | _(Optional)_ Hostname of the server containing the contract. Optional. Defaults to current server if not provided. |
|
2022-10-21 17:16:00 +02:00
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Returns:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
2022-11-28 15:15:09 +01:00
|
|
|
string
|
2022-10-21 17:16:00 +02:00
|
|
|
|
2022-11-28 15:15:09 +01:00
|
|
|
A reward description string on success, or an empty string on failure.
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
RAM cost: 10 GB
|
|
|
|
|
|
|
|
Attempts to solve the Coding Contract with the provided solution.
|
|
|
|
|
2023-04-28 20:19:30 +02:00
|
|
|
## Example
|
2022-11-28 15:15:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
```js
|
2024-05-23 10:42:47 +02:00
|
|
|
const reward = ns.codingcontract.attempt(yourSolution, filename, hostname);
|
2022-11-28 15:15:09 +01:00
|
|
|
if (reward) {
|
2024-05-27 23:42:31 +02:00
|
|
|
ns.tprint(`Contract solved successfully! Reward: ${reward}`);
|
|
|
|
} else {
|
|
|
|
ns.tprint("Failed to solve contract.");
|
|
|
|
}
|
2022-11-28 15:15:09 +01:00
|
|
|
```
|
|
|
|
|