# Jomidar Tablet V2

## OVERVIEW

{% embed url="<https://haaasib.tebex.io/>" %}
TEBEX LINK&#x20;
{% endembed %}

{% embed url="<https://discord.gg/9m2KTFskjx>" %}
DISCORD LINK FOR SUPPORT
{% endembed %}

## Installation

THIS IS NOT A FREE SCRIPT BUY IT FROM TEBEX THEN INSTALL IT

Downlad From Keymaster Then You Will Get These Files Drop The File In Your Server Files

<figure><img src="https://3582736172-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fp9w0KnyXBFzMSsFZxG6G%2Fuploads%2FGTHKMe9jBXY7czarbd3r%2Fimage.png?alt=media&#x26;token=810dfeca-7ed2-436b-8efd-97971779ce81" alt=""><figcaption><p>FILE FROM KM</p></figcaption></figure>

## Jobs Part

{% hint style="info" %}
IMPORTANT DOWNLOAD OX LIB , MUGSHOTBASE64 AND INTERACT&#x20;
{% endhint %}

{% embed url="<https://github.com/BaziForYou/MugShotBase64>" %}

{% embed url="<https://github.com/overextended/ox_lib/releases>" %}
IMPORTANT FOR THE SCRIPT
{% endembed %}

{% embed url="<https://github.com/darktrovx/interact>" %}

{% hint style="info" %}
qb-core/shared/jobs.lua
{% endhint %}

```
gruppesechs = {
	label = 'Gruppe 6',
	defaultDuty = false,
	offDutyPay = false,
	grades = {
		['0'] = { name = 'Collector', payment = 50 },
	},
},
```

## Items Part

{% hint style="info" %}
qb-core/shared/items.lua
{% endhint %}

```
g6cashbag = { name = 'g6cashbag', label = 'Gruppe6 Cash Bag', weight = 50000, type = 'item', image = 'gruppe6bag.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'Bag filled with money from banks' },

g6badge = { name = 'g6badge', label = 'Gruppe6 Badge', weight = 50000, type = 'item', image = 'g6badge.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'This is a Gruppe6 Badge' },

g6pallet = { name = 'g6pallet', label = 'Gruppe6 Badge', weight = 50000, type = 'item', image = 'g6pallet.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'Pallets filled with money from banks' },

j0tablet = { name = 'j0tablet', label = 'Tablet', weight = 1000, type = 'item', image = 'j0tablet.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Pallets filled with money from banks' },
```

{% hint style="info" %}
jomidar-tablet/png
{% endhint %}

Copy The Image From The Png Folder And Paste It In Your Inventory Png File

{% code fullWidth="false" %}

```html
for qb-inventory

qb-inventory/html/images

for ox_invenory

ox_inventory/web/images
```

{% endcode %}

## Xp Part

{% hint style="info" %}
Open qb-core/server/player.lua & Paste These Lines
{% endhint %}

```
PlayerData.metadata["gruppe6"] = PlayerData.metadata["gruppe6"] or {}
PlayerData.metadata["gruppe6"]["xp"] = PlayerData.metadata["gruppe6"]["xp"] or 0
PlayerData.metadata["towing"] = PlayerData.metadata["towing"] or {}
PlayerData.metadata["towing"]["xp"] = PlayerData.metadata["towing"]["xp"] or 0
```

## Config Part

{% hint style="info" %}
open jomidar-tablet/cfg.lua
{% endhint %}

```
---------------------------------------/////////CORE CONFIG\\\\\\\\\\\\\-----------------------------------

Config.Core = 'qb-core'

Config.VehicleKeys = 'vehiclekeys:client:SetOwner' -- qb vehicle keys

Config.Inventory = 'qb' -- qb/ps/qs/ox

Config.QBInventory = 'old' -- old / new

```

{% hint style="info" %}
Inventory = qb = qb-inventory / ox = ox\_inventory / qs = qs-inventory / ps = ps-inventory
{% endhint %}

{% hint style="info" %}
if you are using new version of qb-core inventory the latest one then Config.QBInventory = new&#x20;
{% endhint %}

## Question

How to add more contacts

```lua
Config.Contract = {
    [1] = { 
        id = 1,
        pedimg = "https://docs.fivem.net/peds/mp_s_m_armoured_01.webp", 
        pedname = "Daniel Armstrong", 
        pedtag = "Gruppe6", 
        rep = "0 REP",
        waypointcoords = vector3(-33.42, -672.49, 32.34) 
    },
    --- dont change gruppe 6 from either it will break your xp system
    [2] = { 
        id = 2,
        pedimg = "https://docs.fivem.net/peds/a_m_m_farmer_01.webp", 
        pedname = "Raj Jack", 
        pedtag = "Hunting", 
        rep = "0",
        waypointcoords = vector3(-341.42, 6066.42, 30.47) 
    },
    [3] = { 
        id = 3,
        pedimg = "https://docs.fivem.net/peds/a_f_m_prolhost_01.webp", 
        pedname = "Jack Armstrong", 
        pedtag = "Towing Contractor", 
        rep = "0",
        waypointcoords = vector3(-186.23, -1374.54, 31.26) 
    },
    ---- example one
    [4] = {  -- id number 
        id = 4, -- same
        pedimg = "https://docs.fivem.net/peds/a_f_m_prolhost_01.webp", -- take it from fivem ped models
        pedname = "Name", -- ped name 
        pedtag = "Job Name", -- job name
        rep = "0", -- dont touch
        waypointcoords = vector3(-186.23, -1374.54, 31.26) -- here will be job coords
    },
}
```
