The Forge is currently under heavy construction. Expect nothing to work. Data is reset every hour.

Mod Details

Virtual's Custom Quest Loader

Virtual's Custom Quest Loader 2.0.3

Created by Virtual

179.5K Downloads

Unknown SPT Version

A mod dependency to assist mod authors with importing quests, images, zones and language files into the game with additional functionality and a GUI tool.

This mod alone does NOT have any content. This is a tool that imports quests, images, language files and zones into the game with some additional functionality. Mod authors can use this as a dependency to easily add more Custom Quests into the game. Simply link to this page in your own install instructions.

VCQL allows Quest Creators to add multiple quest files, custom images for quests, quest zones and houses support for every available language in SPT-AKI with the included placeholder feature for not yet translated quests. The purpose of this loader is to allow aspiring modders to create a mod, without having to deal with the code associated with loading quests, locales, images or more advanced functionality like side specific quests or zone creation / loading. Although creating quests is a big task, I hope that this loader will give some confidence to those who purely want to add more content to the game, and don't know where to start. This mod is not limited to newer players however, a lot of the mod authors that use VCQL are quite experienced in programming and the SPT server structure, but simply enjoy the easy to use structure of the mod.

Features -

Current Release -

  • Quest Importing
  • Locale Importing
  • Quest Image Importing
  • Side Specific Quests Support
  • Trader Image Importing
  • Trader Assort Importing
  • Trader Quest Assort Importing
  • Date Range Quests (thank you to Shibdib for the PR)
  • Custom Quest Zones + Places Support (thank you to CJ and Groovey for the code)
  • Tool For Zone Creation

> Download and extract Virtual's Custom Quest Loader into your mods folder. Inside is a 'user' and 'BepInEx' folder which will automatically be placed in the correct location.

> Follow the install instructions for the Custom Quest / Mod requiring VCQL as a dependency.

Virtuals Custom Quests - Outdated

Goblin King - Removed From Site

A.E.S. (ULTIMATE QUESTING TRADERS)

Artem

Jeovani

Vasyl The Mercenary

Guiding Light

Lotus

Scorpion

Priscilu

The Machine

Legs

Sasha Himik

The Double Agent

Coyote

Head Hunter

Viper

Please send me a DM to add any mods I may miss.

General Overview

For a working quest, you will need a file for quests and a file for locales. Each quest has various conditions to start, such as level, loyalty level, previous quest etc. Conditions to finish such as kill, find, place etc. And rewards for completing the conditions. Learning how quests function and getting efficient at creating quests is a very steep curve. This has, and can be achieved by aspiring modders with no experience in modifying games, or creating mods. This loader is designed to remove all code aspects of importing quests and associated files into the game, and leaves the task of creating quests to be solely within JSON files. I advise all new and interested people to look at my VCQ mod, and how it is setup, to better understand quests and how this loader works.

For assistance with creating quests reference this tool: Resources: Quest Values Reference Tool

To make this process easier, there is a quest creation GUI tool developed by CathieNova:** Haven VCQL Helper

Quests

  • Quest files can have any name but must follow the format in AKI_DATA/server/database/templates/quests.json as the mod imports them INTO the server stored copy of this file. You can generally use this file to help learn how to include various types of quests or tasks into your pack, and it is a good reference tool. There is no limit to how many quests can be in a single JSON file.

  • Side specific quests are supported. The "sideExclusive" value of a quest can either be "Pmc" (for both sides), "Bear" or "Usec".

Locales

  • Locales are the language files with the text for every single item, event, bot, object in SPT. Each quest, and all of it's conditions require locales that will be displayed to the user. Locales are objects, where the key is the quest or condition ID, and the value is the string of text to be displayed to the user (e.g. "VCQ_1": "Welcome To Tarkov". All files in the locales folder will be imported to AKI_DATA/server/database/locales/global/#LANGUAGE#.
  • VCQL supports all languages currently available in SPT, and ensures that quests without translated locales will be consistent in other languages, by adding whatever locales have been given to every other language. For instance, most quests will only have 'en' or English locales, these will be added to every other language in SPT, so the default key is not shown, and more users can enjoy your quests.

Images

  • All images need to be 314 x 177 and MUST be either a .png or .jpg.
  • To use custom images, place the image into the 'res/quests' directory and reference the name of the image in your quest file, in the same format that the default quests do, just with the name of your image.
  • All Tarkov quest images are in AKI_DATA/server/images/quests for reference but please use the provided loader directory and do not direct images straight into this location.

Assorts

  • Base game assorts are in AKI_DATA/server/database/traders/#traderID#/assort and questassort.json
  • Assorts are trades that are offered by a trader, which can either be a purchase with cash or a barter.
  • Base Values
    • In any assort file for VCQL, a "traderID", "items", "barter_scheme" and "loyal_level_items" property are required. 'traderID' specifies the trader that will be used for every assort in that file. 'items' lists all the barters and how many are available. 'barter_scheme' lists the items required for a trader. 'loyal_level'items' uses the id values from a barter item as the key and specifies the loyalty level required.
    • All assort items have a 'parentId' and a 'slotId', which for any single item will have the value 'hideout'. In the case of nested items, like a weapon preset, these values then change to reference eachother in a tree-like structure. (Weapon builds can be saved in the profile and copied to assorts (with a few changes) to save time, instead of manually building each preset)
  • VCQL Specific Values
    • Barter items can have a 'unlockedOn' and 'questID' property to specify that they will be unlocked upon the satisfaction of that quest condition. (Assorts without these values will just be treated as normal barters, so you can use this system to add assorts to traders)
    • 'questID' is simply the ID of the quest and 'unlockedOn' is the condition type that unlocks the assort, which can be either 'started', 'success' or 'fail'

Side Specific and Date Ranges

  • Side specific quests are supported. This acts as a whitelist for which side can access the quest. To enable this, add a property to a quest called "sideExclusive" with either "Bear" or "Usec" as the value.
  • To enable a date range, 4 properties are required within the base of a quest. 'startMonth', 'endMonth', 'startDay', 'endDay'. By configuring these properties, a quest will only be available to the user during the specified date.

Zones

  • Zones and Places are used to specify locations on the map used (in our case) for quest conditions. Conditions such as eliminating bots in a zone, finding a zone, placing an item / marker and launching a flare all require the location to be specified.
  • Zone files are output by the GUI tool and can be placed in the 'zones' directory. By referencing the 'ZoneId', they can be loaded in and used by quests.

Zone Creation GUI

Included with VCQL is a GUI tool within the BepInEx menu which can be used to create and modify custom zones. With regards to quests, zones are used to specify a region or place for quest conditions like 'kill bots in x area', 'place item at x area', 'launch flare at x area' etc. The tool allows modders to create and visualize the zones before they are output to a file, ready to be loaded back in and used for custom quests.

See the Repository for images and a detailed rundown of the tool.

What do I need to create a quest?

The bare minimum is Notepad, or any basic text editor. However I do recommend VSCode because it allows you to see basic syntactical errors and prettify files. VSCode paired with Refringe's extension significantly helps to create quests since you can see the names of values.

How can I learn to create quests?

The easiest way is to start simple. Look at the existing quest files, and some modded quests to see how quests work, and start changing some values. Then when you get more confident, try to create your own. You do not need to create every single quest from scratch. If there is a base game quest that is similar to what you want, copy it and change the values. If you find that you are spending alot of time and still receiving errors, come ask in the discord for help. You also have tools like this Reference Sheet to help you.

How do I upload my quest / mod requiring VCQL?

All you need to do, is include a path to "user/mods/Virtual's Custom Quest Loader" with the same folder structure you used to develop your quests. When a user downloads VCQL, and then your mod, they will be able to place it straight into the loader, and the files will go to where they need to be. Please see VCQ as an example on this structure. Do not include the mod directly in your download.

Version 2.0.3

4.7K Downloads

Unknown SPT Version Virus Total Results
Created Nov 28th, 5:00 AM Updated 16 hours ago

SPT 3.10

Changes

  • Updated to 3.10

(Modders check out Haven Zone Creator for a better zone creation experience)

Version 2.0.2

82.4K Downloads

Unknown SPT Version Virus Total Results
Created Jul 7th, 2024 Updated 17 hours ago

SPT 3.9.x

Changes

  • Changed the way rotations are stored. They are now actually used when zones are created. Any zone with existing rotation values will need to be added back into the GUI editor and redone.
  • Updated to 3.9.x
Version 2.0.1

34.4K Downloads

Unknown SPT Version Virus Total Results
Created May 5th, 2024 Updated 15 hours ago

SPT-AKI 3.8.1, 3.8.2, 3.8.3

Additions

  • Added a new option to the GUI Zone creation tool - Any Zones added by the loader can now be loaded back into the creation tool. This should assist modders with altering, fixing or viewing their already existing zones.

(If you downloaded this and it had issues extracting, it's because it was compressed with 7zip and the windows extraction tool doesn't like it. I have fixed the download zip to counter this)

Version 2.0.0

24.6K Downloads

Unknown SPT Version Virus Total Results
Created Apr 1st, 2024 Updated 17 hours ago

SPT-AKI 3.8.0

Additions

  • The biggest one - VCQL now includes a client mod. This is for custom zones, with an included GUI tool for zone creation. Mod authors can now create / visualize custom zones for quests like 'place item', 'exploration', 'kill in area', 'launch flare' etc.
  • Added zone importing.
  • Added assort importing.
  • Added trader image importing.
  • Added quest date ranges (Thanks to shibdib for the pr).
  • Added Korean locale support.
  • Added a config option to allow all quests, even with a sideExclusive property, to be available to the user.

Changes

  • Changed the side exclusive property away from 'side' to 'sideExclusive' as it was causing issues with outdated versions.

Massive thanks to the SPT community for helping with this update and a special thanks to the following people in particular:

  • CJ - Supplying the client zone loading code, updated from Boop's API (Boop goated).
  • Boop - Original author of the Quest Zones API.
  • Groovey - Submitting a PR with the flare zone loading code.
  • Timber - Helping with materials / transparency / collision of unity objects for the tool.
  • And a special thanks to the mod authors who use VCQL and give me feedback!

For a more in-depth view of the update, view the repository where I have more documentation.

Version 1.4.3

14.7K Downloads

Unknown SPT Version Virus Total Results
Created Nov 22nd, 9:49 AM Updated 17 hours ago

Added support for side specific quests.

Quests can have the "side" value set to either "Pmc", "Bear" or "Usec".

EDIT: THIS FEATURE WILL CHANGE FOR 3.8.0, SEE MAIN PAGE.

SPT-AKI 3.7.x

Version 1.4.2

2.7K Downloads

Unknown SPT Version Virus Total Results
Created Oct 10th, 2023 Updated 15 hours ago

Updated package

SPT-AKI 3.7.x

Version 1.4.1

2.6K Downloads

Unknown SPT Version Virus Total Results
Created Aug 16th, 2023 Updated 16 hours ago

+ Small fix to change the way the locales are obtained from the server, as some locales weren't properly matched and some would have missing lines.

No need to update if you are using the English locales.

SPT-AKI 3.6.x

Version 1.4.0

522 Downloads

Unknown SPT Version Virus Total Results
Created Aug 9th, 2023 Updated 46 minutes ago

- Didn't like the spaghetti code, so I re-wrote it all.

- Mod no longer uses asynchronous methods - for mod creators that need to adjust quests from the server aswell.

- Placeholder feature now checks individual locales, not the files that contain them.

- Updated package to 3.6.x, will be compatible with 3.5.x however.

- In most cases, users will not need to update to this version

SPT-AKI 3.6.x

Version 1.3.0

1.1K Downloads

Unknown SPT Version Virus Total Results
Created Jun 6th, 2023 Updated Dec 24th, 7:50 AM

Added a feature to help when a locale folder does not have any files - locales from a predetermined placeholder locale (default is 'en') will be copied over instead.

This is to allow locales without quest translations to be accessible in their language.

(E.G. if a quest pack only has English locales then they will also be added to every other locale.)

Package version is set to 3.5.7 but works on SPT-AKI 3.5.x

Version 1.2.0

2.9K Downloads

Unknown SPT Version Virus Total Results
Created Feb 13th, 2023 Updated 6 hours ago

AKI 3.5.x

Version 1.1.0

4.4K Downloads

Unknown SPT Version Virus Total Results
Created Dec 21st, 2:56 AM Updated 21 minutes ago

Updated to SPT-AKI 3.4.0
Also works on 3.4.1

Version 1.0.0

669 Downloads

Unknown SPT Version Virus Total Results
Created Dec 11th, 10:32 AM Updated 17 hours ago

Compatible with SPT-AKI 3.3.0

Version 0.0.0

2.8K Downloads

Unknown SPT Version Virus Total Results
Created Apr 10th, 2023 Updated 20 hours ago

-Updated package.json to reflect new version.

-All quest packs remain compatible.

Version 0.0.0

1.0K Downloads

Unknown SPT Version Virus Total Results
Created Jul 17th, 2023 Updated Jul 17th, 2023

Updated Package to 3.5.8

Works on 3.5.x

Not quite yet...