Skip to content

Commit

Permalink
Add missing items
Browse files Browse the repository at this point in the history
  • Loading branch information
AllRoundJonU committed Jan 25, 2025
1 parent 4716dbb commit b93bc0f
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 8 deletions.
83 changes: 76 additions & 7 deletions pages/it-crafting/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ You can download the latest version of the script for free on the it-script GitH
| QbCore (qb-target) | https://github.com/qbcore-framework/qb-target *(Currently not supported!)*|

<Callout type="error">
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!
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!
</Callout>

## Asset positioning
Expand Down Expand Up @@ -208,7 +208,7 @@ You can configure everything int the it-crafting config file.
weight = 2000,
type = 'item',
image = "simple_crafting_table.png",
unique = false,
unique = true,
useable = false,
shouldClose = true,
combinable = nil,
Expand All @@ -221,7 +221,7 @@ You can configure everything int the it-crafting config file.
["scrapmetal"] = {
label = "Scrap Metal",
weight = 500,
stack = false,
stack = true,
close = false,
description = "Scrap Metal",
client = {
Expand All @@ -232,7 +232,7 @@ You can configure everything int the it-crafting config file.
["lockpick"] = {
label = "Lockpick",
weight = 100,
stack = false,
stack = true,
close = false,
description = "A tool for picking locks",
client = {
Expand All @@ -243,7 +243,7 @@ You can configure everything int the it-crafting config file.
["cloth"] = {
label = "Cloth",
weight = 200,
stack = false,
stack = true,
close = false,
description = "A piece of cloth",
client = {
Expand All @@ -254,7 +254,7 @@ You can configure everything int the it-crafting config file.
["scissors"] = {
label = "Scissors",
weight = 250,
stack = false,
stack = true,
close = false,
description = "A tool for cutting",
client = {
Expand All @@ -265,7 +265,7 @@ You can configure everything int the it-crafting config file.
["bandage"] = {
label = "Bandage",
weight = 50,
stack = false,
stack = true,
close = false,
description = "A bandage for wounds",
client = {
Expand All @@ -288,6 +288,75 @@ You can configure everything int the it-crafting config file.
}
```
</Tabs.Tab>
<Tabs.Tab>
```lua copy
["scrapmetal"] = {
name = "scrapmetal",
label = "Scrap Metal",
type = "item",
weight = 500,
unique = false,
shouldClose = false,
description = "Scrap Metal",
image = "scrapmetal.png",
},

["lockpick"] = {
name = "lockpick",
label = "Lockpick",
type = "item",
weight = 100,
unique = false,
shouldClose = false,
description = "A tool for picking locks",
image = "lockpick.png",
},

["cloth"] = {
name = "cloth",
label = "Cloth",
type = "item",
weight = 200,
unique = false,
shouldClose = false,
description = "A piece of cloth",
image = "cloth.png",
},

["scissors"] = {
name = "scissors",
label = "Scissors",
type = "item",
weight = 250,
unique = false,
shouldClose = false,
description = "A tool for cutting",
image = "scissors.png",
},

["bandage"] = {
name = "bandage",
label = "Bandage",
type = "item",
weight = 50,
unique = false,
shouldClose = false,
description = "A bandage for wounds",
image = "bandage.png",
},

["simple_crafting_table"] = {
name = "simple_crafting_table",
label = "Simple Crafting Table",
type = "item",
weight = 2000,
unique = true,
shouldClose = true,
description = "A simple crafting table",
image = "simple_crafting_table.png",
}
```
</Tabs.Tab>
<Tabs.Tab>
```lua copy
scrapmetal = { name = 'scrapmetal', label = 'Scrap Metal', weight = 500, type = 'item', image = 'scrapmetal.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = 'Scrap Metal' },
Expand Down
2 changes: 1 addition & 1 deletion pages/it-drugs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ You can download the latest version of the script for free on the it-script GitH
| QbCore (qb-target) | https://github.com/qbcore-framework/qb-target |

<Callout type="error">
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!
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!
</Callout>

## Asset positioning
Expand Down

0 comments on commit b93bc0f

Please sign in to comment.