Advertisement
marcinhuU

m-HorrorHouse

Mar 15th, 2022
846
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.49 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.Framework = "NEW" -- "NEW" - New qbcore | "OLD" - Old qbcore
  4. Config.Phone = "qb-phone" -- Available : qb-phone / gksphone. If you dont use qb-phone or gksphone put: "notify"
  5. Config.PhoneSendEmailQBPhone = "qb-phone:server:sendNewMail"
  6. Config.PhoneSendEmailGKSPhone = "gksphone:NewMail"
  7. Config.CooldownToEnterAgain = 900000 -- Time they have to wait to do the house again.
  8. Config.EnablePedEffects = true -- Enable ped effects
  9.  
  10. Config.Locations = {
  11. [1] = {
  12. ["coords"] = vector4(1539.09, 1705.01, 109.67, 216.17), -- Location
  13. ["Procurado"] = false, -- Don't toutch
  14. },
  15. [2] = {
  16. ["coords"] = vector4(1526.65, 1682.72, 113.38, 216.17), -- Location
  17. ["Procurado"] = false, -- Don't toutch
  18. },
  19. [3] = {
  20. ["coords"] = vector4(1531.9, 1683.62, 113.55, 216.17), -- Location
  21. ["Procurado"] = false, -- Don't toutch
  22. },
  23. [4] = {
  24. ["coords"] = vector4(1528.97, 1690.0, 113.38, 216.17), -- Location
  25. ["Procurado"] = false, -- Don't toutch
  26. },
  27. [5] = {
  28. ["coords"] = vector4(1533.36, 1685.89, 113.36, 216.17), -- Location
  29. ["Procurado"] = false, -- Don't toutch
  30. },
  31. [6] = {
  32. ["coords"] = vector4(1528.02, 1686.48, 110.7, 216.17), -- Location
  33. ["Procurado"] = false, -- Don't toutch
  34. },
  35. }
  36.  
  37. Config["Rewards"] = {
  38. ["BasicLoot"] = {
  39. Amount = math.random(1,2), -- Amount
  40. Rewards = {
  41. 'cocainapronta',
  42. -- You can put more items
  43. }
  44. },
  45. ["NormalLoot"] = {
  46. Amount = math.random(1,2), -- Amount
  47. Rewards = {
  48. 'phone',
  49. -- You can put more items
  50. }
  51. },
  52. ["BigLoot"] = {
  53. Amount = math.random(1,2), -- Amount
  54. Rewards = {
  55. 'ervapronta',
  56. -- You can put more items
  57. }
  58. },
  59. }
  60.  
  61. Config.Texts = { -- Texts in notepad
  62. [1] = "I believe in laughter and tears as antidotes to hatred and terror.",
  63. [2] = "They were weak. That's why they died. And we were weak too.<br>That's why we couldn't save them.",
  64. [3] = "The darkness of a gloomy night does not always hide the terror of your days. He can be by your side on sunny and happy days, because what will define this company is you with your own tune.",
  65. [4] = "\"That's how children deal with terror. They fall asleep.\"",
  66. [5] = "In the end, we go back to the place where it all started... Because that's all we have.",
  67. }
  68.  
  69.  
  70. Config["Language"] = {
  71. ["Notification"] = {
  72. ["NotFind"] = "You didn't find anything.",
  73. ["FeelingWeird"] = "You're feeling weird...",
  74. ["FindSomething"] = "Looks like I found something...",
  75. ["HorrorHouse"] = "A haunted house... Watch out for the spirits!",
  76. },
  77. ["ProgressBars"] = {
  78. ["ProcurarLoot"] = "Searching...",
  79. },
  80. ["Email"] = {
  81. ["Mailsender"] = "Horror House",
  82. ["Mailsubject"] = "Welcome!",
  83. ["Mailmessage"] = "Welcome to the haunted house. I hope you brought a flashlight and a lot of courage! Brace yourself, we heard there are still spirits inside.",
  84. },
  85. ["QBTarget"] = {
  86. ["Search"] = "Search",
  87. ["IconSearch"] = "fas fa-search",
  88. ["Question"] = "What is this?",
  89. ["IconQuestion"] = "fas fa-male",
  90. ["Talk"] = "Talk",
  91. ["IconTalk"] = "fas fa-male",
  92. }
  93. }
  94.  
  95. ----------------------
  96. -- Peds
  97. ----------------------
  98. Config.TargetPed_4 = vector3(1532.71, 1686.46, 110.7)
  99. Config.TargetPed = vector3(1508.8, 1680.38, 110.52)
  100. Config.PedHorrorHouse = { -- Peds that will be spawned in
  101. {
  102. model = "s_m_y_clown_01",
  103. coords = vector3(1508.8, 1680.38, 110.52), -- Ped 1
  104. heading = 97.13,
  105. gender = "male",
  106. scenario = "WORLD_HUMAN_DRUG_DEALER"
  107. },
  108. {
  109. model = "s_m_y_clown_01",
  110. coords = vector3(1526.88, 1682.91, 109.71), -- Ped 2
  111. heading = 265.13,
  112. gender = "male",
  113. scenario = "WORLD_HUMAN_DRUG_DEALER"
  114. },
  115. {
  116. model = "ig_orleans",
  117. coords = vector3(1526.9, 1685.95, 110.71), -- Ped 3
  118. heading = 311.13,
  119. gender = "male",
  120. scenario = "WORLD_BOAR_GRAZING"
  121. },
  122. {
  123. model = "u_m_m_prolsec_01",
  124. coords = vector3(1533.24, 1685.47, 109.87), -- Ped 4
  125. heading = 356.13,
  126. gender = "male",
  127. scenario = "WORLD_HUMAN_SIT_UPS"
  128. },
  129. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement