1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-07-09 22:58:32 +02:00
parent 8b873bd003
commit ee57949074
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ CodeStudio.Settings = {
},
stockFeature = false, --Enable Disable Item Stock Feature
useInventoryImage = true, --Use Images from Inventroy Folder, If false it will fetch images from 'cs_shops/ui/image'
useInventoryImage = false, --Use Images from Inventroy Folder, If false it will fetch images from 'cs_shops/ui/image'
EnableMouseControl = false --Use UI with Mouse Constols
}

View file

@ -51,7 +51,7 @@ function fetchImage(item)
elseif GetResourceState('qs-inventory') == 'started' then
img = 'qs-inventory/html/images/'
else
img = 'qb-inventory/html/images/' -- Edit this if you want to put your own Inventory Image Directory
img = 'inventory_images/images' -- Edit this if you want to put your own Inventory Image Directory
end
if CodeStudio.Settings.useInventoryImage then

View file

@ -82,7 +82,7 @@ itemsData = {
end
},
--Money as Item
money_item = { name = 'money_item', label = 'Money', weight = 0, type = 'item', image = 'money.webp', unique = false, useable = false, shouldClose = false, description = 'Green Paper' },
cash = { name = 'cash', label = 'Bargeld', weight = 0, type = 'item', image = 'money.png', unique = false, useable = false, shouldClose = false, description = 'Green Paper' },
television = { name = 'television', label = 'Television', weight = 100, type = 'item', image = 'television.png', unique = false, useable = true, shouldClose = true, description = '' },
present = { name = 'present', label = 'Present', weight = 100, type = 'item', image = 'present.png', unique = false, useable = true, shouldClose = true, description = '' },