ngd-notepad

An easy to use notepad script with custom UI for FiveM!

Click to purchase ngd-notepad
ngd-notepad

Installation Steps

  1. Install ngd-Bridge
    Follow the guide to install ngd-Bridge HERE.
    This script must be started after your core resources (framework, inventory, target, etc.).

  2. Install ngd-notepad
    Place ngd-notepad into your resources 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.

  5. Configure the Script
    Open config.lua and 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.
  • 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}