Skip to content
Update fallout4Setup authored by Flenarn's avatar Flenarn
...@@ -40,6 +40,8 @@ The **`fallout4`** folder is what controls all **Fallout 4** available commands ...@@ -40,6 +40,8 @@ The **`fallout4`** folder is what controls all **Fallout 4** available commands
Let's go over each of them. Let's go over each of them.
**Note** that when dealing with **baseIDs**, only the last **six** characters are needed.
### fallout4items.json ### fallout4items.json
--- ---
**`fallout4items.json`** controls all the possibly items the player can be given through the **`#give`** command. **`fallout4items.json`** controls all the possibly items the player can be given through the **`#give`** command.
...@@ -67,7 +69,7 @@ Example: ...@@ -67,7 +69,7 @@ Example:
} }
``` ```
The first three values function the same, command name, cost & formID. The first three values function the same, command name, cost & baseID.
The forth value, **`DLCCoast.esm`** indicates that this file does not come from **`Fallout4.esm`**, the main game **`.esm`**. The forth value, **`DLCCoast.esm`** indicates that this file does not come from **`Fallout4.esm`**, the main game **`.esm`**.
...@@ -130,11 +132,22 @@ Example: ...@@ -130,11 +132,22 @@ Example:
"quantum_deathclaw": [100, "00d325", 1, false, "DLCNukaWorld.esm"], "quantum_deathclaw": [100, "00d325", 1, false, "DLCNukaWorld.esm"],
} }
``` ```
The first 5 values function the same, command name, cost, formID, amount & if the creature is allowed in interiors. The first 5 values function the same, command name, cost, baseID, amount & if the creature is allowed in interiors.
The sixth value, **`DLCNukaWorld.esm`** indicates that this file does not come from **`Fallout4.esm`**, the main game **`.esm`**. The sixth value, **`DLCNukaWorld.esm`** indicates that this file does not come from **`Fallout4.esm`**, the main game **`.esm`**.
This forth value supports both offical DLC, and user created plugins. This sixth value supports both offical DLC, and user created plugins.
### Official DLC (in order of release)
| File name | DLC |
| ------ | ------ |
| **DLCRobot.esm** | [Automatron](https://fallout.fandom.com/wiki/Automatron_(add-on)) |
| **DLCWorkshop01.esm** | [Wasteland Workshop](https://fallout.fandom.com/wiki/Wasteland_Workshop) |
| **DLCCoast.esm** | [Far Harbor](https://fallout.fandom.com/wiki/Far_Harbor_(add-on)) |
| **DLCWorkshop02.esm** | [Contraptions Workshop](https://fallout.fandom.com/wiki/Contraptions_Workshop) |
| **DLCWorkshop03.esm** | [Vault-Tec Workshop](https://fallout.fandom.com/wiki/Vault-Tec_Workshop) |
| **DLCNukaWorld.esm** | [Nuka World](https://fallout.fandom.com/wiki/Nuka-World_(add-on)) |
## Game Side ## Game Side
... ...
......