Skip to content

Commit

Permalink
chore: implement elements for halloween event opening
Browse files Browse the repository at this point in the history
  • Loading branch information
bitpredator committed Oct 19, 2024
1 parent b1fedcc commit 2c79a94
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server-data/inventory.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ set inventory:dumpsterloot [
["fags", 1, 3],
["trash_can", 1, 3],
["trash_chips", 1, 3],
["plastic_bag", 1, 3]
["plastic_bag", 1, 3],
["halloween", 1, 3]

]

Expand Down
6 changes: 6 additions & 0 deletions server-data/resources/[ox]/ox_inventory/data/items.lua
Original file line number Diff line number Diff line change
Expand Up @@ -747,4 +747,10 @@ return {
weight = 250,
stack = false,
},

["halloween"] = {
label = "Halloween",
weight = 00,
stack = true,
},
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Config.fish = {
{ item = "trout", label = "Trout", difficulty = { "easy" } },
{ item = "anchovy", label = "Anchovy", difficulty = { "easy" } },
{ item = "plastic_bag", label = "Plastic Bag", difficulty = { "easy" } },
{ item = "halloween", label = "Halloween", difficulty = { "easy" } },
}

RegisterNetEvent("wasabi_fishing:notify")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Config.rocks = { -- Items obtained from mining
{ item = "steel", label = "Steel", difficulty = { "easy" } },
{ item = "gold", label = "Gold", difficulty = { "easy" } },
{ item = "gunpowder", label = "polvere da sparo", difficulty = { "easy" } },
{ item = "halloween", label = "Halloween", difficulty = { "easy" } },
}

Config.miningAreas = {
Expand Down

0 comments on commit 2c79a94

Please sign in to comment.