Lusty94
Tebex StoreSupport DiscordGitHubCFX Profile
  • 👋 Lusty94 Scripts
  • 💵Store Discounts
  • 📥 Script Installation
  • 🤝Supported Scripts
  • 📜Paid Resouces
    • 🍻Bars
      • 🔧Changelogs
      • 💼 Jobs
      • 📦Stashes
      • 👁️Blips
      • 🧩Props
      • 👆Interaction Locations
      • 📸CCTV
      • 🍳Recipes
      • 📬Supplies
      • 🥦Ingredients
    • 🍁Weed Shops
      • 🔧Changelogs
      • 💼 Jobs
      • 📦Stashes
      • 👁️Blips
      • 🧩Props
      • 👆Interaction Locations
      • 🍃Picking
      • 📸CCTV
      • 🍳Recipes
      • 📬Supplies
      • 🥦Ingredients
      • 🚬Consumables
    • 💲Money Wash
    • 💰Pawn Shop
      • 🔧Changelogs
      • 🛒Pawnshop Locations
    • 📲Drug Sales
      • 🔧Changelogs
      • 📲Selling
      • 💻Default Configuration
    • 🚗Chop Shop
      • 🔧Changelogs
      • 📅SQL
      • 🗣️Commands
      • 📋Reputation
      • 💰Selling
      • 🚗Chop Shops
      • 💻Default Configuration
    • 🚘Vehicle Shop
      • 🔧Changelogs
      • 📅SQL
      • 🗣️Commands
      • 📥Database
      • 🚘Vehicle Shops
      • 💻Default Configuration
    • ⛏️Mining
      • 🔧Changelogs
      • 📅SQL
      • 📈XP System
      • 🎒Mining Quests
      • ⛏️Purchasing Tools
      • 👕Outfits
      • 🚛Mining Zones
      • 🥘Panning
      • 🔥Smelting
      • 🛠️Crafting
      • 💲Selling
      • 👷Coal Delivery
    • 🚗Rental
    • 🚙Towing
    • 🍲Restaurants
    • 💊Drugs
    • 🍁Weed
  • 📜Free Resources
    • 🛒Shops
      • 🔧Changelogs
      • 🛒Adding Shops
      • 🪛Configuration
    • 🖥️Boss Menu
      • 🔧Changelogs
      • 💻Adding Job Locations
    • ✅Green Zones
      • 🔧Changelogs
      • 📌Adding Zones
Powered by GitBook
On this page
  1. Paid Resouces
  2. Mining

Mining Quests

  • If enabled players can work towards various quests that give rewards

  • These quests are fully configurable and are based of the amount of rocks the player has mined

  • There is a command named miningquests that players can execute to view active quests they can claim or work towards detailing the rewards given and their current status


Config.Quests = {
    Enabled = false, -- set to true to enabled quests (make sure to import sql file if enabled)
    Quests = {
        [1] = {--the key is the quest number and must be in sequence
            rocksMined = 10, -- amount of rocks that must be mined
            label = 'Mine 10 ores', -- label for menu
            rewardType = 'cash', -- cash or item reward type
            cash = 100, -- if rewardType type is cash how much should the player get
            items = { }, -- if rewardType is items then define item rewards here and amounts given
        },
        [2] = {--the key is the quest number and must be in sequence
            rocksMined = 100, -- amount of rocks that must be mined
            label = 'Mine 100 ores', -- label for menu
            rewardType = 'item', -- cash or item reward type
            cash = 0, -- if rewardType type is cash how much should the player get
            items = { -- if rewardType is items then define item rewards here and amounts given
                {name = 'ironingot', amount = 25, },
                {name = 'goldingot', amount = 3, },
            },
        },
        [3] = {--the key is the quest number and must be in sequence
            rocksMined = 500, -- amount of rocks that must be mined
            label = 'Mine 500 ores', -- label for menu
            rewardType = 'both', -- cash or item or both reward type
            cash = 500, -- if rewardType type is cash how much should the player get
            items = { -- if rewardType is items then define item rewards here and amounts given
                {name = 'diamond', amount = 3, },
            },
        },
        --add more quests as required
    },
}

Last updated 23 hours ago

📜
⛏️
🎒
Page cover image