From 3b0a67751dee438564c2f1f692eea86cd2c45a4a Mon Sep 17 00:00:00 2001 From: EVO Date: Sun, 8 Jun 2025 20:35:54 +0200 Subject: [PATCH] Add Kleidung und Props --- .../farming_creator/current_config.json | 2 +- resources/[qb]/qb-core/shared/items.lua | 129 +++++++++++++++++- .../unlimited-spectre/unlWeb/logs/dev.log | 105 ++++++++++++++ .../unlimited-spectre/unlWeb/logs/web.log | 1 + 4 files changed, 232 insertions(+), 5 deletions(-) diff --git a/resources/[creator]/farming_creator/current_config.json b/resources/[creator]/farming_creator/current_config.json index 17f96d1f2..669455c94 100644 --- a/resources/[creator]/farming_creator/current_config.json +++ b/resources/[creator]/farming_creator/current_config.json @@ -1 +1 @@ -{"shared":{"allowToSaveFormulas":true,"timeToBurnPlants":5,"locale":"de","allowAfkFoundrying":true},"server":{"canAlwaysCarryItem":false,"itemToBurnPlants":{"loseOnUse":false,"name":"lighter","isRequired":false,"minQuantity":1},"specificWebhooks":[],"acePermission":"farming_creator","areDiscordLogsActive":false,"mainDiscordWebhook":"","canReceiveMultipleTimesTheSameItem":true},"client":{"minimumDistanceBetweenPlants":2,"helpNotification":"none","menuPosition":"bottom-right","targetingScript":"none","selectiveTargeting":{"workbenches":true,"farms":true,"fields":true,"seeds":true,"foundries":true},"burnPlantsAnimations":[{"scenarioName":"PROP_HUMAN_BUM_BIN","type":"scenario","duration":5}],"allowAfkFarming":true}} \ No newline at end of file +{"server":{"acePermission":"farming_creator","specificWebhooks":[],"itemToBurnPlants":{"loseOnUse":false,"minQuantity":1,"name":"lighter","isRequired":false},"areDiscordLogsActive":false,"mainDiscordWebhook":"","canAlwaysCarryItem":false,"canReceiveMultipleTimesTheSameItem":true},"client":{"menuPosition":"bottom-right","targetingScript":"qb_target","burnPlantsAnimations":[{"duration":5,"type":"scenario","scenarioName":"PROP_HUMAN_BUM_BIN"}],"minimumDistanceBetweenPlants":2,"selectiveTargeting":{"fields":true,"foundries":true,"farms":true,"workbenches":true,"seeds":true},"helpNotification":"none","allowAfkFarming":true},"shared":{"timeToBurnPlants":5,"locale":"de","allowToSaveFormulas":true,"allowAfkFoundrying":true}} \ No newline at end of file diff --git a/resources/[qb]/qb-core/shared/items.lua b/resources/[qb]/qb-core/shared/items.lua index 31cd14c6d..8508245c9 100644 --- a/resources/[qb]/qb-core/shared/items.lua +++ b/resources/[qb]/qb-core/shared/items.lua @@ -2828,7 +2828,7 @@ QBShared.Items = { shouldClose = false, label = 'geröstete Kaffeebohnen', weight = 2000, - unique = false, + unique = true, image = 'rostedcoffee.png', type = 'item', name = 'rostedcoffee', @@ -4800,9 +4800,9 @@ QBShared.Items = { screwdriverset = { description = 'Sehr nützlich zum Schrauben... zu schrauben...', shouldClose = false, - label = 'Schraubendreher', + label = 'Schraubendreher Set', weight = 1000, - unique = false, + unique = true, image = 'screwdriverset.png', type = 'item', name = 'screwdriverset', @@ -8353,7 +8353,128 @@ QBShared.Items = { label = 'Eisbergsalat', unique = true, useable = false, - image = '', + image = 'salad.png', name = 'salad', }, + tomato = { + shouldClose = false, + type = 'item', + description = '', + weight = 20, + label = 'Tomate', + unique = true, + useable = false, + image = 'tomato.png', + name = 'tomato', + }, + gardenshovel = { + shouldClose = false, + type = 'item', + description = '', + weight = 200, + label = 'Gartenschaufel', + unique = true, + useable = false, + image = 'gardenshovel.png', + name = 'gardenshovel', + }, + potato = { + shouldClose = false, + type = 'item', + description = '', + weight = 100, + label = 'Kartoffel', + unique = true, + useable = false, + image = 'potato.png', + name = 'potato', + }, + potatobag = { + shouldClose = false, + type = 'item', + description = '', + weight = 1000, + label = 'Sack Kartoffeln', + unique = true, + useable = false, + image = 'potatobag.png', + name = 'potatobag', + }, + packung = { + shouldClose = false, + type = 'item', + description = '', + weight = 100, + label = 'leere Plastikschale', + unique = false, + useable = false, + image = 'packung.png', + name = 'packung', + }, + packtomatos = { + shouldClose = false, + type = 'item', + description = '', + weight = 600, + label = 'Packung Tomaten', + unique = true, + useable = false, + image = 'packtomatos.png', + name = 'packtomatos', + }, + apple = { + shouldClose = false, + type = 'item', + description = '', + weight = 10, + label = 'Apfel', + unique = true, + useable = false, + image = 'screenshot_848-removebg-preview.png', + name = 'apple', + }, + applejuice = { + shouldClose = false, + type = 'item', + description = '', + weight = 200, + label = 'Flasche Apfelsaft', + unique = true, + useable = false, + image = 'applejuice.png', + name = 'applejuice', + }, + boxapples = { + shouldClose = false, + type = 'item', + description = '', + weight = 1000, + label = 'Kiste Äpfel', + unique = true, + useable = false, + image = 'applebox.png', + name = 'boxapples', + }, + box = { + shouldClose = false, + type = 'item', + description = '', + weight = 600, + label = 'Kiste', + unique = true, + useable = false, + image = 'box.png', + name = 'box', + }, + boxapplejuice = { + shouldClose = false, + type = 'item', + description = '', + weight = 1000, + label = 'Kiste Apfelsaft', + unique = true, + useable = false, + image = 'boxapplejuice.png', + name = 'boxapplejuice', + }, } \ No newline at end of file diff --git a/resources/[tools]/unlimited-spectre/unlWeb/logs/dev.log b/resources/[tools]/unlimited-spectre/unlWeb/logs/dev.log index b82cd6bbd..852604b9c 100644 --- a/resources/[tools]/unlimited-spectre/unlWeb/logs/dev.log +++ b/resources/[tools]/unlimited-spectre/unlWeb/logs/dev.log @@ -5764,3 +5764,108 @@ [info][2025/06/08 18:46:28]: nordi successfully created item salad. [info][2025/06/08 18:46:28]: nordi requested all items. [info][2025/06/08 18:46:35]: nordi requested item gardensicorr. +[info][2025/06/08 19:00:24]: nordi requested all items. +[info][2025/06/08 19:00:52]: nordi requested item salad. +[info][2025/06/08 19:01:00]: nordi uplaoded item image salad.png. +[info][2025/06/08 19:01:01]: nordi requested save item salad. +[info][2025/06/08 19:01:01]: nordi successfully saved item salad. +[info][2025/06/08 19:02:32]: nordi requested all items. +[info][2025/06/08 19:02:36]: nordi requested item screwdriverset. +[info][2025/06/08 19:02:45]: nordi requested save item screwdriverset. +[info][2025/06/08 19:02:45]: nordi successfully saved item screwdriverset. +[info][2025/06/08 19:02:48]: nordi requested save item screwdriverset. +[info][2025/06/08 19:02:48]: nordi successfully saved item screwdriverset. +[info][2025/06/08 19:02:50]: nordi requested all items. +[info][2025/06/08 19:02:55]: nordi requested item rostedcoffee. +[info][2025/06/08 19:02:57]: nordi requested save item rostedcoffee. +[info][2025/06/08 19:02:57]: nordi successfully saved item rostedcoffee. +[info][2025/06/08 19:02:59]: nordi requested all items. +[info][2025/06/08 19:26:21]: nordi requested item list. +[info][2025/06/08 19:26:23]: nordi requested all items. +[info][2025/06/08 19:26:27]: nordi requested item list. +[info][2025/06/08 19:28:14]: nordi uplaoded item image tomato.png. +[info][2025/06/08 19:28:16]: nordi requested create item tomato. +[info][2025/06/08 19:28:16]: nordi successfully created item tomato. +[info][2025/06/08 19:28:17]: nordi requested all items. +[info][2025/06/08 19:41:49]: nordi requested item list. +[info][2025/06/08 19:43:28]: nordi uplaoded item image gardenshovel.png. +[info][2025/06/08 19:43:35]: nordi requested create item gardenshovel. +[info][2025/06/08 19:43:35]: nordi successfully created item gardenshovel. +[info][2025/06/08 19:43:36]: nordi requested all items. +[info][2025/06/08 19:44:36]: nordi requested item list. +[info][2025/06/08 19:46:42]: nordi uplaoded item image potato.png. +[info][2025/06/08 19:46:46]: nordi requested create item potato. +[info][2025/06/08 19:46:46]: nordi successfully created item potato. +[info][2025/06/08 19:46:47]: nordi requested all items. +[info][2025/06/08 19:47:02]: nordi requested item list. +[info][2025/06/08 19:48:47]: nordi uplaoded item image potatobag.png. +[info][2025/06/08 19:48:51]: nordi requested create item potatobag. +[info][2025/06/08 19:48:51]: nordi successfully created item potatobag. +[info][2025/06/08 19:48:52]: nordi requested all items. +[info][2025/06/08 19:55:47]: nordi requested item list. +[info][2025/06/08 19:56:35]: nordi uplaoded item image packung.png. +[info][2025/06/08 19:56:36]: nordi requested create item packung. +[info][2025/06/08 19:56:36]: nordi successfully created item packung. +[info][2025/06/08 19:56:37]: nordi requested all items. +[info][2025/06/08 19:56:39]: nordi requested item list. +[info][2025/06/08 19:58:08]: nordi uplaoded item image packtomatos.png. +[info][2025/06/08 19:58:11]: nordi requested create item packtomatos. +[info][2025/06/08 19:58:11]: nordi successfully created item packtomatos. +[info][2025/06/08 19:58:12]: nordi requested all items. +[info][2025/06/08 20:11:50]: campers requested all items. +[info][2025/06/08 20:16:14]: campers requested item weapon_sawnoffshotgun. +[info][2025/06/08 20:16:39]: campers requested all items. +[info][2025/06/08 20:17:06]: nordi requested item packtomatos. +[info][2025/06/08 20:17:23]: campers requested item weapon_machinepistol. +[info][2025/06/08 20:17:26]: campers requested all items. +[info][2025/06/08 20:17:33]: campers requested item weapon_dbshotgun. +[info][2025/06/08 20:17:37]: campers requested all items. +[info][2025/06/08 20:17:49]: campers requested item weapon_doubleaction. +[info][2025/06/08 20:17:54]: nordi requested all items. +[info][2025/06/08 20:17:54]: campers requested all items. +[info][2025/06/08 20:18:06]: campers requested item weapon_assaultrifle_mk2. +[info][2025/06/08 20:18:11]: campers requested all items. +[info][2025/06/08 20:18:31]: campers requested item weapon_specialcarbine. +[info][2025/06/08 20:18:33]: campers requested all items. +[info][2025/06/08 20:18:40]: campers requested item weapon_ceramicpistol. +[info][2025/06/08 20:18:54]: campers requested all items. +[info][2025/06/08 20:19:14]: nordi requested item list. +[info][2025/06/08 20:19:17]: campers requested item weapon_assaultrifle. +[info][2025/06/08 20:19:44]: campers requested all items. +[info][2025/06/08 20:20:09]: campers requested item weapon_microsmg. +[info][2025/06/08 20:20:12]: campers requested all items. +[info][2025/06/08 20:20:25]: campers requested item weapon_combatmg. +[info][2025/06/08 20:20:27]: campers requested all items. +[info][2025/06/08 20:20:39]: campers requested item weapon_pistol50. +[info][2025/06/08 20:21:04]: campers requested all items. +[info][2025/06/08 20:21:33]: campers requested item weapon_combatpistol. +[info][2025/06/08 20:23:45]: nordi uplaoded item image screenshot_848-removebg-preview.png. +[info][2025/06/08 20:23:50]: nordi requested create item apple. +[info][2025/06/08 20:23:50]: nordi successfully created item apple. +[info][2025/06/08 20:23:50]: nordi requested all items. +[info][2025/06/08 20:24:07]: nordi requested item apple. +[info][2025/06/08 20:24:13]: nordi requested all items. +[info][2025/06/08 20:24:15]: nordi requested item list. +[info][2025/06/08 20:24:56]: nordi uplaoded item image applejuice.png. +[info][2025/06/08 20:24:58]: nordi requested create item applejuice. +[info][2025/06/08 20:24:58]: nordi successfully created item applejuice. +[info][2025/06/08 20:24:59]: nordi requested all items. +[info][2025/06/08 20:25:06]: nordi requested item list. +[info][2025/06/08 20:26:44]: nordi uplaoded item image applebox.png. +[info][2025/06/08 20:26:47]: nordi requested create item boxapples. +[info][2025/06/08 20:26:47]: nordi successfully created item boxapples. +[info][2025/06/08 20:26:48]: nordi requested all items. +[info][2025/06/08 20:29:01]: nordi requested item list. +[info][2025/06/08 20:29:12]: nordi uplaoded item image box.png. +[info][2025/06/08 20:29:14]: nordi requested create item box. +[info][2025/06/08 20:29:14]: nordi successfully created item box. +[info][2025/06/08 20:29:14]: nordi requested all items. +[info][2025/06/08 20:29:30]: nordi requested item boxapples. +[info][2025/06/08 20:29:58]: nordi requested save item boxapples. +[info][2025/06/08 20:29:58]: nordi successfully saved item boxapples. +[info][2025/06/08 20:30:00]: nordi requested all items. +[info][2025/06/08 20:31:01]: nordi requested item list. +[info][2025/06/08 20:32:15]: nordi uplaoded item image boxapplejuice.png. +[info][2025/06/08 20:32:21]: nordi requested create item boxapplejuice. +[info][2025/06/08 20:32:21]: nordi successfully created item boxapplejuice. +[info][2025/06/08 20:32:21]: nordi requested all items. diff --git a/resources/[tools]/unlimited-spectre/unlWeb/logs/web.log b/resources/[tools]/unlimited-spectre/unlWeb/logs/web.log index 29543f68a..5bd729058 100644 --- a/resources/[tools]/unlimited-spectre/unlWeb/logs/web.log +++ b/resources/[tools]/unlimited-spectre/unlWeb/logs/web.log @@ -5310,3 +5310,4 @@ [info][2025/06/08 11:56:56]: mark requested player with citizenid NAJ08324. [info][2025/06/08 17:40:53]: Login attempt on Nordi from 95.33.63.221 [info][2025/06/08 18:12:39]: Login attempt on Nordi from 95.33.63.221 +[info][2025/06/08 20:01:58]: Login attempt on Campers from 178.200.177.65