Advertisement
Crap-Head

Printers config

Oct 28th, 2024 (edited)
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.57 KB | None | 0 0
  1. --[[
  2.     General
  3. --]]
  4. CH_Printers.Config.Language = "en" -- Set the language of the script.
  5.  
  6. CH_Printers.Config.DistanceTo3D2D = 50000 -- How far away is 3d2d rendered?
  7. CH_Printers.Config.NotificationTime = 10 -- How long will notifications last?
  8.  
  9. CH_Printers.Config.Font = "Outfit" -- Font used for the UI
  10. CH_Printers.Config.FontLight = "Outfit Light" -- Font light used for the UI
  11.  
  12. CH_Printers.Config.PaperRollCurrency = "USD" -- Supported are USD, EUR, GBP, JPY, RUB
  13.  
  14. --[[
  15.     Upgrades
  16. --]]
  17. CH_Printers.Config.AutoDeleteUpgrades = true -- Should printer upgrades automatically be deleted after x amount of seconds? To avoid leaving unused entities on the map
  18. CH_Printers.Config.AutoDeleteTimer = 600 -- Delete after 600 seconds (10 minutes) if they do not get installed on a printer
  19.  
  20. CH_Printers.Config.InkAddedAmount = 50 -- How much ink is added to a printer with the ink upgrade?
  21.  
  22. CH_Printers.Config.PaperAddedAmount = 50 -- How much paper is added to a printer with the paper upgrade?
  23.  
  24. CH_Printers.Config.StorageAddedAmount = 5000 -- How much storage does the upgrade add to the printer?
  25.  
  26. --[[
  27.     Printer Damage
  28. --]]
  29. CH_Printers.Config.MoneyConfettiOnDamage = true -- Emit a "splash" dollar effect from the printer when taking damage
  30. CH_Printers.Config.DeductMoneyOnDamage = true -- Should we deduct money from the printer when taking damage?
  31. CH_Printers.Config.DeductMoneyDamageMultiplier = 1 -- If above is enabled it will deduct damage multiplied by this amount.
  32.  
  33. CH_Printers.Config.PrinterExplosion = true -- Should the printer explode when destroyed?
  34. CH_Printers.Config.IgnoreNearbyOnExplode = true -- Should we ignite entities nearby when printer explodes?
  35.  
  36. --[[
  37.     3D2D Screen
  38. --]]
  39. CH_Printers.Config.DrawScreenBackground = true -- If we should show a generic color background on the printer or use the "dirty" surface from model
  40. CH_Printers.Config.IconsColor = Color( 52, 152, 219, 255 ) -- The color of the icons on a printer screen
  41.  
  42. CH_Printers.Config.DrawTitleOnUpgrades = false -- Should we draw the upgrade name above the model?
  43. CH_Printers.Config.UpgradesTitleColor = Color( 52, 152, 219, 255 ) -- The color of the upgrade titles if enabled
  44.  
  45. CH_Printers.Config.DrawAlertIcons = true -- Should we draw alert icons for low paper & ink and when temperature is close to max?
  46. CH_Printers.Config.AlertIconLowTrigger = 25 -- What is the low amount that will trigger the alert icon on the screen? For paper & ink
  47.  
  48. --[[
  49.     3rd Party
  50. --]]
  51. 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