Advertisement
Guest User

Untitled

a guest
Dec 24th, 2021
818
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. zpiz = zpiz or {}
  2. zpiz.config = zpiz.config or {}
  3.  
  4. /////////////////////////// Zeros Pizzamaker /////////////////////////////
  5.  
  6. // Developed by ZeroChain:
  7. // http://steamcommunity.com/id/zerochain/
  8. // https://www.gmodstore.com/users/view/76561198013322242
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11.  
  12.  
  13. ///////////////////////// zclib Config //////////////////////////////////////
  14. /*
  15. This config can be used to overwrite the main config of zeros libary
  16. */
  17. zclib.config.Debug = false
  18.  
  19. // The Currency
  20. zclib.config.Currency = "$"
  21.  
  22. // Should the Currency symbol be in front or after the money value?
  23. zclib.config.CurrencyInvert = true
  24.  
  25. // These Ranks are admins
  26. // If xAdmin, sAdmin or SAM is installed then this table can be ignored
  27. zclib.config.AdminRanks = {
  28. ["superadmin"] = true
  29. }
  30.  
  31. //zclib.config.CleanUp.SkipOnTeamChange[TEAM_STAFF] = true
  32. /////////////////////////////////////////////////////////////////////////////
  33.  
  34.  
  35. // This automaticly blacklists the entities from the pocket swep
  36. if GM and GM.Config and GM.Config.PocketBlacklist then
  37. GM.Config.PocketBlacklist["zpiz_fridge"] = true
  38. GM.Config.PocketBlacklist["zpiz_opensign"] = true
  39. GM.Config.PocketBlacklist["zpiz_oven"] = true
  40. GM.Config.PocketBlacklist["zpiz_ingredient"] = true
  41. GM.Config.PocketBlacklist["zpiz_pizza"] = true
  42. GM.Config.PocketBlacklist["zpiz_plate"] = true
  43. GM.Config.PocketBlacklist["zpiz_customertable"] = true
  44. GM.Config.PocketBlacklist["zpiz_animbase"] = true
  45. end
  46.  
  47. // This enables fast download
  48. zpiz.config.FastDL = false
  49.  
  50. // What language do we want? en,de,fr,pl,pt,cn
  51. zpiz.config.SelectedLanguage = "en"
  52.  
  53. // Here you can add all the Jobs that are allowed do interact with the Fridge, Oven and OpenSign (Leave empty do disable the JobRestriction)
  54. zpiz.config.Jobs = {}
  55. if TEAM_ZPIZ_CHEF then zpiz.config.Jobs[TEAM_ZPIZ_CHEF] = true end
  56.  
  57. // This defines how much health a entity has, Set it to -1 to disable it
  58. zpiz.config.Damage = {
  59. ["zpiz_fridge"] = -1,
  60. ["zpiz_oven"] = -1,
  61. ["zpiz_opensign"] = -1
  62. }
  63.  
  64. // Do we want the Health do stop at the Pizza HealthCap?
  65. zpiz.config.HealthCap = false
  66.  
  67. // This will remove the Owner checks so everyone can use the Pizza Oven,Fridge and Sign
  68. zpiz.config.EquipmentSharing = true
  69.  
  70. // This will spawn the Money from the Open Sign as Entity instead of sending it directly too the Owner (Only works in DarkRP at the moment)
  71. zpiz.config.RevenueSpawn = true
  72.  
  73. // Spawns the money entity
  74. zpiz.config.SpawnMoney = function(pos,amount)
  75. DarkRP.createMoneyBag(pos,amount)
  76. end
  77.  
  78. zpiz.config.Oven = {
  79. // How much time till the Pizza got Burned
  80. BurnTime = 15
  81. }
  82.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement