Skip to content

Instantly share code, notes, and snippets.

EFT / SPT 4.1.3 — chiavi utili per quest e loot

Guida essenziale per la base SPT 4.1.x / EFT 0.16.9.5.40743. Le chiavi sono divise per mappa e, dentro ogni mappa, per utilizzo reale.

Come leggere la lista

Sezione Significato Cosa fare
🟨 Solo quest La chiave serve per una quest, ma il loot non giustifica tenerla dopo Prendila quando arrivi alla quest; poi vendila
🟧 Quest + buon loot Serve per una quest e apre una stanza che vale la pena continuare a visitare Tienila anche dopo la quest
This file has been truncated, but you can view the full file.
[
{
"id": "qinghe",
"name": "Qinghe",
"image": "https://files.boarhat.gg/assets/wherewindsmeet/map/qinghe_complete_v1.png",
"imageSize": {
"width": 4096,
"height": 4096
},
"legend": [
@Drethek
Drethek / egg-s-p-t-server-tools.json
Created July 7, 2024 13:15
SPT Server Tools Egg
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v2",
"update_url": null
},
"exported_at": "2024-07-07T13:14:13+00:00",
"name": "SPT Server Tools",
"author": "drethek.dev@gmail.com",
"description": null,
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v2",
"update_url": null
},
"exported_at": "2024-07-25T08:05:19+00:00",
"name": "Escape from Tarkov - SPT",
"author": "drethek.dev@gmail.com",
"description": null,
@Drethek
Drethek / rarity-limit.md
Last active December 21, 2023 15:12
[TCG Engine] Add deck card limit based on the rarity

1. Create a new integer "limit" in RarityData.cs

public class RarityData : ScriptableObject
{
    //...
    public int limit;       //Max number of cards in the deck of this rarity
    //...
}

2. Update CollectionPanel.cs to check the new rarity limit.

@Drethek
Drethek / rarity-limit.md
Created December 19, 2023 22:26
[TCG Engine] Add deck card limit based on the rarity

1. Create a new integer "limit" in RarityData.cs

public class RarityData : ScriptableObject
{
    //...
    public int limit;       //Max number of cards in the deck of this rarity
    //...
}

2. Update CollectionPanel.cs to check the new rarity limit.