@@ -53,7 +53,7 @@ You can download the latest version of the script for free on the it-script GitH
53
53
| QbCore (qb-target) | https://github.com/qbcore-framework/qb-target * (Currently not supported!)* |
54
54
55
55
<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!
57
57
</Callout >
58
58
59
59
## Asset positioning
@@ -208,7 +208,7 @@ You can configure everything int the it-crafting config file.
208
208
weight = 2000 ,
209
209
type = ' item' ,
210
210
image = " simple_crafting_table.png" ,
211
- unique = false ,
211
+ unique = true ,
212
212
useable = false ,
213
213
shouldClose = true ,
214
214
combinable = nil ,
@@ -221,7 +221,7 @@ You can configure everything int the it-crafting config file.
221
221
[" scrapmetal" ] = {
222
222
label = " Scrap Metal" ,
223
223
weight = 500 ,
224
- stack = false ,
224
+ stack = true ,
225
225
close = false ,
226
226
description = " Scrap Metal" ,
227
227
client = {
@@ -232,7 +232,7 @@ You can configure everything int the it-crafting config file.
232
232
[" lockpick" ] = {
233
233
label = " Lockpick" ,
234
234
weight = 100 ,
235
- stack = false ,
235
+ stack = true ,
236
236
close = false ,
237
237
description = " A tool for picking locks" ,
238
238
client = {
@@ -243,7 +243,7 @@ You can configure everything int the it-crafting config file.
243
243
[" cloth" ] = {
244
244
label = " Cloth" ,
245
245
weight = 200 ,
246
- stack = false ,
246
+ stack = true ,
247
247
close = false ,
248
248
description = " A piece of cloth" ,
249
249
client = {
@@ -254,7 +254,7 @@ You can configure everything int the it-crafting config file.
254
254
[" scissors" ] = {
255
255
label = " Scissors" ,
256
256
weight = 250 ,
257
- stack = false ,
257
+ stack = true ,
258
258
close = false ,
259
259
description = " A tool for cutting" ,
260
260
client = {
@@ -265,7 +265,7 @@ You can configure everything int the it-crafting config file.
265
265
[" bandage" ] = {
266
266
label = " Bandage" ,
267
267
weight = 50 ,
268
- stack = false ,
268
+ stack = true ,
269
269
close = false ,
270
270
description = " A bandage for wounds" ,
271
271
client = {
@@ -288,6 +288,75 @@ You can configure everything int the it-crafting config file.
288
288
}
289
289
```
290
290
</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 >
291
360
<Tabs.Tab >
292
361
``` lua copy
293
362
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