> For the complete documentation index, see [llms.txt](https://dynamite-1.gitbook.io/dynamite/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dynamite-1.gitbook.io/dynamite/site-guides/forbidden-planet.md).

# Forbidden Planet

## Forbidden Planet Site Guide

**Card Supported.** Revolut + Wise

***

### Task File Configuration (tasks.csv)

#### Required Columns

* **mode** - `NORMAL` or `SEARCH`
* **product\_url** - Required for NORMAL mode. Full URL from forbiddenplanet.com
* **keywords** - Required for SEARCH mode only (e.g. +pokemon,+ascended or pokemon ascended)
* **quantity** - Number of items
* **profile\_name** - Must match a profile name in profiles.csv
* **payment\_type** - `card` (Forbidden Planet only supports card)
* **account** - Optional. Email from accounts.csv. Leave empty for guest checkout

***

### Modes

#### NORMAL Mode

Direct product URL checkout.

#### SEARCH Mode

Searches by keywords and adds the first matching product. Requires **keywords** column.

* Use `+keyword` for positive match (must be in title)
* Use `-keyword` to exclude products
* Example: `+pokemon,+ascended,-used` or `pokemon ascended`

***

### Account Setup (accounts.csv)

| Column    | Required | Description                       |
| --------- | -------- | --------------------------------- |
| email     | Yes      | Account email                     |
| password  | Yes      | Account password                  |
| sessionid | No       | Auto-filled by Account Login Mode |

***

### Profile Setup (profiles.csv)

profiles.csv is in the root folder. Required columns: profile\_name, first\_name, last\_name, address1, city, state, zipcode, country, phone, email, card\_number, exp\_month, exp\_year, cvv

***

### Example Task Entries

**NORMAL mode (mode can be empty, defaults to NORMAL):**

```
mode,product_url,keywords,quantity,profile_name,payment_type,account
,,https://forbiddenplanet.com/484527-universus-godzilla-reign-of-kaiju-hanging-booster-1-pcs/,1,myprofile,card,
```

**NORMAL mode - with specific account:**

```
mode,product_url,keywords,quantity,profile_name,payment_type,account
,,https://forbiddenplanet.com/123456-another-product/,2,myprofile,card,user@email.com
```

**SEARCH mode:**

```
mode,product_url,keywords,quantity,profile_name,payment_type,account
search,,"+pokemon,+ascended",1,myprofile,card,
```

**SEARCH mode - with exclusions:**

```
mode,product_url,keywords,quantity,profile_name,payment_type,account
search,,"+universus,+godzilla,-used",1,myprofile,card,
```

***

### Example accounts.csv

```
email,password,sessionid
user@email.com,password123,
other@email.com,pass456,
```

***

### Account Generation (accountgen.csv)

Use `@domain.com` for catchall (e.g. `@catchall.com`). Run **Account Generation** (option 5) then **Account Login** (option 3) to save cookies.

```
email
@catchall.com
user@example.com
```

***

### Monitor Mode

Create or load a monitor group with product URLs and profile/account assignments. Card only. Run Account Login first.

***
