DexLab Scripts
DexLab Scripts
  • πŸ§ͺAbout Us
  • πŸ’ŽDex Collectibles
    • User Guide
      • Features
    • Installation
    • Configuration
    • Common Errors
  • πŸ—ΊοΈDex Map Markers
    • User Guide
      • Features
    • Installation
    • Configuration
    • Common Errors
  • πŸͺšDex Inventory Craft
    • User Guide
      • Features
    • Installation
    • Configuration
    • Common Errors
  • πŸ’ŠDex Drugs
    • User Guide
      • Features
    • Installation
    • Configuration
    • Common Errors
Powered by GitBook
On this page
  1. Dex Collectibles

Configuration

PreviousInstallationNextCommon Errors

Last updated 4 days ago


If you need to find valid props to use in the config file,

Config Preview: v1.5

Config = {}

Config.InteractionText = "[E] - Grab" -- Interaction text locale

Config.CollectedMessage = "You grabed: " -- Notification text locale

Config.RespawnTimeMinutes = 0.5 -- Time in minutes for the respawn of all coordinates

Config.DiscordWebhookURL = "" -- Discord webhook

Config.CollectableSpots = {
    {
        coords = vector3(2515.42, 2295.79, 176.55),
        items = {
            {
            name = "moeda_antiga", -- name of the item in db
            prop = "p_coin01x", -- name of the prop that you wish to use | https://rdr2.mooshe.tv/#
            chance = 5 -- chance of item in 100
            },
            { name = "old_ring", prop = "s_inv_ring03x", chance = 35 },
            { name = "rel_bolso", prop = "s_inv_pocketwatch06x", chance = 50 }
        }
    },
}

πŸ’Ž
click here!