docs: create ngd-detector

This commit is contained in:
Administrator 2025-02-21 19:20:46 -08:00 committed by DeLuce
parent 9b09a6618e
commit 205326c1a2

98
ngd-detector.md Normal file
View File

@ -0,0 +1,98 @@
---
title: ngd-detector
description:
published: true
date: 2025-02-22T03:20:43.944Z
tags:
editor: markdown
dateCreated: 2025-02-22T03:20:43.944Z
---
<div align="center">
<img src="/11f39c35-0150-4b61-b168-a61c673b9cce.png" alt="NGD Logo">
<h1><a href="https://store.nemesisgd.com/package/6124798" target="_blank">NGD-DETECTOR</a></h1>
</div>
## Installation Steps
1. **Install ngd-Bridge**
Follow the guide to install ngd-Bridge [HERE](https://nemesisdocs.com/en/gettingstarted).
2. **Install ngd-detector**
Place `ngd-detector` into your **[ngd]** folder. This script must be started **after** `ngd-Bridge`.
6. Add the items into your framework/inventory.
<details>
<summary><strong>Items List (OX)</strong> (Click to Expand)</summary>
```lua
['ngd_suspiciousnote'] = {
label = 'Suspicious Note',
weight = 0,
stack = false,
close = true,
description = ''
},
['ngd_fakeidtoken'] = {
label = 'A Token Of Trust',
weight = 0,
stack = false,
close = true,
description = ''
},
['ngd_pbsecurity'] = {
label = 'Forged Pillbox Security Card',
weight = 0,
stack = false,
close = true,
description = ''
},
['ngd_pbfreezerring'] = {
label = 'Mafia Family Ring',
weight = 0,
stack = false,
close = true,
description = ''
},
```
</details>
<details>
<summary><strong>Items List (QB Format #1)</strong> (Click to Expand)</summary>
```lua
ngd_suspiciousnote = { name = 'ngd_suspiciousnote', label = 'Suspicious Note', weight = 0, type = 'item', image = 'ngd_suspiciousnote.png', unique = true, useable = true, shouldClose = false, combinable = nil, description = '' },
ngd_fakeidtoken = { name = 'ngd_fakeidtoken', label = 'A Token Of Trust', weight = 0, type = 'item', image = 'ngd_fakeidtoken.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_pbsecurity = { name = 'ngd_pbsecurity', label = 'Forged Pillbox Security Card', weight = 0, type = 'item', image = 'ngd_pbsecurity.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
ngd_pbfreezerring = { name = 'ngd_pbfreezerring', label = 'Mafia Family Ring', weight = 0, type = 'item', image = 'ngd_pbfreezerring.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = '' },
```
</details>
<details>
<summary><strong>Items List (QB Format #2)</strong> (Click to Expand)</summary>
```lua
['ngd_suspiciousnote'] = { ['name'] = 'ngd_suspiciousnote', ['label'] = 'Suspicious Note', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_suspiciousnote.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = '' },
['ngd_fakeidtoken'] = { ['name'] = 'ngd_fakeidtoken', ['label'] = 'A Token Of Trust', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_fakeidtoken.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = '' },
['ngd_pbsecurity'] = { ['name'] = 'ngd_pbsecurity', ['label'] = 'Forged Pillbox Security Card', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_pbsecurity.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = '' },
['ngd_pbfreezerring'] = { ['name'] = 'ngd_pbfreezerring', ['label'] = 'Mafia Family Ring', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_pbfreezerring.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = '' },
```
</details>
---
# Configuration Notes
- **Extensive Configuration Options**
Open and configure all the `Config` files to match your server's settings.
> Do you still need help? Open a ticket in our [Discord](https://discord.gg/AnXx2GVGcM)
{.is-warning}