Configuration
TheftDev = TheftDev or {}
--------------------------------
--------------------------------
TheftDev.Extras = {
MarkerColor = {r= 50, g= 200, b= 160},
MarkerSize = {x= 0.3, y= 0.3, z= 0.3},
MarkerDist = 7.5,
MarkerID = 21,
}
TheftDev.WhitelistJob = {
"uwu",
"tequilla",
}
TheftDev.Bossmenu = vector3(-596.82, -1053.34, 22.34)
TheftDev.Basket = vector3(-587.32, -1059.73, 23.09)
TheftDev.UseQBInventoryShop = true -- If false you need to add your own custom export to TheftDev.CustomInventoryShop
TheftDev.CustomInventoryShop = function()
-- In here you can add your custom shop export/event etc.
end
TheftDev.UseQBInventoryStash = true -- If false you need to add your own custom export to TheftDev.CustomInventoryStash
TheftDev.CustomInventoryStash = function()
-- In here you can add your custom stash export/event etc.
end
TheftDev.Inventory = {
Location = vector3(-588.79, -1067.1, 22.34),
MaxWeight = 100000,
}
TheftDev.MenuLocations = {
vector3(-590.48, -1056.57, 22.36),
vector3(-588.57, -1059.73, 22.36),
}
TheftDev.CashierLocation = {
vector3(-583.4, -1061.79, 22.34),
vector3(-583.41, -1059.43, 22.34),
}
--------------------------------
--------------------------------
-- Food
TheftDev.Pasta = {
requiredItem = "pasta_pack",
foodItem = "pasta",
amount = math.random(2,2),
}
TheftDev.Pizza = {
requiredItem = "pizza_pack",
foodItem = "pizza",
amount = math.random(1,1),
}
TheftDev.UwuBubbleTeaCherry = {
requiredItem = "bubbletea_cherry_pack",
foodItem = "bubbletea_cherry",
amount = math.random(1,1),
}
TheftDev.UwuBubbleTeaBerry = {
requiredItem = "bubbletea_berry_pack",
foodItem = "bubbletea_berry",
amount = math.random(1,1),
}
TheftDev.UwuBubbleTeaBanana = {
requiredItem = "bubbletea_banana_pack",
foodItem = "bubbletea_banana",
amount = math.random(1,1),
}
TheftDev.UwuBubbleTeaMilk = {
requiredItem = "bubbletea_milk_pack",
foodItem = "bubbletea_milk",
amount = math.random(1,1),
}
TheftDev.UwuBubbleTeaChoco = {
requiredItem = "bubbletea_choco_pack",
foodItem = "bubbletea_choco",
amount = math.random(1,1),
}
TheftDev.UwuInventory = {
label = "Uwu Depo",
slots = 20,
items = {
[1] = {
name = "pasta_pack",
price = 50,
amount = 50,
info = { quality = 100, },
type = "item",
slot = 1,
},
[2] = {
name = "pizza_pack",
price = 50,
amount = 50,
info = { quality = 100, },
type = "item",
slot = 2,
},
[3] = {
name = "bubbletea_cherry_pack",
price = 30,
amount = 100,
info = { quality = 100, },
type = "item",
slot = 3,
},
[4] = {
name = "bubbletea_banana_pack",
price = 30,
amount = 100,
info = { quality = 100, },
type = "item",
slot = 4,
},
[5] = {
name = "bubbletea_berry_pack",
price = 30,
amount = 100,
info = { quality = 100, },
type = "item",
slot = 5,
},
[6] = {
name = "bubbletea_milk_pack",
price = 30,
amount = 100,
info = { quality = 100, },
type = "item",
slot = 6,
},
[7] = {
name = "bubbletea_choco_pack",
price = 30,
amount = 100,
info = { quality = 100, },
type = "item",
slot = 7,
},
}
}
-- Language
TheftDev.Lang = {
-- EN
["uwu_openMenu"] = "~g~[E]~w~ Menu",
["uwu_inventory"] = "~g~[E]~w~ Uwu Depot",
["uwu_payment"] = "~g~[E]~w~ Payment",
["uwu_basket"] = "~g~[G]~w~ Uwu Basket",
["uwu_bossmenu"] = "~g~[E]~w~ Bossmenu",
["menuAmount"] = "Amount",
["no_item"] = "No item",
["wrong_amount"] = "Insufficient items",
["pastaMenu_header"] = "You need a package to make pasta",
["pasta_name"] = "Prepare Pasta Italiano",
["pasta_header"] = "Pasta",
["pasta_proceed"] = "You are preparing pasta",
["pizzaMenu_header"] = "You need a package to make pizza",
["pizza_name"] = "Prepare Pizza Italiano",
["pizza_header"] = "Pizza",
["pizza_proceed"] = "You are preparing pizza",
["bubbleteaCherryMenu_header"] = "You need a package to make Bubble Tea Cherry",
["bubbleteaCherry_name"] = "Prepare Bubble Tea Cherry",
["bubbleteaCherry_header"] = "Bubble Tea Cherry",
["bubbleteaCherry_proceed"] = "You are preparing Bubble Tea Cherry",
["bubbleteaBerryMenu_header"] = "You need a package to make Bubble Tea Berry",
["bubbleteaBerry_name"] = "Prepare Bubble Tea Berry",
["bubbleteaBerry_header"] = "Bubble Tea Berry",
["bubbleteaBerry_proceed"] = "You are preparing Bubble Tea Berry",
["bubbleteaBananaMenu_header"] = "You need a package to make Bubble Tea Banana",
["bubbleteaBanana_name"] = "Prepare Bubble Tea Banana",
["bubbleteaBanana_header"] = "Bubble Tea Banana",
["bubbleteaBanana_proceed"] = "You are preparing Bubble Tea Banana",
["bubbleteaMilkMenu_header"] = "You need a package to make Bubble Tea Milk",
["bubbleteaMilk_name"] = "Prepare Bubble Tea Milk",
["bubbleteaMilk_header"] = "Bubble Tea Milk",
["bubbleteaMilk_proceed"] = "You are preparing Bubble Tea Milk",
["bubbleteaChocoMenu_header"] = "You need a package to make Bubble Tea Choco",
["bubbleteaChoco_name"] = "Prepare Bubble Tea Choco",
["bubbleteaChoco_header"] = "Bubble Tea Choco",
["bubbleteaChoco_proceed"] = "You are preparing Bubble Tea Choco",
}
Last updated