24 lines
694 B
Lua
24 lines
694 B
Lua
Config = {}
|
|
|
|
--// Debug Command
|
|
Config.DebugCommand = false -- false Disables /testforge # True Enables /testforge
|
|
|
|
--// Craft Timer
|
|
Config.CraftingTime = 10 -- Time in Second
|
|
|
|
--// Forge Location
|
|
Config.EnterCoords = vector3(-333.5, 6228.77, 31.67)
|
|
Config.LeaveCoords = vector3(1174.0, -3196.63, -39.01)
|
|
Config.MenuLocation = vector3(1169.52, -3196.85, -39.01)
|
|
|
|
--// Forge Price
|
|
Config.ForgeIDPrice = 7500 -- $5000
|
|
Config.ForgeDriversPrice = 7000 -- $5000
|
|
Config.ForgeWeaponsPrice = 25000 -- $5000
|
|
Config.ForgeLawyerpassPrice = 15000 -- $5000
|
|
|
|
--// Items
|
|
Config.IDItem = "id_card"
|
|
Config.DriversItem = "driver_license"
|
|
Config.WeaponsItem = "weaponlicense"
|
|
Config.LawyerpassItem = "lawyerpass" |