Dragon Heart Studios
  • Dragon Heart Studios Documentation
  • 🌉DHS-Bridge
  • ⚙️Compatibility
  • 📜Scripts
    • 🎣DHS-Fishing
      • Installation
      • Configuration
      • Integration
    • 🕑DHS-ZWatch
      • Installation
      • Configuration
    • 💰DHS-PettyCrime
      • Installation
      • Configuration
      • Integration
    • 🪓DHS-LumberJack
      • Installation
      • Configuration
      • Integration
    • 🏵️DHS-Peyote
      • Installation
    • 🚗DHS-Boosting
      • Installation
      • Configuration
      • Integration
    • 🦌DHS-Hunting
      • Installation
      • Configuration
      • Integration
    • 👮DHS-PrisonSim
      • Installation
      • Configuration
        • Clothing Config
        • Convoy Config
        • Door Lock Config
        • Entity Sets Config
        • Items Config
        • Jobs Config
        • Locations Config
        • Mugshot Config
        • Object Placer Config
        • Pathfinding Config
        • Peds Config
        • Prison Schedules Config
        • Props Config
        • Solitary Config
      • Integration
      • Exports and Commands
  • 🐝DHS-BrewsAndWines
    • Installation
    • Configuration
      • Beehive Config
      • Clothing Config
      • Delivery Config
      • Mead Config
      • Object Placer Config
      • Peds Config
      • Security Config
      • Wine Config
    • Integration
    • Mead and Wine Brewing
Powered by GitBook
On this page
  • DEPENDENCIES
  • RESOURCE INSTALLATION GUIDE
  1. Scripts
  2. DHS-ZWatch

Installation

DEPENDENCIES

REQUIRED DEPENDENCIES

Type
Resource
Alternatives
Download

RadialMenu System

qb-radialmenu

  • ox_lib

Notify System

qb-core

  • ox_lib

(BUILT INTO QBCORE)

Bridge

DHS-Bridge

  • NA

(GIVEN IN KEYMASTER)

Type
Resource
Alternatives
Download

Radial Menu System

ox_lib

NA

Notify System

esx

  • ox_lib

(BUILT INTO ESX)

RESOURCE INSTALLATION GUIDE

1) RESOURCE DOWNLOAD

Download your resource from FiveM's Keymaster.

2) ADD THE ITEMS

```lua
    -- DHS-ZWatch Items
    -- Classic Watches
    red_classic_watch                = { name = 'red_classic_watch', label = 'Classic Red Watch', weight = 0, type = 'item', image = 'red_classic_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A classic watch colored red' },
    pink_classic_watch               = { name = 'pink_classic_watch', label = 'Classic Pink Watch', weight = 0, type = 'item', image = 'pink_classic_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A classic watch colored pink' },
    orange_classic_watch             = { name = 'orange_classic_watch', label = 'Classic Orange Watch', weight = 0, type = 'item', image = 'orange_classic_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A classic watch colored orange' },
    yellow_classic_watch             = { name = 'yellow_classic_watch', label = 'Classic Yellow Watch', weight = 0, type = 'item', image = 'yellow_classic_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A classic watch colored yellow' },
    green_classic_watch              = { name = 'green_classic_watch', label = 'Classic Green Watch', weight = 0, type = 'item', image = 'green_classic_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A classic watch colored green' },
    blue_classic_watch               = { name = 'blue_classic_watch', label = 'Classic Blue Watch', weight = 0, type = 'item', image = 'blue_classic_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A classic watch colored blue' },
    indigo_classic_watch             = { name = 'indigo_classic_watch', label = 'Classic Indigo Watch', weight = 0, type = 'item', image = 'indigo_classic_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A classic watch colored indigo' },
    violet_classic_watch             = { name = 'violet_classic_watch', label = 'Classic Violet Watch', weight = 0, type = 'item', image = 'violet_classic_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A classic watch colored violet' },
    white_classic_watch              = { name = 'white_classic_watch', label = 'Classic White Watch', weight = 0, type = 'item', image = 'white_classic_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A classic watch colored white' },
    black_classic_watch              = { name = 'black_classic_watch', label = 'Classic Black Watch', weight = 0, type = 'item', image = 'black_classic_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A classic watch colored black' },
    gray_classic_watch               = { name = 'gray_classic_watch', label = 'Classic Gray Watch', weight = 0, type = 'item', image = 'gray_classic_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A classic watch with colored gray' },
    -- Digital Watches
    red_digital_watch                = { name = 'red_digital_watch', label = 'Digital Red Watch', weight = 0, type = 'item', image = 'red_digital_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A digital watch colored red' },
    pink_digital_watch               = { name = 'pink_digital_watch', label = 'Digital Pink Watch', weight = 0, type = 'item', image = 'pink_digital_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A digital watch colored pink' },
    orange_digital_watch             = { name = 'orange_digital_watch', label = 'Digital Orange Watch', weight = 0, type = 'item', image = 'orange_digital_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A digital watch colored orange' },
    yellow_digital_watch             = { name = 'yellow_digital_watch', label = 'Digital Yellow Watch', weight = 0, type = 'item', image = 'yellow_digital_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A digital watch colored yellow' },
    green_digital_watch              = { name = 'green_digital_watch', label = 'Digital Green Watch', weight = 0, type = 'item', image = 'green_digital_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A digital watch colored green' },
    blue_digital_watch               = { name = 'blue_digital_watch', label = 'Digital Blue Watch', weight = 0, type = 'item', image = 'blue_digital_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A digital watch colored blue' },
    indigo_digital_watch             = { name = 'indigo_digital_watch', label = 'Digital Indigo Watch', weight = 0, type = 'item', image = 'indigo_digital_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A digital watch colored indigo' },
    violet_digital_watch             = { name = 'violet_digital_watch', label = 'Digital Violet Watch', weight = 0, type = 'item', image = 'violet_digital_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A digital watch colored violet' },
    white_digital_watch              = { name = 'white_digital_watch', label = 'Digital White Watch', weight = 0, type = 'item', image = 'white_digital_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A digital watch colored white' },
    black_digital_watch              = { name = 'black_digital_watch', label = 'Digital Black Watch', weight = 0, type = 'item', image = 'black_digital_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A digital watch colored black' },
    gray_digital_watch               = { name = 'gray_digital_watch', label = 'Digital Gray Watch', weight = 0, type = 'item', image = 'gray_digital_watch.png', unique = false, useable = false, shouldClose = true, combinable = nil, description = 'A digital watch colored gray' },
```

RUN THE SQL FILE IN THE SQL FOLDER

3) ADD THE IMAGES TO YOUR INVENTORY

  • Open DHS-ZWatch > images

  • Copy files from the folder and add them into your inventory image folder

4) INSTALL COMPLETE

The Install is now complete, you may move onto looking at the config.

PreviousDHS-ZWatchNextConfiguration

Last updated 1 year ago

📜
🕑
https://github.com/qbcore-framework/qb-radialmenu
https://github.com/overextended/ox_lib