ngd-notepad
An easy to use notepad script with custom UI for FiveM!
Click to purchase ngd-notepadInstallation Steps
-
Install ngd-Bridge
Follow the guide to install ngd-Bridge HERE.
This script must be started after your core resources (framework, inventory, target, etc.). -
Install ngd-notepad
Placengd-notepadinto your resources folder. This script must be started afterngd-Bridge. -
Add Items to Your Inventory
Copy the items listed below into your inventory. -
Copy Images
Move the images from theimgfolder into your inventory's images folder. -
Configure the Script
Openconfig.luaand verify the settings will work with your server.
Items:
Items List (OX) (Click to Expand)
["ngd_blanknotepad"] = {
label = 'Blank Notepad',
description = 'A perfect thing to leave a note!',
weight = 0,
stack = true,
close = true,
},
["ngd_fullnotepad"] = {
label = 'Written Notepad',
description = 'A note has been written on here.',
weight = 0,
stack = false,
close = true,
},
Items List (QB Format #1) (Click to Expand)
ngd_blanknotepad = { name = 'ngd_blanknotepad', label = 'Blank Notepad', weight = 0, type = 'item', image = 'ngd_blanknotepad.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = 'A perfect thing to leave a note!' },
ngd_fullnotepad = { name = 'ngd_fullnotepad', label = 'Written Notepad', weight = 0, type = 'item', image = 'ngd_fullnotepad.png', unique = true, useable = true, shouldClose = false, combinable = nil, description = 'A note has been written on here.' },
Items List (QB Format #2) (Click to Expand)
['ngd_blanknotepad'] = { ['name'] = 'ngd_blanknotepad', ['label'] = 'Blank Notepad', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_blanknotepad.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A perfect thing to leave a note!' },
['ngd_fullnotepad'] = { ['name'] = 'ngd_fullnotepad', ['label'] = 'Written Notepad', ['weight'] = 0, ['type'] = 'item', ['image'] = 'ngd_fullnotepad.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A note has been written on here.' },
Configuration Notes
-
Logging Setup
This script comes pre-configured for logs.- If using Discord, set your webhook in
editableserver.lua.
- If using Discord, set your webhook in
-
Exports
There is an export available to show a note from other resources:exports['ngd-notepad']:ShowNote(header, header2, body)
Do you still need help? Open a ticket in our Discord
{.is-warning}