From 9aa9490e603099420b677aecc60a3fbc607640d8 Mon Sep 17 00:00:00 2001 From: Zerio Date: Fri, 23 Jun 2023 23:38:32 +0200 Subject: [PATCH 01/10] better grammar --- README.md | 39 ++++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 4c6290cc..28394fcd 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ # ps-inventory -Formally lj-inventory redesigned into ps-inventory by [OK1ez](https://github.com/OK1ez) for full redesign. We will add improvements and support normal monitor sizes. +Formally `lj-inventory`, is now redesigned into ps-inventory by [OK1ez](https://github.com/OK1ez) for full redesign. We will add improvements and support normal monitor sizes. # How to install ps-inventory (Latest QBCore Update) -* Download source files from github -* Make sure you have latest updated [qb-core](https://github.com/qbcore-framework/qb-core) -* Make sure you have latest updated [qb-smallresources](https://github.com/qbcore-framework/qb-smallresources) -* Make sure you have latest updated [qb-weapons](https://github.com/qbcore-framework/qb-weapons) +* Download source files from GitHub +* Make sure you have the latest updated [qb-core](https://github.com/qbcore-framework/qb-core) +* Make sure you have the latest updated [qb-smallresources](https://github.com/qbcore-framework/qb-smallresources) +* Make sure you have the latest updated [qb-weapons](https://github.com/qbcore-framework/qb-weapons) * Drag source files into your resources folder * Rename folder from `ps-inventory-main` to `ps-inventory` -* Replace all qb-inventory to ps-inventory. Example below using Visual Studio Code in replacing all instances. +* Replace all qb-inventory with ps-inventory. The example below uses Visual Studio Code to replace all instances. ![image](https://user-images.githubusercontent.com/82112471/225484545-b2c79869-e7b4-4f37-81da-829e4430f73f.png) # Previews @@ -32,32 +32,37 @@ Join my Discord for updates, support, and special early testing!
https://discord.gg/projectsloth -So, I know the NoPixel 3.5 inventory update is a very controversial topic for most people. I wasn't a huge fan of it myself at first, but I liked the overall idea and concept behind it. So, here's my own take and spin on the design. This is was made off the awesome inventory [ihyajb](https://github.com/ihyajb) made +So, the NoPixel 3.5 inventory update is a very controversial topic for most people. I wasn't a huge fan of it myself at first, but I liked the overall idea and concept behind it. So, here's my own take and spin on the design. This is was made off the awesome inventory [ihyajb](https://github.com/ihyajb) made
Runs at ~ 0.00 to 0.01 ms if you have more optimization suggestions feel free to reach out -# Important, If you want the decay to work follow this steps, this is not needed if you dont want to use decay -you need to add a decay and created value in your qb-core/shared/items for all items, the decay is set to be the days the item lasts +# Important, if you want the decay to work follow you have to follow these steps, unless you don't want stuff to decay +You need to add a decay value for all items in your `qb-core/shared/items.lua` file, the variable stands for the number of days it takes to decay.
+## Examples: + +### Example of what you have to add + ```lua --- created = this will get filled in with the time when it's created, just leave this --- decay = amount of days that an item will decay --- delete = choice whether to remove the item when it's decayed or not +-- created = This gets filled automatically, don't touch it +-- decay = The number of days it takes for an item to decay +-- delete = If set to true, the item will be removed once it decays ["created"] = nil, ["decay"] = 28.0, ["delete"] = true ``` +
-Example: -
+ +### Example with the full item in QB-Core's shared file ```lua ['sandwich'] = {['name'] = 'sandwich', ['label'] = 'Sandwich', ['weight'] = 200, ['type'] = 'item', ['image'] = 'sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice bread for your stomach', ["created"] = nil, ["decay"] = 3.0, ["delete"] = true}, ``` -In this example our sandwich will decay in 3 days and removed when used. +In this example, the sandwich item would take 3 days to decay and once it does, it would be removed.
-In collaboration with [OnlyCats](https://github.com/onlycats) who helped reorganized and also created some custom images. +In collaboration with [OnlyCats](https://github.com/onlycats) who helped reorganize and also created some custom images. # Dependencies * [qbcore framework](https://github.com/qbcore-framework) * [qb-target](https://github.com/BerkieBb/qb-target) @@ -90,4 +95,4 @@ In collaboration with [OnlyCats](https://github.com/onlycats) who helped reorgan * i-kulgu for [updated decay](https://github.com/i-kulgu/qb-inventory-decay) # Issues and Suggestions -Please use the GitHub issues system to report issues or make suggestions, when making suggestion, please keep [Suggestion] in the title to make it clear that it is a suggestion. +Please use the GitHub issues system to report issues or make suggestions, when making suggestions, please keep [Suggestion] in the title to make it clear that it is a suggestion. From 7e76bdc67756db59492013ff21b1d4066cf8e529 Mon Sep 17 00:00:00 2001 From: Zerio Date: Fri, 23 Jun 2023 23:40:07 +0200 Subject: [PATCH 02/10] Remove `created` since its anyways not needed --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 28394fcd..0e33c376 100644 --- a/README.md +++ b/README.md @@ -46,10 +46,9 @@ You need to add a decay value for all items in your `qb-core/shared/items.lua` f ### Example of what you have to add ```lua --- created = This gets filled automatically, don't touch it -- decay = The number of days it takes for an item to decay -- delete = If set to true, the item will be removed once it decays -["created"] = nil, ["decay"] = 28.0, ["delete"] = true +["decay"] = 28.0, ["delete"] = true ```
@@ -57,7 +56,7 @@ You need to add a decay value for all items in your `qb-core/shared/items.lua` f ### Example with the full item in QB-Core's shared file ```lua -['sandwich'] = {['name'] = 'sandwich', ['label'] = 'Sandwich', ['weight'] = 200, ['type'] = 'item', ['image'] = 'sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice bread for your stomach', ["created"] = nil, ["decay"] = 3.0, ["delete"] = true}, +['sandwich'] = {['name'] = 'sandwich', ['label'] = 'Sandwich', ['weight'] = 200, ['type'] = 'item', ['image'] = 'sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice bread for your stomach', ["decay"] = 3.0, ["delete"] = true}, ``` In this example, the sandwich item would take 3 days to decay and once it does, it would be removed.
From 5bb41fe926addd37b522bca2eafcf098655cc849 Mon Sep 17 00:00:00 2001 From: Zerio Date: Fri, 23 Jun 2023 23:42:08 +0200 Subject: [PATCH 03/10] Update incorrect image --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e33c376..56f672a9 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,9 @@ Formally `lj-inventory`, is now redesigned into ps-inventory by [OK1ez](https:// * Make sure you have the latest updated [qb-weapons](https://github.com/qbcore-framework/qb-weapons) * Drag source files into your resources folder * Rename folder from `ps-inventory-main` to `ps-inventory` -* Replace all qb-inventory with ps-inventory. The example below uses Visual Studio Code to replace all instances. -![image](https://user-images.githubusercontent.com/82112471/225484545-b2c79869-e7b4-4f37-81da-829e4430f73f.png) +* Replace all qb-inventory with ps-inventory.
The example below uses Visual Studio Code to replace all instances. + +![image](https://github.com/Z3rio/ps-inventory/assets/54480523/00fa21a5-4be2-443f-aff2-4b3202b662dc) # Previews ### Simple guideline psd provided (found in main directory ps-inventory) From c418f57af142bf309e5a26c6b0f5025ddbb9cbf5 Mon Sep 17 00:00:00 2001 From: Zerio Date: Fri, 23 Jun 2023 23:46:54 +0200 Subject: [PATCH 04/10] Markdown formatting --- README.md | 48 +++++++++++++++++++++++++++++++++++------------- 1 file changed, 35 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 56f672a9..785388b6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,11 @@ -# ps-inventory -Formally `lj-inventory`, is now redesigned into ps-inventory by [OK1ez](https://github.com/OK1ez) for full redesign. We will add improvements and support normal monitor sizes. +# PS-Inventory + +LJ-Inventory has been fully redesigned by [OK1ez](https://github.com/OK1ez), under the name PS-Inventory. + +Future updates will be coming and we will of course support all normal monitor sizes. # How to install ps-inventory (Latest QBCore Update) + * Download source files from GitHub * Make sure you have the latest updated [qb-core](https://github.com/qbcore-framework/qb-core) * Make sure you have the latest updated [qb-smallresources](https://github.com/qbcore-framework/qb-smallresources) @@ -13,34 +17,48 @@ Formally `lj-inventory`, is now redesigned into ps-inventory by [OK1ez](https:// ![image](https://github.com/Z3rio/ps-inventory/assets/54480523/00fa21a5-4be2-443f-aff2-4b3202b662dc) # Previews -### Simple guideline psd provided (found in main directory ps-inventory) + +### Simple item guidelines (found in main directory ps-inventory) + ![ps-inventory Guideline](https://user-images.githubusercontent.com/91661118/146315681-c67f542d-e2bc-43ca-9957-7f1971b84268.png) + ### Full Inventory + ![image](https://github.com/Project-Sloth/ps-inventory/assets/82112471/fda2588d-e468-4fd5-8bf5-2f584f059609) + ### Options Menu + ![image](https://github.com/Project-Sloth/ps-inventory/assets/82112471/1782f97a-27e6-441b-90a1-ff150cd846e2) + ### Hotbar Slots + ![image](https://github.com/Project-Sloth/ps-inventory/assets/82112471/c0a77f4a-f482-42f5-a5da-1f3571d14130) + ### Inventory Glovebox + ![image](https://github.com/Project-Sloth/ps-inventory/assets/82112471/432f8c79-1a9f-44d1-8062-50b596194752) + ### Inventory Trunk -![image](https://github.com/Project-Sloth/ps-inventory/assets/82112471/f9c78e49-ec51-4d55-9ac0-b7058951d31a) +![image](https://github.com/Project-Sloth/ps-inventory/assets/82112471/f9c78e49-ec51-4d55-9ac0-b7058951d31a) ![LJ Inventory](https://user-images.githubusercontent.com/91661118/146313051-665337bf-ed92-4ed0-bbb9-6ee9613f670d.png) -Join my Discord for updates, support, and special early testing! -
-https://discord.gg/projectsloth +## Connect with us + +Join our [**Discord**](https://discord.gg/projectsloth) for updates, support, and special early testing! + +## Addressing the controversy So, the NoPixel 3.5 inventory update is a very controversial topic for most people. I wasn't a huge fan of it myself at first, but I liked the overall idea and concept behind it. So, here's my own take and spin on the design. This is was made off the awesome inventory [ihyajb](https://github.com/ihyajb) made -
+ +## Performance Runs at ~ 0.00 to 0.01 ms if you have more optimization suggestions feel free to reach out # Important, if you want the decay to work follow you have to follow these steps, unless you don't want stuff to decay + You need to add a decay value for all items in your `qb-core/shared/items.lua` file, the variable stands for the number of days it takes to decay. -
## Examples: @@ -52,18 +70,19 @@ You need to add a decay value for all items in your `qb-core/shared/items.lua` f ["decay"] = 28.0, ["delete"] = true ``` -
- ### Example with the full item in QB-Core's shared file ```lua ['sandwich'] = {['name'] = 'sandwich', ['label'] = 'Sandwich', ['weight'] = 200, ['type'] = 'item', ['image'] = 'sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice bread for your stomach', ["decay"] = 3.0, ["delete"] = true}, ``` In this example, the sandwich item would take 3 days to decay and once it does, it would be removed. -
+ +## Supporters In collaboration with [OnlyCats](https://github.com/onlycats) who helped reorganize and also created some custom images. + # Dependencies + * [qbcore framework](https://github.com/qbcore-framework) * [qb-target](https://github.com/BerkieBb/qb-target) * [qb-core](https://github.com/qbcore-framework/qb-core) @@ -74,6 +93,7 @@ In collaboration with [OnlyCats](https://github.com/onlycats) who helped reorgan * [qb-shops](https://github.com/qbcore-framework/qb-shops) # Key Features + * ALL IMAGES FOLLOW THE SAME DIMENSIONS * Easy Photoshop guideline template for creating custom images within ps-inventory * Custom brand logo above option buttons @@ -87,12 +107,14 @@ In collaboration with [OnlyCats](https://github.com/onlycats) who helped reorgan * Text overflow ellipsis used (so your product titles with never overlap the containers and instead do "...") * Blurred inventory background * Elements of NoPixel 3.5 design ideas interwoven -# + # Credits + * [OK1ez](https://github.com/OK1ez) for full redesign. * ihyajb (Aj) for [original version](https://github.com/ihyajb/aj-inventory) * Jay for [decay](https://github.com/tnj-development/inventory) * i-kulgu for [updated decay](https://github.com/i-kulgu/qb-inventory-decay) # Issues and Suggestions + Please use the GitHub issues system to report issues or make suggestions, when making suggestions, please keep [Suggestion] in the title to make it clear that it is a suggestion. From 30e7e6ac6a2244e75d881f1c785c5c343f59ba3b Mon Sep 17 00:00:00 2001 From: Zerio Date: Fri, 23 Jun 2023 23:47:35 +0200 Subject: [PATCH 05/10] Move key features & dependencies to the top --- README.md | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 785388b6..941201ed 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,22 @@ LJ-Inventory has been fully redesigned by [OK1ez](https://github.com/OK1ez), und Future updates will be coming and we will of course support all normal monitor sizes. +# Key Features + +* ALL IMAGES FOLLOW THE SAME DIMENSIONS +* Easy Photoshop guideline template for creating custom images within ps-inventory +* Custom brand logo above option buttons +* Options menu +* Help box +* Custom inventory images (more always being added in each new update) +* Default weight icon easily changeable with Font Awesome icons +* Hotkey numbers visible in inventory and hotbar slots +* Weight progress bar +* Tooltip has a determined height (so it won't ever go higher than visible or cut off) +* Text overflow ellipsis used (so your product titles with never overlap the containers and instead do "...") +* Blurred inventory background +* Elements of NoPixel 3.5 design ideas interwoven + # How to install ps-inventory (Latest QBCore Update) * Download source files from GitHub @@ -16,6 +32,17 @@ Future updates will be coming and we will of course support all normal monitor s ![image](https://github.com/Z3rio/ps-inventory/assets/54480523/00fa21a5-4be2-443f-aff2-4b3202b662dc) +# Dependencies + +* [qbcore framework](https://github.com/qbcore-framework) +* [qb-target](https://github.com/BerkieBb/qb-target) +* [qb-core](https://github.com/qbcore-framework/qb-core) +* [qb-logs](https://github.com/qbcore-framework/qb-logs) +* [qb-traphouse](https://github.com/qbcore-framework/qb-traphouse) +* [qb-radio](https://github.com/qbcore-framework/qb-radio) +* [qb-drugs](https://github.com/qbcore-framework/qb-drugs) +* [qb-shops](https://github.com/qbcore-framework/qb-shops) + # Previews ### Simple item guidelines (found in main directory ps-inventory) @@ -81,33 +108,6 @@ In this example, the sandwich item would take 3 days to decay and once it does, In collaboration with [OnlyCats](https://github.com/onlycats) who helped reorganize and also created some custom images. -# Dependencies - -* [qbcore framework](https://github.com/qbcore-framework) -* [qb-target](https://github.com/BerkieBb/qb-target) -* [qb-core](https://github.com/qbcore-framework/qb-core) -* [qb-logs](https://github.com/qbcore-framework/qb-logs) -* [qb-traphouse](https://github.com/qbcore-framework/qb-traphouse) -* [qb-radio](https://github.com/qbcore-framework/qb-radio) -* [qb-drugs](https://github.com/qbcore-framework/qb-drugs) -* [qb-shops](https://github.com/qbcore-framework/qb-shops) - -# Key Features - -* ALL IMAGES FOLLOW THE SAME DIMENSIONS -* Easy Photoshop guideline template for creating custom images within ps-inventory -* Custom brand logo above option buttons -* Options menu -* Help box -* Custom inventory images (more always being added in each new update) -* Default weight icon easily changeable with Font Awesome icons -* Hotkey numbers visible in inventory and hotbar slots -* Weight progress bar -* Tooltip has a determined height (so it won't ever go higher than visible or cut off) -* Text overflow ellipsis used (so your product titles with never overlap the containers and instead do "...") -* Blurred inventory background -* Elements of NoPixel 3.5 design ideas interwoven - # Credits * [OK1ez](https://github.com/OK1ez) for full redesign. From f5470bc520499a162f5e51b8f9195916d376f2ba Mon Sep 17 00:00:00 2001 From: Zerio Date: Fri, 23 Jun 2023 23:48:23 +0200 Subject: [PATCH 06/10] Move decay information to installation section --- README.md | 43 ++++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 941201ed..b864630a 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,28 @@ Future updates will be coming and we will of course support all normal monitor s * Rename folder from `ps-inventory-main` to `ps-inventory` * Replace all qb-inventory with ps-inventory.
The example below uses Visual Studio Code to replace all instances. +## Important, if you want the decay to work follow you have to follow these steps, unless you don't want stuff to decay + +You need to add a decay value for all items in your `qb-core/shared/items.lua` file, the variable stands for the number of days it takes to decay. + +### Examples: + +#### Example of what you have to add + +```lua +-- decay = The number of days it takes for an item to decay +-- delete = If set to true, the item will be removed once it decays +["decay"] = 28.0, ["delete"] = true +``` + +#### Example with the full item in QB-Core's shared file + +```lua +['sandwich'] = {['name'] = 'sandwich', ['label'] = 'Sandwich', ['weight'] = 200, ['type'] = 'item', ['image'] = 'sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice bread for your stomach', ["decay"] = 3.0, ["delete"] = true}, +``` + +In this example, the sandwich item would take 3 days to decay and once it does, it would be removed. + ![image](https://github.com/Z3rio/ps-inventory/assets/54480523/00fa21a5-4be2-443f-aff2-4b3202b662dc) # Dependencies @@ -83,27 +105,6 @@ So, the NoPixel 3.5 inventory update is a very controversial topic for most peop Runs at ~ 0.00 to 0.01 ms if you have more optimization suggestions feel free to reach out -# Important, if you want the decay to work follow you have to follow these steps, unless you don't want stuff to decay - -You need to add a decay value for all items in your `qb-core/shared/items.lua` file, the variable stands for the number of days it takes to decay. - -## Examples: - -### Example of what you have to add - -```lua --- decay = The number of days it takes for an item to decay --- delete = If set to true, the item will be removed once it decays -["decay"] = 28.0, ["delete"] = true -``` - -### Example with the full item in QB-Core's shared file - -```lua -['sandwich'] = {['name'] = 'sandwich', ['label'] = 'Sandwich', ['weight'] = 200, ['type'] = 'item', ['image'] = 'sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice bread for your stomach', ["decay"] = 3.0, ["delete"] = true}, -``` -In this example, the sandwich item would take 3 days to decay and once it does, it would be removed. - ## Supporters In collaboration with [OnlyCats](https://github.com/onlycats) who helped reorganize and also created some custom images. From dd3118081f045214e8e9b5a07ef4c14f29f23bf5 Mon Sep 17 00:00:00 2001 From: Zerio Date: Fri, 23 Jun 2023 23:49:06 +0200 Subject: [PATCH 07/10] Move back search image to right position --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b864630a..fc834fb6 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,8 @@ Future updates will be coming and we will of course support all normal monitor s * Rename folder from `ps-inventory-main` to `ps-inventory` * Replace all qb-inventory with ps-inventory.
The example below uses Visual Studio Code to replace all instances. +![image](https://github.com/Z3rio/ps-inventory/assets/54480523/00fa21a5-4be2-443f-aff2-4b3202b662dc) + ## Important, if you want the decay to work follow you have to follow these steps, unless you don't want stuff to decay You need to add a decay value for all items in your `qb-core/shared/items.lua` file, the variable stands for the number of days it takes to decay. @@ -52,8 +54,6 @@ You need to add a decay value for all items in your `qb-core/shared/items.lua` f In this example, the sandwich item would take 3 days to decay and once it does, it would be removed. -![image](https://github.com/Z3rio/ps-inventory/assets/54480523/00fa21a5-4be2-443f-aff2-4b3202b662dc) - # Dependencies * [qbcore framework](https://github.com/qbcore-framework) From f724aaa34ac0d4853de7ee037c72f6a5ae8be680 Mon Sep 17 00:00:00 2001 From: Zerio Date: Fri, 23 Jun 2023 23:53:59 +0200 Subject: [PATCH 08/10] Update installation instructions --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index fc834fb6..f9bd1586 100644 --- a/README.md +++ b/README.md @@ -22,17 +22,19 @@ Future updates will be coming and we will of course support all normal monitor s # How to install ps-inventory (Latest QBCore Update) -* Download source files from GitHub -* Make sure you have the latest updated [qb-core](https://github.com/qbcore-framework/qb-core) -* Make sure you have the latest updated [qb-smallresources](https://github.com/qbcore-framework/qb-smallresources) -* Make sure you have the latest updated [qb-weapons](https://github.com/qbcore-framework/qb-weapons) -* Drag source files into your resources folder -* Rename folder from `ps-inventory-main` to `ps-inventory` -* Replace all qb-inventory with ps-inventory.
The example below uses Visual Studio Code to replace all instances. +* Download `ps-inventory` from our GitHub +* Make sure you have the latest update of [qb-core](https://github.com/qbcore-framework/qb-core) +* Make sure you have the latest update of [qb-smallresources](https://github.com/qbcore-framework/qb-smallresources) +* Make sure you have the latest update of [qb-weapons](https://github.com/qbcore-framework/qb-weapons) +* Drag `ps-inventory` into your resources folder or any subfolder +* Make sure that the folder is named `ps-inventory` and **not** `ps-inventory-main` +* Replace all occurrences of `qb-inventory` with `ps-inventory`.
The example below uses Visual Studio Code to replace all instances. ![image](https://github.com/Z3rio/ps-inventory/assets/54480523/00fa21a5-4be2-443f-aff2-4b3202b662dc) -## Important, if you want the decay to work follow you have to follow these steps, unless you don't want stuff to decay +## Set up the decay system + +If you want the decay system to work, then please read the information below, otherwise it wont work. You need to add a decay value for all items in your `qb-core/shared/items.lua` file, the variable stands for the number of days it takes to decay. From adbcf74b07c623f791dd501db360125e801c5d34 Mon Sep 17 00:00:00 2001 From: Zerio Date: Fri, 23 Jun 2023 23:54:14 +0200 Subject: [PATCH 09/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f9bd1586..8d631372 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Future updates will be coming and we will of course support all normal monitor s ## Set up the decay system -If you want the decay system to work, then please read the information below, otherwise it wont work. +If you want the decay system to work, then please read the information below, otherwise it won't work. You need to add a decay value for all items in your `qb-core/shared/items.lua` file, the variable stands for the number of days it takes to decay. From 999a9b20be52c90d00bc668920809b5201966fe7 Mon Sep 17 00:00:00 2001 From: MonkeyWhisper <82112471+MonkeyWhisper@users.noreply.github.com> Date: Sat, 24 Jun 2023 01:52:38 -0400 Subject: [PATCH 10/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d631372..a62a293b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # PS-Inventory -LJ-Inventory has been fully redesigned by [OK1ez](https://github.com/OK1ez), under the name PS-Inventory. +lj-Inventory has been fully redesigned by [OK1ez](https://github.com/OK1ez), under the name ps-inventory. Future updates will be coming and we will of course support all normal monitor sizes.