Advertisement
Guest User

Untitled

a guest
Jan 24th, 2019
1,427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.58 KB | None | 0 0
  1. Config = {}
  2. Config.Locale = "pl"
  3. --You can add here buttons like inventory menu button. When player click this button, then action will be cancel.
  4. Config.cancel_buttons = {289, 170, 168, 56}
  5.  
  6. options =
  7. {
  8. ['seed_weed'] = {
  9. object = 'prop_weed_01',
  10. end_object = 'prop_weed_02',
  11. fail_msg = 'Infelizmente, sua planta esta murcha!',
  12. success_msg = 'Parabéns, você fez a colheita da planta!',
  13. start_msg = 'Eu começo a cultivar a planta.',
  14. success_item = 'weed',
  15. first_step = 2.35,
  16. steps = 7,
  17. cords = {
  18. {x = -427.05, y = 1575.25, z = 357, distance = 20.25},
  19. {x = 2213.05, y = 5576.25, z = 53, distance = 10.25},
  20. {x = 1198.05, y = -215.25, z = 55, distance = 20.25},
  21. {x = 706.05, y = 1269.25, z = 358, distance = 10.25},
  22. },
  23. animations_start = {
  24. {lib = 'amb@world_human_gardener_plant@male@enter', anim = 'enter', timeout = '2500'},
  25. {lib = 'amb@world_human_gardener_plant@male@idle_a', anim = 'idle_a', timeout = '2500'},
  26. },
  27. animations_end = {
  28. {lib = 'amb@world_human_gardener_plant@male@exit', anim ='exit', timeout = '2500'},
  29. {lib = 'amb@world_human_cop_idles@male@idle_a', anim ='idle_a', timeout = '2500'},
  30. },
  31. animations_step = {
  32. {lib = 'amb@world_human_gardener_plant@male@enter', anim = 'enter', timeout = '2500'},
  33. {lib = 'amb@world_human_gardener_plant@male@idle_a', anim ='idle_a', timeout = '18500'},
  34. {lib = 'amb@world_human_gardener_plant@male@exit', anim ='exit', timeout = '2500'},
  35. },
  36. grow = {
  37. 2.24, 1.95, 1.65, 1.45, 1.20, 1.00
  38. },
  39. questions = {
  40. {
  41. title = 'Você vê que sua planta está brotando, o que você está fazendo?',
  42. steps = {
  43. {label = 'Estou regando a planta', value = 1},
  44. {label = 'Estou fertilizando Roslin', value = 2},
  45. {label = 'espera', value = 3}
  46. },
  47. correct = 1
  48. },
  49. {
  50. title = 'Pontos amarelos apareceram na minha planta, o que você está fazendo?',
  51. steps = {
  52. {label = 'Estou regando a planta', value = 1},
  53. {label = 'Estou fertilizando Roslin', value = 2},
  54. {label = 'espera', value = 3}
  55. },
  56. correct = 2
  57. },
  58. {
  59. title = 'Poeira azul apareceu nas folhas da sua planta, o que você está fazendo?',
  60. steps = {
  61. {label = 'Eu quebro as folhas individuais', value = 1},
  62. {label = 'Polvilhe as folhas com fertilizante', value = 2},
  63. {label = 'espera', value = 3}
  64. },
  65. correct = 3
  66. },
  67. {
  68. title = 'Seus primeiros brotos apareceram em sua planta, o que você está fazendo?',
  69. steps = {
  70. {label = 'Estou regando a planta', value = 1},
  71. {label = 'Zrywam é de raio', value = 2},
  72. {label = 'Eu fertilizo a planta', value = 3}
  73. },
  74. correct = 1
  75. },
  76. {
  77. title = 'Depois de molhar sua planta, folhas estranhas começaram a aparecer, o que você está fazendo?',
  78. steps = {
  79. {label = 'Estou regando a planta', value = 1},
  80. {label = 'Estou fertilizando Roslin', value = 2},
  81. {label = 'espera', value = 3}
  82. },
  83. correct = 2
  84. },
  85. {
  86. title = 'Sua plantinha está quase pronta para ser cortada, o que você está fazendo?',
  87. steps = {
  88. {label = 'Estou regando a planta', value = 1},
  89. {label = 'Estou fertilizando Roslin', value = 2},
  90. {label = 'espera', value = 3}
  91. },
  92. correct = 1
  93. },
  94. {
  95. title = 'Sua planta está pronta para a colheita, o que você está fazendo?',
  96. steps = {
  97. {label = 'Colete usando uma tesoura', value = 1, min = 10, max = 25},
  98. {label = 'Colecione com as mãos', value = 1, min = 10, max = 15},
  99. {label = 'Rastreadores Zetny', value = 1, min = 10, max = 40}
  100. },
  101. correct = 1
  102. },
  103. },
  104. },
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement