How to add new quest
{
"id": "quest_unique_ID",
"title": "quest.language.key.name",
"money": 0,
"reward": [],
"map_spot_id": null
}money = reward money that will be added to player after quest completed
reward = list of items IDs that will be added to player
map_spot_id = cut-off feature, always set to null{
"id": "my_mod_quest",
"title": "my.mod.quest.name",
"money": 1500,
"reward": ["medkit","medkit","antirad","ammo_ak"],
"map_spot_id": null
}

Last updated