💡Installation
Installation guide of Gold Panning Script
Step 1: Move resource
Step 2: Add Items
INSERT INTO items (name, label, weight, rare, can_remove) VALUES ('gold_nugget', 'Gold Nugget', 0, 0, 1);
INSERT INTO items (name, label, weight, rare, can_remove) VALUES ('gold_pan', 'Gold Pan', 1, 0, 1);
INSERT INTO items (name, label, weight, rare, can_remove) VALUES ('purify_table', 'Purify Table', 1, 0, 1);purify_table = { name = 'purify_table', label = 'Purify Table', weight = 0, type = 'item', image = 'purify_table.png', unique = false, useable = true, shouldClose = false, description = '' },
gold_nugget = { name = 'gold_nugget', label = 'Gold Nugget', weight = 0, type = 'item', image = 'gold_nugget.png', unique = false, useable = false, shouldClose = false, description = '' },
gold_pan = { name = 'gold_pan', label = 'Gold Pan', weight = 0, type = 'item', image = 'gold_pan.png', unique = false, useable = false, shouldClose = true, description = '' },['gold_nugget'] = {
label = 'Gold Nugget',
weight = 0,
},
['gold_pan'] = {
label = 'Gold Pan',
weight = 0,
},
['purify_table'] = {
label = 'Purify Table',
weight = 0,
},Step 3: Start Script
ensure [STG]Last updated