Skip to content

Plomyk-dev/cw-notes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cw-notes 📓

A lil tiny script that has two items in it: A notepad and notes. The script is pretty simple, you use the notepad and you can type some notes. The text and title are saved in the item metadata, which means you don't need to save into the database etc.

The script has support for QB inventory and OX inventory, you can toggle this in the config.

See the script in action on Sundown RP 🌆

Preview

Video 📽

YOUTUBE VIDEO

Developed by Coffeelot and Wuggie

More scripts by us 👈
Support, updates and script previews 👈

Support, updates and script previews:

Join The discord!

All our scripts are and will remain free. If you want to support what we do, you can buy us a coffee here:

Buy Us a Coffee

Config 🔧

QB INV ❗📦

Items to add to qb-core>shared>items.lua

	["cwnotepad"] =          {["name"] = "cwnotepad",         ["label"] = "Note Pad",                  ["weight"] = 300, ["type"] = "item", ["image"] = "cwnotepad.png", ["unique"] = false, ["useable"] = true, ['shouldClose'] = false, ["combinable"] = nil, ["description"] = "Use this to write notes"},
    ["cwnote"] =          {["name"] = "cwnote",         ["label"] = "Note",                  ["weight"] = 35, ["type"] = "item", ["image"] = "cwnote.png", ["unique"] = false, ["useable"] = true, ['shouldClose'] = false, ["combinable"] = nil, ["description"] = "A note"},

OX INV ❗📦

This one has a degrade of about 2 weeks. So users will need to buy new ones

	["cwnotepad"] = {
		label = "Note Pad",
		weight = 300,
		stack = true,
		close = true,
		allowArmed = true,
		description = "Use this to write notes",
	},
	["cwnote"] = {
		label = "Note",
		weight = 350,
		stack = true,
		close = true,
		allowArmed = true,
		description = "A note",
	},

About

Notepad with metadata based note saving

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 43.4%
  • CSS 22.5%
  • JavaScript 19.1%
  • HTML 15.0%