💡Installation
Installation guide of Fruit Job
Step 1: Move resource
Extract the zip you downloaded from keymaster and drop the stg-fruit folder in the resources folder.
Step 2: Add Items
ℹ️ it works with all inventories, I’ve just included a few examples.
🖼️ You can find the item images inside the images folder located in the [SETUP]/item-images folder.
INSERT INTO items (name, label) VALUES
('apple', 'Apple'),
('applejuice', 'Apple Juice'),
('basket', 'Basket');apple = { name = 'apple', label = 'Apple', weight = 160, type = 'item', image = 'apple.png', unique = false, useable = false, shouldClose = false, description = 'A fresh apple picked from the orchard' },
applejuice = { name = 'applejuice', label = 'Apple Juice', weight = 160, type = 'item', image = 'applejuice.png', unique = false, useable = false, shouldClose = false, description = 'Bottled apple juice—refreshing and sweet' },
basket = { name = 'basket', label = 'Basket', weight = 160, type = 'item', image = 'basket.png', unique = true, useable = false, shouldClose = false, description = 'A sturdy fruit basket for carrying your harvest' },['apple'] = {
label = 'Apple',
weight = 1,
stack = false
},
['applejuice'] = {
label = 'Apple Juice',
weight = 1,
stack = false,
},
['basket'] = {
label = 'Basket',
weight = 1000,
stack = false,
},Step 3: Start script
Start stg-fruit in server.cfg.
ensure stg-fruitLast updated