๐Ÿ“šItem

Item settings overview

Config.lua
Config.requireditem = true -- Enable item requirement before using the UI [ true \ false ]
Config.requireditemame = "computer"  -- Item name
Config.requiredhinttxt = "You need a computer to use this." -- Hint if missing the item

Config.requireditem If true enable item requirement before using the UI, esle if false disable the requirement. Config.requireditemname Required tem name. Can be any item.

triangle-exclamation
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('computer', 'Computer', 1, 0, 1);

Was this helpful?