Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- General
- --]]
- CH_Printers.Config.Language = "en" -- Set the language of the script.
- CH_Printers.Config.DistanceTo3D2D = 50000 -- How far away is 3d2d rendered?
- CH_Printers.Config.NotificationTime = 10 -- How long will notifications last?
- CH_Printers.Config.Font = "Outfit" -- Font used for the UI
- CH_Printers.Config.FontLight = "Outfit Light" -- Font light used for the UI
- CH_Printers.Config.PaperRollCurrency = "USD" -- Supported are USD, EUR, GBP, JPY, RUB
- --[[
- Upgrades
- --]]
- CH_Printers.Config.AutoDeleteUpgrades = true -- Should printer upgrades automatically be deleted after x amount of seconds? To avoid leaving unused entities on the map
- CH_Printers.Config.AutoDeleteTimer = 600 -- Delete after 600 seconds (10 minutes) if they do not get installed on a printer
- CH_Printers.Config.InkAddedAmount = 50 -- How much ink is added to a printer with the ink upgrade?
- CH_Printers.Config.PaperAddedAmount = 50 -- How much paper is added to a printer with the paper upgrade?
- CH_Printers.Config.StorageAddedAmount = 5000 -- How much storage does the upgrade add to the printer?
- --[[
- Printer Damage
- --]]
- CH_Printers.Config.MoneyConfettiOnDamage = true -- Emit a "splash" dollar effect from the printer when taking damage
- CH_Printers.Config.DeductMoneyOnDamage = true -- Should we deduct money from the printer when taking damage?
- CH_Printers.Config.DeductMoneyDamageMultiplier = 1 -- If above is enabled it will deduct damage multiplied by this amount.
- CH_Printers.Config.PrinterExplosion = true -- Should the printer explode when destroyed?
- CH_Printers.Config.IgnoreNearbyOnExplode = true -- Should we ignite entities nearby when printer explodes?
- --[[
- 3D2D Screen
- --]]
- CH_Printers.Config.DrawScreenBackground = true -- If we should show a generic color background on the printer or use the "dirty" surface from model
- CH_Printers.Config.IconsColor = Color( 52, 152, 219, 255 ) -- The color of the icons on a printer screen
- CH_Printers.Config.DrawTitleOnUpgrades = false -- Should we draw the upgrade name above the model?
- CH_Printers.Config.UpgradesTitleColor = Color( 52, 152, 219, 255 ) -- The color of the upgrade titles if enabled
- CH_Printers.Config.DrawAlertIcons = true -- Should we draw alert icons for low paper & ink and when temperature is close to max?
- CH_Printers.Config.AlertIconLowTrigger = 25 -- What is the low amount that will trigger the alert icon on the screen? For paper & ink
- --[[
- 3rd Party
- --]]
- CH_Printers.Config.CreateFireOnExplode = false -- Create fire when printer is destroyed with https://www.gmodstore.com/market/view/firesystem
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement