Advertisement
Guest User

Untitled

a guest
Dec 24th, 2021
512
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. zpiz = zpiz or {}
  2. zpiz.config = zpiz.config or {}
  3.  
  4. zpiz.config.Customer = {
  5. // How much does the player gets payed if he delivers a burned pizza
  6. BurnedPizzaPenalty = 0.2, //20%
  7.  
  8. // The Interval at which new customers get spawned
  9. RespawnRate = 2,
  10.  
  11. // How many Customers can one Player have at once
  12. Limit = 3,
  13.  
  14. // Time in seconds we add to the bake time of the pizza for the Customer do wait.
  15. ExtraWaitTime = 100
  16. }
  17.  
  18.  
  19. // Customers
  20. ///////////////////////
  21. // Some Data for our customers
  22. zpiz.config.Customers = {
  23. [1] = {
  24. Model = "models/Humans/Group01/male_07.mdl", // The Customer Model
  25. SitAnim = {"silo_sit"}, // The Customer Sit Animations
  26. ServAnim = {"cheer1", "cheer2"} // The Customer gets Pizza Animations
  27. },
  28. [2] = {
  29. Model = "models/Humans/Group01/male_08.mdl",
  30. SitAnim = {"sitchair1", "silo_sit"},
  31. ServAnim = {"cheer1", "cheer2"}
  32. },
  33. [3] = {
  34. Model = "models/Humans/Group01/male_09.mdl",
  35. SitAnim = {"silo_sit"},
  36. ServAnim = {"cheer1", "cheer2"}
  37. },
  38. [4] = {
  39. Model = "models/Humans/Group01/Female_01.mdl",
  40. SitAnim = {"sitchair1", "silo_sit"},
  41. ServAnim = {"cheer1", "heal"}
  42. },
  43. [5] = {
  44. Model = "models/Humans/Group01/Female_02.mdl",
  45. SitAnim = {"sitchair1", "silo_sit"},
  46. ServAnim = {"cheer1", "heal"}
  47. },
  48. [6] = {
  49. Model = "models/Humans/Group01/Female_03.mdl",
  50. SitAnim = {"sitchair1", "silo_sit"},
  51. ServAnim = {"cheer1", "heal"}
  52. },
  53. [7] = {
  54. Model = "models/Humans/Group01/Male_01.mdl",
  55. SitAnim = {"silo_sit"},
  56. ServAnim = {"cheer1", "cheer2"}
  57. },
  58. [8] = {
  59. Model = "models/alyx.mdl",
  60. SitAnim = {"d1_t03_sit_bed"},
  61. ServAnim = {"cheer1", "heal"}
  62. },
  63. [9] = {
  64. Model = "models/gman_high.mdl",
  65. SitAnim = {"silo_sit"},
  66. ServAnim = {"tiefidget", "lintpick"}
  67. },
  68. [10] = {
  69. Model = "models/Kleiner.mdl",
  70. SitAnim = {"silo_sit"},
  71. ServAnim = {"heal"}
  72. }
  73. }
  74.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement