From 1d1f1d54254f199613c3bc0ec42323c5c65b4472 Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 13 Apr 2025 18:55:15 -0700 Subject: [PATCH] docs: create ngd-egghunt --- ngd-egghunt.md | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 ngd-egghunt.md diff --git a/ngd-egghunt.md b/ngd-egghunt.md new file mode 100644 index 0000000..e394c8b --- /dev/null +++ b/ngd-egghunt.md @@ -0,0 +1,87 @@ +--- +title: ngd-egghunt +description: +published: true +date: 2025-04-14T01:55:13.070Z +tags: +editor: markdown +dateCreated: 2025-04-14T01:55:13.070Z +--- + +
+ NGD Logo + +

NGD-EGGHUNT

+
+ + +## Installation Steps + +1. **Install ngd-Bridge** + Follow the guide to install ngd-Bridge [HERE](https://nemesisdocs.com/en/gettingstarted). + +2. **Install ngd-egghunt** + Place `ngd-egghunt` into your **[ngd]** folder. This script must be started **after** `ngd-Bridge`. + +3. **Add Items to Your Inventory** + Copy the items listed below into your inventory. + +4. **Copy Images** + Move the images from the `img` folder into your inventory's images folder. + +#### Items: +
+Items List (OX) (Click to Expand) + +```lua + ['ngd_egghuntegg'] = { + label = 'Easter Egg', + weight = 5, + }, + ['ngd_eggbasket'] = { + label = 'Egg Basket', + weight = 5, + }, + ['ngd_chocobunny'] = { + label = 'Chocolate Bunny', + weight = 5, + }, +``` + +
+
+Items List (QB Format #1) (Click to Expand) + +```lua +ngd_egghuntegg = { name = 'ngd_egghuntegg', label = 'Easter Egg', weight = 0, type = 'item', image = 'ngd_egghuntegg.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' }, +ngd_eggbasket = { name = 'ngd_eggbasket', label = 'Egg Basket', weight = 0, type = 'item', image = 'ngd_eggbasket.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' }, +ngd_chocobunny = { name = 'ngd_chocobunny', label = 'Chocolate Bunny', weight = 0, type = 'item', image = 'ngd_chocobunny.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '' }, + +``` + +
+
+Items List (QB Format #2) (Click to Expand) + +```lua + ['ngd_egghuntegg'] = { ['name'] = 'ngd_egghuntegg', ['label'] = 'Easter Egg', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_egghuntegg.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = '' }, +['ngd_eggbasket'] = { ['name'] = 'ngd_eggbasket', ['label'] = 'Egg Basket', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_eggbasket.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = '' }, +['ngd_chocobunny'] = { ['name'] = 'ngd_chocobunny', ['label'] = 'Chocolate Bunny', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_chocobunny.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = '' }, + + +``` +
+ +--- + +# Configuration Notes + +- **Extensive Configuration Options** + Open and configure all the `Config` files to match your server's settings. + +- **Customizable Menu Images** + The images used in the menus can be replaced. They are located in the `web/menuimages` folder. + +> Do you still need help? Open a ticket in our [Discord](https://discord.gg/AnXx2GVGcM) +{.is-warning} +