@@ -53,7 +53,7 @@ You can download the latest version of the script for free on the it-script GitH
5353| QbCore (qb-target) | https://github.com/qbcore-framework/qb-target * (Currently not supported!)* |
5454
5555<Callout type = " error" >
56- You can also you ox_target on your QbCore Server but only if you are using ox_target with version 1.16.0 or older!
56+ You can also use ox_target on your QbCore Server but only if you are using ox_target with version 1.16.0 or older!
5757</Callout >
5858
5959## Asset positioning
@@ -208,7 +208,7 @@ You can configure everything int the it-crafting config file.
208208 weight = 2000 ,
209209 type = ' item' ,
210210 image = " simple_crafting_table.png" ,
211- unique = false ,
211+ unique = true ,
212212 useable = false ,
213213 shouldClose = true ,
214214 combinable = nil ,
@@ -221,7 +221,7 @@ You can configure everything int the it-crafting config file.
221221 [" scrapmetal" ] = {
222222 label = " Scrap Metal" ,
223223 weight = 500 ,
224- stack = false ,
224+ stack = true ,
225225 close = false ,
226226 description = " Scrap Metal" ,
227227 client = {
@@ -232,7 +232,7 @@ You can configure everything int the it-crafting config file.
232232 [" lockpick" ] = {
233233 label = " Lockpick" ,
234234 weight = 100 ,
235- stack = false ,
235+ stack = true ,
236236 close = false ,
237237 description = " A tool for picking locks" ,
238238 client = {
@@ -243,7 +243,7 @@ You can configure everything int the it-crafting config file.
243243 [" cloth" ] = {
244244 label = " Cloth" ,
245245 weight = 200 ,
246- stack = false ,
246+ stack = true ,
247247 close = false ,
248248 description = " A piece of cloth" ,
249249 client = {
@@ -254,7 +254,7 @@ You can configure everything int the it-crafting config file.
254254 [" scissors" ] = {
255255 label = " Scissors" ,
256256 weight = 250 ,
257- stack = false ,
257+ stack = true ,
258258 close = false ,
259259 description = " A tool for cutting" ,
260260 client = {
@@ -265,7 +265,7 @@ You can configure everything int the it-crafting config file.
265265 [" bandage" ] = {
266266 label = " Bandage" ,
267267 weight = 50 ,
268- stack = false ,
268+ stack = true ,
269269 close = false ,
270270 description = " A bandage for wounds" ,
271271 client = {
@@ -288,6 +288,75 @@ You can configure everything int the it-crafting config file.
288288 }
289289 ```
290290 </Tabs.Tab >
291+ <Tabs.Tab >
292+ ``` lua copy
293+ [" scrapmetal" ] = {
294+ name = " scrapmetal" ,
295+ label = " Scrap Metal" ,
296+ type = " item" ,
297+ weight = 500 ,
298+ unique = false ,
299+ shouldClose = false ,
300+ description = " Scrap Metal" ,
301+ image = " scrapmetal.png" ,
302+ },
303+
304+ [" lockpick" ] = {
305+ name = " lockpick" ,
306+ label = " Lockpick" ,
307+ type = " item" ,
308+ weight = 100 ,
309+ unique = false ,
310+ shouldClose = false ,
311+ description = " A tool for picking locks" ,
312+ image = " lockpick.png" ,
313+ },
314+
315+ [" cloth" ] = {
316+ name = " cloth" ,
317+ label = " Cloth" ,
318+ type = " item" ,
319+ weight = 200 ,
320+ unique = false ,
321+ shouldClose = false ,
322+ description = " A piece of cloth" ,
323+ image = " cloth.png" ,
324+ },
325+
326+ [" scissors" ] = {
327+ name = " scissors" ,
328+ label = " Scissors" ,
329+ type = " item" ,
330+ weight = 250 ,
331+ unique = false ,
332+ shouldClose = false ,
333+ description = " A tool for cutting" ,
334+ image = " scissors.png" ,
335+ },
336+
337+ [" bandage" ] = {
338+ name = " bandage" ,
339+ label = " Bandage" ,
340+ type = " item" ,
341+ weight = 50 ,
342+ unique = false ,
343+ shouldClose = false ,
344+ description = " A bandage for wounds" ,
345+ image = " bandage.png" ,
346+ },
347+
348+ [" simple_crafting_table" ] = {
349+ name = " simple_crafting_table" ,
350+ label = " Simple Crafting Table" ,
351+ type = " item" ,
352+ weight = 2000 ,
353+ unique = true ,
354+ shouldClose = true ,
355+ description = " A simple crafting table" ,
356+ image = " simple_crafting_table.png" ,
357+ }
358+ ```
359+ </Tabs.Tab >
291360 <Tabs.Tab >
292361 ``` lua copy
293362 scrapmetal = { name = ' scrapmetal' , label = ' Scrap Metal' , weight = 500 , type = ' item' , image = ' scrapmetal.png' , unique = false , useable = false , shouldClose = false , combinable = nil , description = ' Scrap Metal' },
0 commit comments